From 6c2fabf1b1fe0e50a06273f9bf84e9bb9a9cfbdb Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Wed, 6 Aug 2014 00:50:11 +0100 Subject: Close bugs automatically when processing advisories mga#13859 --- lib/MGA/Advisories.pm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'lib/MGA/Advisories.pm') diff --git a/lib/MGA/Advisories.pm b/lib/MGA/Advisories.pm index 62f9bee..7058d3b 100644 --- a/lib/MGA/Advisories.pm +++ b/lib/MGA/Advisories.pm @@ -477,6 +477,39 @@ sub send_adv_mail { } } +sub close_bugs { + my ($advdb) = @_; + return unless $config->{mode} eq 'site'; + + if (!init_bz()) { + report_log("Cannot close advisory bugs. Could not initialise bugzilla"); + return; + } + foreach my $adv (keys %{$advdb->{advisories}}) { + next if $advdb->{advisories}{$adv}{status}{bug_closed}; + + my $bugnum = 0; + if (scalar($advdb->{advisories}{$adv}{references}) > 0) { + ($bugnum) = $advdb->{advisories}{$adv}{references}[0] =~ m/$config->{bugzilla_url}.*=([0-9]+)$/g; + } + if (!$bugnum) { + report_log("Could not extract bug number for $adv"); + next; + } + + my $advurl = $config->{site_url} . '/' . $adv . '.html'; + my $comment = "An update for this issue has been pushed to Mageia Updates repository.\n\n$advurl"; + + if (my $result = call_bz('Bug.update', { ids => [$bugnum], status => 'RESOLVED', resolution => 'FIXED', comment => { body => $comment } })) { + report_log("Bug $bugnum closed for $adv"); + $advdb->{advisories}{$adv}{status}{bug_closed} = time(); + save_status($advdb, $adv); + } else { + report_log("Could not close bug $bugnum for $adv"); + } + } +} + sub send_report { my ($advdb) = @_; return unless @report_logs; -- cgit v1.2.1