2003-03-27 00:07:02 +00:00
|
|
|
#!/usr/bin/perl -w
|
1998-09-15 21:49:26 +00:00
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
|
|
#
|
1999-11-01 23:33:56 +00:00
|
|
|
# The contents of this file are subject to the Mozilla Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
|
|
|
#
|
1998-09-15 21:49:26 +00:00
|
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
1999-11-01 23:33:56 +00:00
|
|
|
#
|
1998-09-15 21:49:26 +00:00
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
1999-11-01 23:33:56 +00:00
|
|
|
# Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
1998-09-15 21:49:26 +00:00
|
|
|
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
2004-01-14 13:59:16 +00:00
|
|
|
# Joseph Heenan <joseph@heenan.me.uk>
|
1998-09-15 21:49:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
# This is a script suitable for running once a day from a cron job. It
|
|
|
|
# looks at all the bugs, and sends whiny mail to anyone who has a bug
|
2004-01-14 13:59:16 +00:00
|
|
|
# assigned to them that has status NEW or REOPENED that has not been
|
2004-02-27 11:10:01 +00:00
|
|
|
# touched for more than the number of days specified in the whinedays param.
|
1998-09-15 21:49:26 +00:00
|
|
|
|
|
|
|
use strict;
|
2005-07-08 02:17:04 +00:00
|
|
|
use lib '.';
|
1998-09-15 21:49:26 +00:00
|
|
|
|
|
|
|
require "globals.pl";
|
|
|
|
|
2005-01-01 13:44:16 +00:00
|
|
|
use Bugzilla::BugMail;
|
2005-08-15 17:58:19 +00:00
|
|
|
use Bugzilla::Util;
|
2005-01-01 13:44:16 +00:00
|
|
|
|
2005-06-02 21:24:08 +00:00
|
|
|
# Whining is disabled if whinedays is zero
|
|
|
|
exit unless Param('whinedays') >= 1;
|
|
|
|
|
2005-02-20 07:53:17 +00:00
|
|
|
my $dbh = Bugzilla->dbh;
|
2005-04-04 21:52:06 +00:00
|
|
|
SendSQL("SELECT bug_id, short_desc, login_name " .
|
|
|
|
"FROM bugs INNER JOIN profiles ON userid = assigned_to " .
|
|
|
|
"WHERE (bug_status = 'NEW' OR bug_status = 'REOPENED') " .
|
|
|
|
"AND " . $dbh->sql_to_days('NOW()') . " - " .
|
|
|
|
$dbh->sql_to_days('delta_ts') . " > " .
|
|
|
|
Param('whinedays') . " " .
|
|
|
|
"ORDER BY bug_id");
|
1998-09-15 21:49:26 +00:00
|
|
|
|
|
|
|
my %bugs;
|
2003-02-12 08:21:39 +00:00
|
|
|
my %desc;
|
1998-09-15 21:49:26 +00:00
|
|
|
my @row;
|
|
|
|
|
|
|
|
while (@row = FetchSQLData()) {
|
2003-02-12 08:21:39 +00:00
|
|
|
my ($id, $desc, $email) = (@row);
|
1998-09-15 21:49:26 +00:00
|
|
|
if (!defined $bugs{$email}) {
|
|
|
|
$bugs{$email} = [];
|
|
|
|
}
|
2003-02-12 08:21:39 +00:00
|
|
|
if (!defined $desc{$email}) {
|
|
|
|
$desc{$email} = [];
|
|
|
|
}
|
1998-09-15 21:49:26 +00:00
|
|
|
push @{$bugs{$email}}, $id;
|
2003-02-12 08:21:39 +00:00
|
|
|
push @{$desc{$email}}, $desc;
|
1998-09-15 21:49:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
my $template = Param('whinemail');
|
|
|
|
my $urlbase = Param('urlbase');
|
1999-08-13 17:10:01 +00:00
|
|
|
my $emailsuffix = Param('emailsuffix');
|
1998-09-15 21:49:26 +00:00
|
|
|
|
|
|
|
foreach my $email (sort (keys %bugs)) {
|
|
|
|
my %substs;
|
1999-08-13 17:10:01 +00:00
|
|
|
$substs{'email'} = $email . $emailsuffix;
|
1999-09-15 12:26:58 +00:00
|
|
|
$substs{'userid'} = $email;
|
2005-08-15 17:58:19 +00:00
|
|
|
my $msg = perform_substs($template, \%substs);
|
1998-09-15 21:49:26 +00:00
|
|
|
|
|
|
|
foreach my $i (@{$bugs{$email}}) {
|
2003-02-12 08:21:39 +00:00
|
|
|
$msg .= " " . shift(@{$desc{$email}}) . "\n";
|
|
|
|
$msg .= " -> ${urlbase}show_bug.cgi?id=$i\n";
|
1998-09-15 21:49:26 +00:00
|
|
|
}
|
2001-10-11 21:55:21 +00:00
|
|
|
|
2005-01-01 13:44:16 +00:00
|
|
|
Bugzilla::BugMail::MessageToMTA($msg);
|
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
print "$email " . join(" ", @{$bugs{$email}}) . "\n";
|
|
|
|
}
|