70
def get_bugs_from_changelog_entry(sourcepackagerelease, since_version):
71
"""Parse the changelog_entry in the sourcepackagerelease and return a
72
list of `IBug`s referenced by it.
74
changelog = sourcepackagerelease.aggregate_changelog(since_version)
76
# There are 2 main regexes to match. Each match from those can then
77
# have further multiple matches from the 3rd regex:
81
re_closes.finditer(changelog), re_lp_closes.finditer(changelog))
84
bug_match = re_bug_numbers.findall(match.group(0))
85
closes += map(int, bug_match)
90
bug = getUtility(IBugSet).get(bug_id)
99
67
def can_close_bugs(target):
100
68
"""Whether or not bugs should be closed in the given target.
151
119
source_queue_item.sourcepackagerelease, changesfile_object)
154
def close_bugs_for_sourcepublication(source_publication, since_version=None):
122
def close_bugs_for_sourcepublication(source_publication):
155
123
"""Close bugs for a given sourcepublication.
157
125
Given a `ISourcePackagePublishingHistory` close bugs mentioned in
163
131
sourcepackagerelease = source_publication.sourcepackagerelease
164
132
changesfile_object = sourcepackagerelease.upload_changesfile
134
# No changesfile available, cannot close bugs.
135
if changesfile_object is None:
166
138
close_bugs_for_sourcepackagerelease(
167
sourcepackagerelease, changesfile_object, since_version,
168
upload_distroseries=source_publication.distroseries)
171
def close_bugs_for_sourcepackagerelease(source_release, changesfile_object,
173
upload_distroseries=None):
139
sourcepackagerelease, changesfile_object)
142
def close_bugs_for_sourcepackagerelease(source_release, changesfile_object):
174
143
"""Close bugs for a given source.
176
145
Given a `ISourcePackageRelease` and a corresponding changesfile object,
177
146
close bugs mentioned in the changesfile in the context of the source.
179
If changesfile_object is None and since_version is supplied,
180
close all the bugs in changelog entries made after that version and up
181
to and including the source_release's version. It does this by parsing
182
the changelog on the sourcepackagerelease. This could be extended in
183
the future to deal with the changes file as well but there is no
184
requirement to do so right now.
186
if since_version and source_release.changelog:
187
bugs_to_close = get_bugs_from_changelog_entry(
188
source_release, since_version=since_version)
189
elif changesfile_object:
190
bugs_to_close = get_bugs_from_changes_file(changesfile_object)
148
bugs_to_close = get_bugs_from_changes_file(changesfile_object)
194
150
# No bugs to be closed by this upload, move on.
195
151
if not bugs_to_close:
205
161
# here, BE CAREFUL with the unproxied bug object and look at
206
162
# what you're doing with it that might violate security.
207
163
bug = removeSecurityProxy(bug)
208
if upload_distroseries is not None:
209
target = upload_distroseries.getSourcePackage(
210
source_release.sourcepackagename)
212
target = source_release.sourcepackage
213
164
edited_task = bug.setStatus(
214
target=target, status=BugTaskStatus.FIXRELEASED, user=janitor)
165
target=source_release.sourcepackage,
166
status=BugTaskStatus.FIXRELEASED,
215
168
if edited_task is not None:
216
169
assert source_release.changelog_entry is not None, (
217
170
"New source uploads should have a changelog.")