blob: 1ff0b3b2583a2306c657bc797ca874d579fae569 [file] [log] [blame]
Monty Taylor6c9634c2012-07-28 11:27:47 -05001#!/usr/bin/env python
2# Copyright (c) 2011 OpenStack, LLC.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15
16# This is designed to be called by a gerrit hook. It searched new
17# patchsets for strings like "bug FOO" and updates corresponding Launchpad
18# bugs status.
19
20from launchpadlib.launchpad import Launchpad
21from launchpadlib.uris import LPNET_SERVICE_ROOT
22import os
23import argparse
24import re
25import subprocess
26
27
28BASE_DIR = '/home/gerrit2/review_site'
29GERRIT_CACHE_DIR = os.path.expanduser(os.environ.get('GERRIT_CACHE_DIR',
30 '~/.launchpadlib/cache'))
31GERRIT_CREDENTIALS = os.path.expanduser(os.environ.get('GERRIT_CREDENTIALS',
32 '~/.launchpadlib/creds'))
33
34
35def add_change_proposed_message(bugtask, change_url, project, branch):
36 subject = 'Fix proposed to %s (%s)' % (short_project(project), branch)
37 body = 'Fix proposed to branch: %s\nReview: %s' % (branch, change_url)
38 bugtask.bug.newMessage(subject=subject, content=body)
39
40
41def add_change_merged_message(bugtask, change_url, project, commit,
42 submitter, branch, git_log):
43 subject = 'Fix merged to %s (%s)' % (short_project(project), branch)
44 git_url = 'http://github.com/%s/commit/%s' % (project, commit)
45 body = '''Reviewed: %s
46Committed: %s
47Submitter: %s
48Branch: %s\n''' % (change_url, git_url, submitter, branch)
49 body = body + '\n' + git_log
50 bugtask.bug.newMessage(subject=subject, content=body)
51
52
53def set_in_progress(bugtask, launchpad, uploader, change_url):
54 """Set bug In progress with assignee being the uploader"""
55
56 # Retrieve uploader from Launchpad. Use email as search key if
57 # provided, and only set if there is a clear match.
58 try:
59 searchkey = uploader[uploader.rindex("(") + 1:-1]
60 except ValueError:
61 searchkey = uploader
62 persons = launchpad.people.findPerson(text=searchkey)
63 if len(persons) == 1:
64 bugtask.assignee = persons[0]
65
66 bugtask.status = "In Progress"
67 bugtask.lp_save()
68
69
70def set_fix_committed(bugtask):
71 """Set bug fix committed"""
72
73 bugtask.status = "Fix Committed"
74 bugtask.lp_save()
75
76
77def set_fix_released(bugtask):
78 """Set bug fix released"""
79
80 bugtask.status = "Fix Released"
81 bugtask.lp_save()
82
83
84def release_fixcommitted(bugtask):
85 """Set bug FixReleased if it was FixCommitted"""
86
87 if bugtask.status == u'Fix Committed':
88 set_fix_released(bugtask)
89
90
91def tag_in_branchname(bugtask, branch):
92 """Tag bug with in-branch-name tag (if name is appropriate)"""
93
94 lp_bug = bugtask.bug
95 branch_name = branch.replace('/', '-')
96 if branch_name.replace('-', '').isalnum():
97 lp_bug.tags = lp_bug.tags + ["in-%s" % branch_name]
98 lp_bug.tags.append("in-%s" % branch_name)
99 lp_bug.lp_save()
100
101
102def short_project(full_project_name):
103 """Return the project part of the git repository name"""
104 return full_project_name.split('/')[-1]
105
106
107def git2lp(full_project_name):
108 """Convert Git repo name to Launchpad project"""
109 project_map = {
110 'openstack/openstack-ci-puppet': 'openstack-ci',
111 'openstack-ci/devstack-gate': 'openstack-ci',
112 'openstack-ci/gerrit': 'openstack-ci',
113 'openstack-ci/lodgeit': 'openstack-ci',
114 'openstack-ci/meetbot': 'openstack-ci',
115 }
116 return project_map.get(full_project_name, short_project(full_project_name))
117
118
119def is_direct_release(full_project_name):
120 """Test against a list of projects who directly release changes."""
121 return full_project_name in [
122 'openstack-ci/devstack-gate',
123 'openstack-ci/lodgeit',
124 'openstack-ci/meetbot',
125 'openstack-dev/devstack',
126 'openstack/openstack-ci',
127 'openstack/openstack-ci-puppet',
128 'openstack/openstack-manuals',
Thierry Carrez101d17e2012-09-28 11:54:38 +0200129 'openstack/tempest',
Monty Taylor6c9634c2012-07-28 11:27:47 -0500130 ]
131
132
133def process_bugtask(launchpad, bugtask, git_log, args):
134 """Apply changes to bugtask, based on hook / branch..."""
135
136 if args.hook == "change-merged":
137 if args.branch == 'master':
138 if is_direct_release(args.project):
139 set_fix_released(bugtask)
140 else:
141 set_fix_committed(bugtask)
142 elif args.branch == 'milestone-proposed':
143 release_fixcommitted(bugtask)
144 elif args.branch.startswith('stable/'):
145 series = args.branch[7:]
146 # Look for a related task matching the series
147 for reltask in bugtask.related_tasks:
148 if reltask.bug_target_name.endswith("/" + series):
149 # Use fixcommitted if there is any
150 set_fix_committed(reltask)
151 break
152 else:
153 # Use tagging if there isn't any
154 tag_in_branchname(bugtask, args.branch)
155
156 add_change_merged_message(bugtask, args.change_url, args.project,
157 args.commit, args.submitter, args.branch,
158 git_log)
159
160 if args.hook == "patchset-created":
161 if args.branch == 'master':
162 set_in_progress(bugtask, launchpad, args.uploader, args.change_url)
163 elif args.branch.startswith('stable/'):
164 series = args.branch[7:]
165 for reltask in bugtask.related_tasks:
166 if reltask.bug_target_name.endswith("/" + series):
167 set_in_progress(reltask, launchpad,
168 args.uploader, args.change_url)
169 break
170
171 if args.patchset == '1':
172 add_change_proposed_message(bugtask, args.change_url,
173 args.project, args.branch)
174
175
176def find_bugs(launchpad, git_log, args):
177 """Find bugs referenced in the git log and return related bugtasks"""
178
179 bug_regexp = r'([Bb]ug|[Ll][Pp])[\s#:]*(\d+)'
180 tokens = re.split(bug_regexp, git_log)
181
182 # Extract unique bug tasks
183 bugtasks = {}
184 for token in tokens:
185 if re.match('^\d+$', token) and (token not in bugtasks):
186 try:
187 lp_bug = launchpad.bugs[token]
188 for lp_task in lp_bug.bug_tasks:
189 if lp_task.bug_target_name == git2lp(args.project):
190 bugtasks[token] = lp_task
191 break
192 except KeyError:
193 # Unknown bug
194 pass
195
196 return bugtasks.values()
197
198
199def extract_git_log(args):
200 """Extract git log of all merged commits"""
201 cmd = ['git',
202 '--git-dir=' + BASE_DIR + '/git/' + args.project + '.git',
203 'log', '--no-merges', args.commit + '^1..' + args.commit]
204 return subprocess.Popen(cmd, stdout=subprocess.PIPE).communicate()[0]
205
206
207def main():
208 parser = argparse.ArgumentParser()
209 parser.add_argument('hook')
210 #common
211 parser.add_argument('--change', default=None)
212 parser.add_argument('--change-url', default=None)
213 parser.add_argument('--project', default=None)
214 parser.add_argument('--branch', default=None)
215 parser.add_argument('--commit', default=None)
216 #change-merged
217 parser.add_argument('--submitter', default=None)
218 #patchset-created
219 parser.add_argument('--uploader', default=None)
220 parser.add_argument('--patchset', default=None)
221
222 args = parser.parse_args()
223
224 # Connect to Launchpad
225 launchpad = Launchpad.login_with('Gerrit User Sync', LPNET_SERVICE_ROOT,
226 GERRIT_CACHE_DIR,
227 credentials_file=GERRIT_CREDENTIALS,
228 version='devel')
229
230 # Get git log
231 git_log = extract_git_log(args)
232
233 # Process bugtasks found in git log
234 for bugtask in find_bugs(launchpad, git_log, args):
235 process_bugtask(launchpad, bugtask, git_log, args)
236
237
238if __name__ == '__main__':
239 main()