summaryrefslogtreecommitdiffstats
path: root/cnucnu/bugzilla_reporter.py
blob: 569c5bf890fe2d68fb4528d172e115e353d68849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#!/usr/bin/python
# vim: fileencoding=utf8 foldmethod=marker
# {{{ License header: GPLv2+
#    This file is part of cnucnu.
#
#    Cnucnu is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 2 of the License, or
#    (at your option) any later version.
#
#    Cnucnu is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with cnucnu.  If not, see <http://www.gnu.org/licenses/>.
# }}}

from bugzilla import Bugzilla
from config import global_config
from helper import filter_dict

class BugzillaReporter(object):
    base_query = {'query_format': ['advanced'], 'emailreporter1': ['1'], 'emailtype1': ['exact']}

    bug_status_open = ['NEW', 'ASSIGNED', 'MODIFIED', 'ON_DEV', 'ON_QA', 'VERIFIED', 'FAILS_QA', 'RELEASE_PENDING', 'POST']
    bug_status_closed = ['CLOSED']

    new_bug = { 'status': 'ASSIGNED',
# Using ASSIGNED returns an exception:
# <Fault 32000: 'You are not allowed to file new bugs with the\n      ASSIGNED status.'>
# if the account is in editbugs, fedora_bugs, fedora_contrib, setpriority
# if not, then it is silently ignored
#               'status': 'ASSIGNED',
# Red Hat Bugzilla now supports filing bugs in state ASSIGNED:
# https://bugzilla.redhat.com/show_bug.cgi?id=516208
            }
            
    def __init__(self, config=global_config.bugzilla_config):
        self._bz = None

        self.config = config

        self.base_query['product'] = config['product']
        self.base_query['email1'] = config['user']
        self.new_bug['product'] = config['product']
        if "keywords" in config:
            self.new_bug['keywords'] = config['keywords']
        self.new_bug['version'] = config['version']

        self.bugzilla_username = config['user']

    @property
    def bz(self):
        if not self._bz:
            rpc_conf = filter_dict(self.config, ["url", "user", "password"])
            self._bz = Bugzilla(**rpc_conf)
        return self._bz



    def bug_url(self, bug):
        if isinstance(bug, str):
            bug_id = bug
        else:
            bug_id = bug.bug_id

        return "%s%s" % (self.config['bug url prefix'], bug_id)

    def report_outdated(self, package, dry_run=True):
        if not package.exact_outdated_bug:
            if not package.open_outdated_bug:
                new_bug, change_status = self.create_outdated_bug(package, dry_run)
            else:
                open_bug = package.open_outdated_bug
                summary = open_bug.summary

                # summary should be '<name>-<version> <some text>'
                # To extract the version get everything before the first space
                # with split and then remove the name and '-' via slicing
                bug_version = summary.split(" ")[0][len(package.name)+1:]

                if bug_version != package.latest_upstream:
                    update = {'short_desc': self.config["summary template"] % package,
                              'comment': self.config["description template"] % package
                             }
                    print repr(update)
                    res = self.bz._update_bugs(open_bug.bug_id, update)
                    print res
                    return res
        else:
            bug = package.exact_outdated_bug
            print "bug already filed:%s %s" % (self.bug_url(bug), bug.bug_status)


    def create_outdated_bug(self, package, dry_run=True):
        bug_dict = {'component': package.name,
               'summary': self.config["summary template"] % package,
               'description': self.config["description template"] % package
                }
        bug_dict.update(self.new_bug)
        if not dry_run:
            new_bug = self.bz.createbug(**bug_dict)
            status = self.config['bug status']
            change_status = None
            print new_bug
            # TODO: check which status the newly created bug has
            if status != "ASSIGNED":
                change_status = self.bz._proxy.bugzilla.changeStatus(new_bug.bug_id, status, self.config['user'], "", "", False, False, 1)
                print "status changed", change_status
            return (new_bug, change_status)
        else:
            return (bug_dict, None)

    def get_exact_outdated_bug(self, package):
        summary_pattern = '%(name)s-%(latest_upstream)s ' % package
        q = {'component': [package.name],
             'bug_status': self.bug_status_open + self.bug_status_closed,
             'short_desc': [summary_pattern],
             'short_desc_type': ['substring']
            }
       
        q.update(self.base_query)
        bugs = self.bz.query(q)
        if bugs:
            # TODO if more than one bug, manual intervention is required
            bug = bugs[0]
        else:
            return bugs

        # The summary_pattern contains a space at the end, which is currently
        # not recognized by bugzilla. Therefore this test is required:
        if bug.summary.startswith(summary_pattern):
            return bug
        else:
            return None

    def get_open_outdated_bug(self, package):
        # TODO: report only state of bug that is used for bug creation, to only update such bugs
        q = {'component': [package.name],
             'bug_status': ['NEW', 'ASSIGNED']
             #'bug_status': self.bug_status_open
            }

        q.update(self.base_query)
        bugs = self.bz.query(q)
        if bugs:
            # TODO if more than one bug, manual intervention is required
            return bugs[0]
        else:
            return bugs