1998-09-16 01:49:26 +04:00
|
|
|
#!/usr/bonsaitools/bin/perl -w
|
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
1998-08-26 10:14:20 +04:00
|
|
|
#
|
1999-11-02 02:33:56 +03: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-08-26 10:14:20 +04:00
|
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
1999-11-02 02:33:56 +03:00
|
|
|
#
|
1998-08-26 10:14:20 +04:00
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
1999-11-02 02:33:56 +03:00
|
|
|
# Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
1998-08-26 10:14:20 +04:00
|
|
|
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
1999-12-03 02:21:42 +03:00
|
|
|
# Dan Mosedale <dmose@mozilla.org>
|
2001-04-17 06:26:16 +04:00
|
|
|
# Dave Miller <justdave@syndicomm.com>
|
1998-08-26 10:14:20 +04:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
use diagnostics;
|
|
|
|
use strict;
|
|
|
|
|
2000-02-17 08:15:23 +03:00
|
|
|
my $UserInEditGroupSet = -1;
|
|
|
|
my $UserInCanConfirmGroupSet = -1;
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
require "CGI.pl";
|
2000-03-29 01:31:24 +04:00
|
|
|
use RelationSet;
|
1998-09-16 01:49:26 +04:00
|
|
|
|
|
|
|
# Shut up misguided -w warnings about "used only once":
|
|
|
|
|
|
|
|
use vars %::versions,
|
|
|
|
%::components,
|
2000-01-07 00:16:15 +03:00
|
|
|
%::COOKIE,
|
2000-07-05 22:21:54 +04:00
|
|
|
%::MFORM,
|
2000-01-07 00:16:15 +03:00
|
|
|
%::legal_keywords,
|
|
|
|
%::legal_opsys,
|
|
|
|
%::legal_platform,
|
|
|
|
%::legal_priority,
|
2000-03-21 19:47:06 +03:00
|
|
|
%::target_milestone,
|
2000-01-07 00:16:15 +03:00
|
|
|
%::legal_severity;
|
1998-09-16 01:49:26 +04:00
|
|
|
|
2000-02-17 08:15:23 +03:00
|
|
|
my $whoid = confirm_login();
|
1998-09-16 01:49:26 +04:00
|
|
|
|
2000-05-09 02:00:38 +04:00
|
|
|
my $requiremilestone = 0;
|
|
|
|
|
2001-05-31 19:52:25 +04:00
|
|
|
######################################################################
|
|
|
|
# Begin Data/Security Validation
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
# Create a list of IDs of all bugs being modified in this request.
|
|
|
|
# This list will either consist of a single bug number from the "id"
|
|
|
|
# form/URL field or a series of numbers from multiple form/URL fields
|
|
|
|
# named "id_x" where "x" is the bug number.
|
|
|
|
my @idlist;
|
|
|
|
if (defined $::FORM{'id'}) {
|
2001-06-03 02:02:02 +04:00
|
|
|
push @idlist, $::FORM{'id'};
|
2001-05-31 19:52:25 +04:00
|
|
|
} else {
|
2001-06-03 02:02:02 +04:00
|
|
|
foreach my $i (keys %::FORM) {
|
|
|
|
if ($i =~ /^id_([1-9][0-9]*)/) {
|
|
|
|
push @idlist, $1;
|
|
|
|
}
|
2001-05-31 19:52:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# For each bug being modified, make sure its ID is a valid bug number
|
|
|
|
# representing an existing bug that the user is authorized to access.
|
|
|
|
foreach my $id (@idlist) {
|
2001-06-03 02:02:02 +04:00
|
|
|
ValidateBugID($id);
|
|
|
|
}
|
|
|
|
|
|
|
|
# If the user has a bug list and is processing one bug, then after
|
|
|
|
# we process the bug we are going to show them the next bug on their
|
|
|
|
# list. Thus we have to make sure this bug ID is also valid,
|
|
|
|
# since a malicious cracker might alter their cookies for the purpose
|
|
|
|
# gaining access to bugs they are not authorized to access.
|
|
|
|
if ( $::COOKIE{"BUGLIST"} ne "" && defined $::FORM{'id'} ) {
|
|
|
|
my @buglist = split( /:/ , $::COOKIE{"BUGLIST"} );
|
|
|
|
my $idx = lsearch( \@buglist , $::FORM{"id"} );
|
|
|
|
if ($idx < $#buglist) {
|
|
|
|
my $nextbugid = $buglist[$idx + 1];
|
|
|
|
ValidateBugID($nextbugid);
|
|
|
|
}
|
2001-05-31 19:52:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# End Data/Security Validation
|
|
|
|
######################################################################
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
print "Content-type: text/html\n\n";
|
|
|
|
|
1999-09-23 23:08:03 +04:00
|
|
|
PutHeader ("Bug processed");
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
GetVersionTable();
|
|
|
|
|
1999-12-03 02:21:42 +03:00
|
|
|
if ( Param("strictvaluechecks") ) {
|
|
|
|
CheckFormFieldDefined(\%::FORM, 'product');
|
|
|
|
CheckFormFieldDefined(\%::FORM, 'version');
|
|
|
|
CheckFormFieldDefined(\%::FORM, 'component');
|
2000-03-21 19:47:06 +03:00
|
|
|
|
|
|
|
# check if target milestone is defined - matthew@zeroknowledge.com
|
|
|
|
if ( Param("usetargetmilestone") ) {
|
|
|
|
CheckFormFieldDefined(\%::FORM, 'target_milestone');
|
|
|
|
}
|
1999-12-03 02:21:42 +03:00
|
|
|
}
|
|
|
|
|
2001-08-11 05:18:24 +04:00
|
|
|
ConnectToDatabase();
|
|
|
|
|
|
|
|
# Figure out whether or not the user is trying to change the product
|
|
|
|
# (either the "product" variable is not set to "don't change" or the
|
|
|
|
# user is changing a single bug and has changed the bug's product),
|
|
|
|
# and make the user verify the version, component, target milestone,
|
|
|
|
# and bug groups if so.
|
|
|
|
if ( $::FORM{'id'} ) {
|
|
|
|
SendSQL("SELECT product FROM bugs WHERE bug_id = $::FORM{'id'}");
|
|
|
|
$::oldproduct = FetchSQLData();
|
|
|
|
}
|
|
|
|
if ( ($::FORM{'id'} && $::FORM{'product'} ne $::oldproduct)
|
|
|
|
|| (!$::FORM{'id'} && $::FORM{'product'} ne $::dontchange) ) {
|
1999-12-03 02:21:42 +03:00
|
|
|
if ( Param("strictvaluechecks") ) {
|
|
|
|
CheckFormField(\%::FORM, 'product', \@::legal_product);
|
|
|
|
}
|
1998-11-20 22:18:37 +03:00
|
|
|
my $prod = $::FORM{'product'};
|
1999-12-03 02:21:42 +03:00
|
|
|
|
|
|
|
# note that when this script is called from buglist.cgi (rather
|
|
|
|
# than show_bug.cgi), it's possible that the product will be changed
|
|
|
|
# but that the version and/or component will be set to
|
|
|
|
# "--dont_change--" but still happen to be correct. in this case,
|
|
|
|
# the if statement will incorrectly trigger anyway. this is a
|
|
|
|
# pretty weird case, and not terribly unreasonable behavior, but
|
|
|
|
# worthy of a comment, perhaps.
|
|
|
|
#
|
1998-11-20 22:18:37 +03:00
|
|
|
my $vok = lsearch($::versions{$prod}, $::FORM{'version'}) >= 0;
|
|
|
|
my $cok = lsearch($::components{$prod}, $::FORM{'component'}) >= 0;
|
2000-03-21 19:47:06 +03:00
|
|
|
|
|
|
|
my $mok = 1; # so it won't affect the 'if' statement if milestones aren't used
|
|
|
|
if ( Param("usetargetmilestone") ) {
|
|
|
|
$mok = lsearch($::target_milestone{$prod}, $::FORM{'target_milestone'}) >= 0;
|
|
|
|
}
|
|
|
|
|
2001-08-11 05:18:24 +04:00
|
|
|
# If anything needs to be verified, generate a form for verifying it.
|
|
|
|
if (!$vok || !$cok || !$mok || (Param('usebuggroups') && !defined($::FORM{'addtonewgroup'}))) {
|
|
|
|
|
|
|
|
# Start the form.
|
|
|
|
print qq|<form action="process_bug.cgi" method="post">\n|;
|
|
|
|
|
|
|
|
# Add all form fields to the form as hidden fields (except those
|
|
|
|
# being verified), so the user's changes are preserved.
|
1998-09-16 01:49:26 +04:00
|
|
|
foreach my $i (keys %::FORM) {
|
2000-03-21 19:47:06 +03:00
|
|
|
if ($i ne 'version' && $i ne 'component' && $i ne 'target_milestone') {
|
2001-08-11 05:18:24 +04:00
|
|
|
print qq|<input type="hidden" name="$i" value="| . value_quote($::FORM{$i}) . qq|">\n|;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Display UI for verifying the version, component, and target milestone fields.
|
|
|
|
if (!$vok || !$cok || !$mok) {
|
|
|
|
my ($sectiontitle, $sectiondescription);
|
|
|
|
if ( Param('usetargetmilestone') ) {
|
|
|
|
$sectiontitle = "Verify Version, Component, Target Milestone";
|
|
|
|
$sectiondescription = qq|
|
|
|
|
You are moving the bug(s) to the product <b>$prod</b>, and now the
|
|
|
|
version, component, and/or target milestone fields are not correct
|
|
|
|
(or perhaps they were not correct in the first place). In any case,
|
|
|
|
please set the correct version, component, and target milestone now:
|
|
|
|
|;
|
|
|
|
} else {
|
|
|
|
$sectiontitle = "Verify Version, Component";
|
|
|
|
$sectiondescription = qq|
|
|
|
|
You are moving the bug(s) to the product <b>$prod</b>, and now the
|
|
|
|
version, and component fields are not correct (or perhaps they were
|
|
|
|
not correct in the first place). In any case, please set the correct
|
|
|
|
version and component now:
|
|
|
|
|;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $versionmenu = Version_element($::FORM{'version'}, $prod);
|
|
|
|
my $componentmenu = Component_element($::FORM{'component'}, $prod);
|
|
|
|
|
|
|
|
print qq|
|
|
|
|
<h3>$sectiontitle</h3>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
$sectiondescription
|
|
|
|
<p>
|
|
|
|
|
|
|
|
<table><tr>
|
|
|
|
<td>
|
|
|
|
<b>Version:</b><br>
|
|
|
|
$versionmenu
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<b>Component:</b><br>
|
|
|
|
$componentmenu
|
|
|
|
</td>
|
|
|
|
|;
|
|
|
|
|
|
|
|
if ( Param("usetargetmilestone") ) {
|
|
|
|
my $milestonemenu = Milestone_element($::FORM{'target_milestone'}, $prod);
|
|
|
|
print qq|
|
|
|
|
<td>
|
|
|
|
<b>Target Milestone:</b><br>
|
|
|
|
$milestonemenu
|
|
|
|
</td>
|
|
|
|
|;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
2001-08-11 05:18:24 +04:00
|
|
|
|
|
|
|
print qq|
|
|
|
|
</tr></table>
|
|
|
|
|;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Display UI for determining whether or not to remove the bug from
|
|
|
|
# its old product's group and/or add it to its new product's group.
|
|
|
|
if (Param('usebuggroups') && !defined($::FORM{'addtonewgroup'})) {
|
|
|
|
print qq|
|
|
|
|
<h3>Verify Bug Group</h3>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Do you want to add the bug to its new product's group (if any)?
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<input type="radio" name="addtonewgroup" value="no"><b>no</b><br>
|
|
|
|
<input type="radio" name="addtonewgroup" value="yes"><b>yes</b><br>
|
|
|
|
<input type="radio" name="addtonewgroup" value="yesifinold" checked>
|
|
|
|
<b>yes, but only if the bug was in its old product's group</b><br>
|
|
|
|
</p>
|
|
|
|
|;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
2001-08-11 05:18:24 +04:00
|
|
|
|
|
|
|
# End the form.
|
|
|
|
print qq|
|
|
|
|
<input type="submit" value="Commit">
|
|
|
|
</form>
|
|
|
|
<hr>
|
|
|
|
<a href="query.cgi">Cancel and Return to the Query Page</a>
|
|
|
|
|;
|
|
|
|
|
|
|
|
# End the page and stop processing.
|
2000-01-15 01:35:49 +03:00
|
|
|
PutFooter();
|
1998-09-16 01:49:26 +04:00
|
|
|
exit;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-17 08:15:23 +03:00
|
|
|
# Checks that the user is allowed to change the given field. Actually, right
|
|
|
|
# now, the rules are pretty simple, and don't look at the field itself very
|
|
|
|
# much, but that could be enhanced.
|
|
|
|
|
|
|
|
my $lastbugid = 0;
|
|
|
|
my $ownerid;
|
|
|
|
my $reporterid;
|
|
|
|
my $qacontactid;
|
|
|
|
|
|
|
|
sub CheckCanChangeField {
|
|
|
|
my ($f, $bugid, $oldvalue, $newvalue) = (@_);
|
|
|
|
if ($f eq "assigned_to" || $f eq "reporter" || $f eq "qa_contact") {
|
|
|
|
if ($oldvalue =~ /^\d+$/) {
|
|
|
|
if ($oldvalue == 0) {
|
|
|
|
$oldvalue = "";
|
|
|
|
} else {
|
|
|
|
$oldvalue = DBID_to_name($oldvalue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($oldvalue eq $newvalue) {
|
|
|
|
return 1;
|
|
|
|
}
|
2000-02-17 18:11:37 +03:00
|
|
|
if (trim($oldvalue) eq trim($newvalue)) {
|
|
|
|
return 1;
|
|
|
|
}
|
2000-02-17 08:15:23 +03:00
|
|
|
if ($f =~ /^longdesc/) {
|
|
|
|
return 1;
|
|
|
|
}
|
2001-02-23 22:32:13 +03:00
|
|
|
if ($f eq "resolution") { # always OK this. if they really can't,
|
|
|
|
return 1; # it'll flag it when "status" is checked.
|
2001-02-22 01:13:34 +03:00
|
|
|
}
|
2000-02-17 08:15:23 +03:00
|
|
|
if ($UserInEditGroupSet < 0) {
|
|
|
|
$UserInEditGroupSet = UserInGroup("editbugs");
|
|
|
|
}
|
|
|
|
if ($UserInEditGroupSet) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if ($lastbugid != $bugid) {
|
|
|
|
SendSQL("SELECT reporter, assigned_to, qa_contact FROM bugs " .
|
|
|
|
"WHERE bug_id = $bugid");
|
|
|
|
($reporterid, $ownerid, $qacontactid) = (FetchSQLData());
|
|
|
|
}
|
2000-06-02 22:54:55 +04:00
|
|
|
# Let reporter change bug status, even if they can't edit bugs.
|
|
|
|
# If reporter can't re-open their bug they will just file a duplicate.
|
|
|
|
# While we're at it, let them close their own bugs as well.
|
|
|
|
if ( ($f eq "bug_status") && ($whoid eq $reporterid) ) {
|
|
|
|
return 1;
|
|
|
|
}
|
2000-03-08 00:29:19 +03:00
|
|
|
if ($f eq "bug_status" && $newvalue ne $::unconfirmedstate &&
|
|
|
|
IsOpenedState($newvalue)) {
|
2000-02-17 08:15:23 +03:00
|
|
|
|
|
|
|
# Hmm. They are trying to set this bug to some opened state
|
|
|
|
# that isn't the UNCONFIRMED state. Are they in the right
|
|
|
|
# group? Or, has it ever been confirmed? If not, then this
|
|
|
|
# isn't legal.
|
|
|
|
|
|
|
|
if ($UserInCanConfirmGroupSet < 0) {
|
|
|
|
$UserInCanConfirmGroupSet = UserInGroup("canconfirm");
|
|
|
|
}
|
|
|
|
if ($UserInCanConfirmGroupSet) {
|
|
|
|
return 1;
|
|
|
|
}
|
2000-03-08 00:29:19 +03:00
|
|
|
SendSQL("SELECT everconfirmed FROM bugs WHERE bug_id = $bugid");
|
|
|
|
my $everconfirmed = FetchOneColumn();
|
|
|
|
if ($everconfirmed) {
|
|
|
|
return 1;
|
2000-02-17 08:15:23 +03:00
|
|
|
}
|
2000-03-08 00:29:19 +03:00
|
|
|
} elsif ($reporterid eq $whoid || $ownerid eq $whoid ||
|
|
|
|
$qacontactid eq $whoid) {
|
|
|
|
return 1;
|
2000-02-17 08:15:23 +03:00
|
|
|
}
|
|
|
|
SendSQL("UNLOCK TABLES");
|
|
|
|
$oldvalue = value_quote($oldvalue);
|
|
|
|
$newvalue = value_quote($newvalue);
|
2000-02-25 22:32:47 +03:00
|
|
|
print PuntTryAgain(qq{
|
2000-02-17 08:15:23 +03:00
|
|
|
Only the owner or submitter of the bug, or a sufficiently
|
|
|
|
empowered user, may make that change to the $f field.
|
|
|
|
<TABLE>
|
|
|
|
<TR><TH ALIGN="right">Old value:</TH><TD>$oldvalue</TD></TR>
|
|
|
|
<TR><TH ALIGN="right">New value:</TH><TD>$newvalue</TD></TR>
|
|
|
|
</TABLE>
|
2000-02-25 22:32:47 +03:00
|
|
|
});
|
2000-02-17 08:15:23 +03:00
|
|
|
PutFooter();
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-05-31 19:52:25 +04:00
|
|
|
if (defined $::FORM{'id'} && Param('strictvaluechecks')) {
|
1999-12-03 02:21:42 +03:00
|
|
|
# since this means that we were called from show_bug.cgi, now is a good
|
|
|
|
# time to do a whole bunch of error checking that can't easily happen when
|
|
|
|
# we've been called from buglist.cgi, because buglist.cgi only tweaks
|
|
|
|
# values that have been changed instead of submitting all the new values.
|
|
|
|
# (XXX those error checks need to happen too, but implementing them
|
|
|
|
# is more work in the current architecture of this script...)
|
|
|
|
#
|
2001-05-31 19:52:25 +04:00
|
|
|
CheckFormField(\%::FORM, 'rep_platform', \@::legal_platform);
|
|
|
|
CheckFormField(\%::FORM, 'priority', \@::legal_priority);
|
|
|
|
CheckFormField(\%::FORM, 'bug_severity', \@::legal_severity);
|
|
|
|
CheckFormField(\%::FORM, 'component',
|
|
|
|
\@{$::components{$::FORM{'product'}}});
|
|
|
|
CheckFormFieldDefined(\%::FORM, 'bug_file_loc');
|
|
|
|
CheckFormFieldDefined(\%::FORM, 'short_desc');
|
|
|
|
CheckFormField(\%::FORM, 'product', \@::legal_product);
|
|
|
|
CheckFormField(\%::FORM, 'version',
|
|
|
|
\@{$::versions{$::FORM{'product'}}});
|
|
|
|
CheckFormField(\%::FORM, 'op_sys', \@::legal_opsys);
|
|
|
|
CheckFormFieldDefined(\%::FORM, 'longdesclength');
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
2000-07-14 03:12:52 +04:00
|
|
|
my $action = '';
|
|
|
|
if (defined $::FORM{action}) {
|
|
|
|
$action = trim($::FORM{action});
|
|
|
|
}
|
|
|
|
if ($action eq Param("move-button-text")) {
|
|
|
|
$::FORM{'buglist'} = join (":", @idlist);
|
|
|
|
do "move.pl" || die "Error executing move.cgi: $!";
|
|
|
|
PutFooter();
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
if (!defined $::FORM{'who'}) {
|
|
|
|
$::FORM{'who'} = $::COOKIE{'Bugzilla_login'};
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
1999-12-03 02:21:42 +03:00
|
|
|
# the common updates to all bugs in @idlist start here
|
|
|
|
#
|
1998-11-20 22:18:37 +03:00
|
|
|
print "<TITLE>Update Bug " . join(" ", @idlist) . "</TITLE>\n";
|
|
|
|
if (defined $::FORM{'id'}) {
|
|
|
|
navigation_header();
|
|
|
|
}
|
|
|
|
print "<HR>\n";
|
1998-09-16 01:49:26 +04:00
|
|
|
$::query = "update bugs\nset";
|
|
|
|
$::comma = "";
|
|
|
|
umask(0);
|
|
|
|
|
|
|
|
sub DoComma {
|
|
|
|
$::query .= "$::comma\n ";
|
|
|
|
$::comma = ",";
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
2000-02-17 08:15:23 +03:00
|
|
|
sub DoConfirm {
|
|
|
|
if ($UserInEditGroupSet < 0) {
|
|
|
|
$UserInEditGroupSet = UserInGroup("editbugs");
|
|
|
|
}
|
|
|
|
if ($UserInCanConfirmGroupSet < 0) {
|
|
|
|
$UserInCanConfirmGroupSet = UserInGroup("canconfirm");
|
|
|
|
}
|
|
|
|
if ($UserInEditGroupSet || $UserInCanConfirmGroupSet) {
|
|
|
|
DoComma();
|
|
|
|
$::query .= "everconfirmed = 1";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
sub ChangeStatus {
|
|
|
|
my ($str) = (@_);
|
|
|
|
if ($str ne $::dontchange) {
|
|
|
|
DoComma();
|
2000-02-17 08:15:23 +03:00
|
|
|
if (IsOpenedState($str)) {
|
|
|
|
$::query .= "bug_status = IF(everconfirmed = 1, '$str', '$::unconfirmedstate')";
|
|
|
|
} else {
|
|
|
|
$::query .= "bug_status = '$str'";
|
|
|
|
}
|
2000-02-17 18:53:40 +03:00
|
|
|
$::FORM{'bug_status'} = $str; # Used later for call to
|
|
|
|
# CheckCanChangeField to make sure this
|
|
|
|
# is really kosher.
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
sub ChangeResolution {
|
|
|
|
my ($str) = (@_);
|
|
|
|
if ($str ne $::dontchange) {
|
|
|
|
DoComma();
|
|
|
|
$::query .= "resolution = '$str'";
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-16 19:37:57 +03:00
|
|
|
#
|
|
|
|
# This function checks if there is a comment required for a specific
|
|
|
|
# function and tests, if the comment was given.
|
|
|
|
# If comments are required for functions is defined by params.
|
|
|
|
#
|
|
|
|
sub CheckonComment( $ ) {
|
|
|
|
my ($function) = (@_);
|
|
|
|
|
|
|
|
# Param is 1 if comment should be added !
|
|
|
|
my $ret = Param( "commenton" . $function );
|
|
|
|
|
|
|
|
# Allow without comment in case of undefined Params.
|
|
|
|
$ret = 0 unless ( defined( $ret ));
|
|
|
|
|
|
|
|
if( $ret ) {
|
|
|
|
if (!defined $::FORM{'comment'} || $::FORM{'comment'} =~ /^\s*$/) {
|
2000-02-17 08:15:23 +03:00
|
|
|
# No comment - sorry, action not allowed !
|
2000-02-25 22:32:47 +03:00
|
|
|
PuntTryAgain("You have to specify a <b>comment</b> on this " .
|
|
|
|
"change. Please give some words " .
|
|
|
|
"on the reason for your change.");
|
1999-12-16 19:37:57 +03:00
|
|
|
} else {
|
|
|
|
$ret = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return( ! $ret ); # Return val has to be inverted
|
|
|
|
}
|
|
|
|
|
2001-06-27 05:44:34 +04:00
|
|
|
# Changing this so that it will process groups from checkboxes instead of
|
|
|
|
# select lists. This means that instead of looking for the bit-X values in
|
|
|
|
# the form, we need to loop through all the bug groups this user has access
|
|
|
|
# to, and for each one, see if it's selected.
|
|
|
|
# In addition, adding a little extra work so that we don't clobber groupsets
|
|
|
|
# for bugs where the user doesn't have access to the group, but does to the
|
|
|
|
# bug (as with the proposed reporter access patch.)
|
|
|
|
if($::usergroupset ne '0') {
|
|
|
|
# We want to start from zero and build up, since if all boxes have been
|
|
|
|
# unchecked, we want to revert to 0.
|
|
|
|
DoComma();
|
|
|
|
$::query .= "groupset = 0";
|
2001-07-22 04:29:45 +04:00
|
|
|
my ($id) = (@idlist);
|
|
|
|
SendSQL(<<_EOQ_);
|
|
|
|
SELECT bit, bit & $::usergroupset != 0, bit & bugs.groupset != 0
|
|
|
|
FROM groups, bugs
|
|
|
|
WHERE isbuggroup != 0 AND bug_id = $id
|
|
|
|
ORDER BY bit
|
|
|
|
_EOQ_
|
|
|
|
while (my ($b, $userhasgroup, $bughasgroup) = FetchSQLData()) {
|
|
|
|
if (!$::FORM{"bit-$b"}) {
|
|
|
|
# If we make it here, the item didn't exist on the form or the user
|
|
|
|
# said to clear it. The only time we add this group back in is if
|
|
|
|
# the bug already has this group on it and the user can't access it.
|
|
|
|
if ($bughasgroup && !$userhasgroup) {
|
|
|
|
$::query .= " + $b";
|
|
|
|
}
|
|
|
|
} elsif ($::FORM{"bit-$b"} == -1) {
|
|
|
|
# If we get here, the user came from the change several bugs form, and
|
|
|
|
# said not to change this group restriction. So we'll add this group
|
|
|
|
# back in only if the bug already has it.
|
|
|
|
if ($bughasgroup) {
|
|
|
|
$::query .= " + $b";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
# If we get here, the user said to set this group. If they don't have
|
|
|
|
# access to it, we'll use what's already on the bug, otherwise we'll
|
|
|
|
# add this one in.
|
|
|
|
if ($userhasgroup || $bughasgroup) {
|
|
|
|
$::query .= " + $b";
|
|
|
|
}
|
2001-06-27 05:44:34 +04:00
|
|
|
}
|
|
|
|
}
|
1999-03-11 19:30:54 +03:00
|
|
|
}
|
|
|
|
|
1999-12-03 02:21:42 +03:00
|
|
|
foreach my $field ("rep_platform", "priority", "bug_severity",
|
1998-09-16 01:49:26 +04:00
|
|
|
"summary", "component", "bug_file_loc", "short_desc",
|
1999-12-03 02:21:42 +03:00
|
|
|
"product", "version", "op_sys",
|
1999-01-28 00:17:10 +03:00
|
|
|
"target_milestone", "status_whiteboard") {
|
1998-09-16 01:49:26 +04:00
|
|
|
if (defined $::FORM{$field}) {
|
|
|
|
if ($::FORM{$field} ne $::dontchange) {
|
|
|
|
DoComma();
|
1999-01-28 00:17:10 +03:00
|
|
|
$::query .= "$field = " . SqlQuote(trim($::FORM{$field}));
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-20 22:18:37 +03:00
|
|
|
|
1999-01-28 00:17:10 +03:00
|
|
|
if (defined $::FORM{'qa_contact'}) {
|
|
|
|
my $name = trim($::FORM{'qa_contact'});
|
1999-01-28 00:23:06 +03:00
|
|
|
if ($name ne $::dontchange) {
|
1999-01-28 00:17:10 +03:00
|
|
|
my $id = 0;
|
|
|
|
if ($name ne "") {
|
|
|
|
$id = DBNameToIdAndCheck($name);
|
|
|
|
}
|
|
|
|
DoComma();
|
|
|
|
$::query .= "qa_contact = $id";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-20 22:18:37 +03:00
|
|
|
|
|
|
|
|
2001-08-13 04:46:20 +04:00
|
|
|
|
|
|
|
# If the user is submitting changes from show_bug.cgi for a single bug
|
|
|
|
# and they have access to an active bug group, process the flags that
|
|
|
|
# indicate whether or not the reporter, assignee, QA contact, and users
|
|
|
|
# on the CC list can see the bug regardless of its group restrictions.
|
|
|
|
if ( $::FORM{'id'} ) {
|
|
|
|
SendSQL("SELECT bit FROM groups WHERE bit & $::usergroupset != 0
|
|
|
|
AND isbuggroup != 0 AND isactive = 1");
|
|
|
|
my ($groupbits) = FetchSQLData();
|
|
|
|
if ( $groupbits ) {
|
|
|
|
DoComma();
|
|
|
|
$::FORM{'reporter_accessible'} = $::FORM{'reporter_accessible'} ? '1' : '0';
|
|
|
|
$::query .= "reporter_accessible = $::FORM{'reporter_accessible'}";
|
|
|
|
|
|
|
|
DoComma();
|
|
|
|
$::FORM{'assignee_accessible'} = $::FORM{'assignee_accessible'} ? '1' : '0';
|
|
|
|
$::query .= "assignee_accessible = $::FORM{'assignee_accessible'}";
|
|
|
|
|
|
|
|
DoComma();
|
|
|
|
$::FORM{'qacontact_accessible'} = $::FORM{'qacontact_accessible'} ? '1' : '0';
|
|
|
|
$::query .= "qacontact_accessible = $::FORM{'qacontact_accessible'}";
|
|
|
|
|
|
|
|
DoComma();
|
|
|
|
$::FORM{'cclist_accessible'} = $::FORM{'cclist_accessible'} ? '1' : '0';
|
|
|
|
$::query .= "cclist_accessible = $::FORM{'cclist_accessible'}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-14 23:41:26 +03:00
|
|
|
my $removedCcString = "";
|
2001-03-11 03:53:22 +03:00
|
|
|
my $duplicate = 0;
|
2000-01-11 21:25:11 +03:00
|
|
|
|
1999-12-03 02:21:42 +03:00
|
|
|
if ( Param('strictvaluechecks') ) {
|
|
|
|
CheckFormFieldDefined(\%::FORM, 'knob');
|
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
SWITCH: for ($::FORM{'knob'}) {
|
|
|
|
/^none$/ && do {
|
|
|
|
last SWITCH;
|
|
|
|
};
|
2000-02-17 08:15:23 +03:00
|
|
|
/^confirm$/ && CheckonComment( "confirm" ) && do {
|
|
|
|
DoConfirm();
|
|
|
|
ChangeStatus('NEW');
|
|
|
|
last SWITCH;
|
|
|
|
};
|
1999-12-16 19:37:57 +03:00
|
|
|
/^accept$/ && CheckonComment( "accept" ) && do {
|
2000-02-17 08:15:23 +03:00
|
|
|
DoConfirm();
|
1998-09-16 01:49:26 +04:00
|
|
|
ChangeStatus('ASSIGNED');
|
2000-05-09 02:00:38 +04:00
|
|
|
if (Param("musthavemilestoneonaccept")) {
|
|
|
|
if (Param("usetargetmilestone")) {
|
|
|
|
$requiremilestone = 1;
|
|
|
|
}
|
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
last SWITCH;
|
|
|
|
};
|
2000-02-17 08:15:23 +03:00
|
|
|
/^clearresolution$/ && CheckonComment( "clearresolution" ) && do {
|
1998-09-16 01:49:26 +04:00
|
|
|
ChangeResolution('');
|
|
|
|
last SWITCH;
|
|
|
|
};
|
1999-12-16 19:37:57 +03:00
|
|
|
/^resolve$/ && CheckonComment( "resolve" ) && do {
|
1998-09-16 01:49:26 +04:00
|
|
|
ChangeStatus('RESOLVED');
|
|
|
|
ChangeResolution($::FORM{'resolution'});
|
|
|
|
last SWITCH;
|
|
|
|
};
|
1999-12-16 19:37:57 +03:00
|
|
|
/^reassign$/ && CheckonComment( "reassign" ) && do {
|
2000-02-17 08:15:23 +03:00
|
|
|
if ($::FORM{'andconfirm'}) {
|
|
|
|
DoConfirm();
|
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
ChangeStatus('NEW');
|
|
|
|
DoComma();
|
1999-12-03 02:21:42 +03:00
|
|
|
if ( Param("strictvaluechecks") ) {
|
|
|
|
if ( !defined$::FORM{'assigned_to'} ||
|
|
|
|
trim($::FORM{'assigned_to'}) eq "") {
|
2000-02-25 22:32:47 +03:00
|
|
|
PuntTryAgain("You cannot reassign to a bug to nobody. Unless " .
|
|
|
|
"you intentionally cleared out the " .
|
|
|
|
"\"Reassign bug to\" field, " .
|
|
|
|
Param("browserbugmessage"));
|
1999-12-03 02:21:42 +03:00
|
|
|
}
|
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
my $newid = DBNameToIdAndCheck($::FORM{'assigned_to'});
|
|
|
|
$::query .= "assigned_to = $newid";
|
|
|
|
last SWITCH;
|
|
|
|
};
|
1999-12-16 19:37:57 +03:00
|
|
|
/^reassignbycomponent$/ && CheckonComment( "reassignbycomponent" ) && do {
|
1999-12-15 02:54:30 +03:00
|
|
|
if ($::FORM{'product'} eq $::dontchange) {
|
2000-02-25 22:32:47 +03:00
|
|
|
PuntTryAgain("You must specify a product to help determine the " .
|
|
|
|
"new owner of these bugs.");
|
1999-12-15 02:54:30 +03:00
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
if ($::FORM{'component'} eq $::dontchange) {
|
2000-02-25 22:32:47 +03:00
|
|
|
PuntTryAgain("You must specify a component whose owner should " .
|
|
|
|
"get assigned these bugs.");
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
2000-03-29 04:34:56 +04:00
|
|
|
if ($::FORM{'compconfirm'}) {
|
|
|
|
DoConfirm();
|
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
ChangeStatus('NEW');
|
|
|
|
SendSQL("select initialowner from components where program=" .
|
1998-11-20 22:18:37 +03:00
|
|
|
SqlQuote($::FORM{'product'}) . " and value=" .
|
|
|
|
SqlQuote($::FORM{'component'}));
|
2001-02-22 21:11:29 +03:00
|
|
|
my $newid = FetchOneColumn();
|
|
|
|
my $newname = DBID_to_name($newid);
|
1998-09-16 01:49:26 +04:00
|
|
|
DoComma();
|
|
|
|
$::query .= "assigned_to = $newid";
|
2000-01-15 03:23:31 +03:00
|
|
|
if (Param("useqacontact")) {
|
|
|
|
SendSQL("select initialqacontact from components where program=" .
|
|
|
|
SqlQuote($::FORM{'product'}) .
|
|
|
|
" and value=" . SqlQuote($::FORM{'component'}));
|
|
|
|
my $qacontact = FetchOneColumn();
|
2001-02-22 21:11:29 +03:00
|
|
|
if (defined $qacontact && $qacontact != 0) {
|
2000-01-15 03:23:31 +03:00
|
|
|
DoComma();
|
2001-02-22 21:11:29 +03:00
|
|
|
$::query .= "qa_contact = $qacontact";
|
2000-01-15 03:23:31 +03:00
|
|
|
}
|
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
last SWITCH;
|
|
|
|
};
|
1999-12-16 19:37:57 +03:00
|
|
|
/^reopen$/ && CheckonComment( "reopen" ) && do {
|
2000-10-24 02:01:31 +04:00
|
|
|
SendSQL("SELECT resolution FROM bugs WHERE bug_id = $::FORM{'id'}");
|
1998-09-16 01:49:26 +04:00
|
|
|
ChangeStatus('REOPENED');
|
2000-02-01 01:50:10 +03:00
|
|
|
ChangeResolution('');
|
2000-10-24 02:01:31 +04:00
|
|
|
if (FetchOneColumn() eq 'DUPLICATE') {
|
|
|
|
SendSQL("DELETE FROM duplicates WHERE dupe = $::FORM{'id'}");
|
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
last SWITCH;
|
|
|
|
};
|
1999-12-16 19:37:57 +03:00
|
|
|
/^verify$/ && CheckonComment( "verify" ) && do {
|
1998-09-16 01:49:26 +04:00
|
|
|
ChangeStatus('VERIFIED');
|
|
|
|
last SWITCH;
|
|
|
|
};
|
1999-12-16 19:37:57 +03:00
|
|
|
/^close$/ && CheckonComment( "close" ) && do {
|
1998-09-16 01:49:26 +04:00
|
|
|
ChangeStatus('CLOSED');
|
|
|
|
last SWITCH;
|
|
|
|
};
|
1999-12-16 19:37:57 +03:00
|
|
|
/^duplicate$/ && CheckonComment( "duplicate" ) && do {
|
1998-09-16 01:49:26 +04:00
|
|
|
ChangeStatus('RESOLVED');
|
|
|
|
ChangeResolution('DUPLICATE');
|
1999-12-03 02:21:42 +03:00
|
|
|
if ( Param('strictvaluechecks') ) {
|
|
|
|
CheckFormFieldDefined(\%::FORM,'dup_id');
|
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
my $num = trim($::FORM{'dup_id'});
|
2000-02-02 02:48:13 +03:00
|
|
|
SendSQL("SELECT bug_id FROM bugs WHERE bug_id = " . SqlQuote($num));
|
|
|
|
$num = FetchOneColumn();
|
|
|
|
if (!$num) {
|
2001-01-18 05:20:04 +03:00
|
|
|
PuntTryAgain("You must specify a valid bug number of which this bug " .
|
|
|
|
"is a duplicate. The bug has not been changed.")
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
2000-02-02 02:48:13 +03:00
|
|
|
if (!defined($::FORM{'id'}) || $num == $::FORM{'id'}) {
|
2000-02-25 22:32:47 +03:00
|
|
|
PuntTryAgain("Nice try, $::FORM{'who'}. But it doesn't really ".
|
|
|
|
"make sense to mark a bug as a duplicate of " .
|
|
|
|
"itself, does it?");
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
2000-08-29 22:01:07 +04:00
|
|
|
my $checkid = trim($::FORM{'id'});
|
|
|
|
SendSQL("SELECT bug_id FROM bugs where bug_id = " . SqlQuote($checkid));
|
|
|
|
$checkid = FetchOneColumn();
|
|
|
|
if (!$checkid) {
|
|
|
|
PuntTryAgain("The bug id $::FORM{'id'} is invalid. Please reload this bug ".
|
|
|
|
"and try again.");
|
|
|
|
}
|
2001-03-11 21:54:05 +03:00
|
|
|
$::FORM{'comment'} .= "\n\n*** This bug has been marked as a duplicate of $num ***";
|
2001-03-11 03:53:22 +03:00
|
|
|
$duplicate = $num;
|
1999-05-12 09:22:36 +04:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
last SWITCH;
|
|
|
|
};
|
|
|
|
# default
|
|
|
|
print "Unknown action $::FORM{'knob'}!\n";
|
2000-01-15 01:35:49 +03:00
|
|
|
PutFooter();
|
1998-09-16 01:49:26 +04:00
|
|
|
exit;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
if ($#idlist < 0) {
|
2000-02-25 22:32:47 +03:00
|
|
|
PuntTryAgain("You apparently didn't choose any bugs to modify.");
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
2000-01-07 00:16:15 +03:00
|
|
|
|
|
|
|
my @keywordlist;
|
|
|
|
my %keywordseen;
|
|
|
|
|
|
|
|
if ($::FORM{'keywords'}) {
|
2000-01-19 22:32:05 +03:00
|
|
|
foreach my $keyword (split(/[\s,]+/, $::FORM{'keywords'})) {
|
|
|
|
if ($keyword eq '') {
|
|
|
|
next;
|
|
|
|
}
|
2000-07-14 00:04:15 +04:00
|
|
|
my $i = GetKeywordIdFromName($keyword);
|
2000-01-07 00:16:15 +03:00
|
|
|
if (!$i) {
|
2000-02-25 22:32:47 +03:00
|
|
|
PuntTryAgain("Unknown keyword named <code>$keyword</code>. " .
|
|
|
|
"<P>The legal keyword names are " .
|
|
|
|
"<A HREF=describekeywords.cgi>" .
|
|
|
|
"listed here</A>.");
|
2000-01-07 00:16:15 +03:00
|
|
|
}
|
|
|
|
if (!$keywordseen{$i}) {
|
|
|
|
push(@keywordlist, $i);
|
|
|
|
$keywordseen{$i} = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-01-13 19:19:19 +03:00
|
|
|
my $keywordaction = $::FORM{'keywordaction'} || "makeexact";
|
|
|
|
|
|
|
|
if ($::comma eq "" && 0 == @keywordlist && $keywordaction ne "makeexact") {
|
1998-09-16 01:49:26 +04:00
|
|
|
if (!defined $::FORM{'comment'} || $::FORM{'comment'} =~ /^\s*$/) {
|
2000-02-25 22:32:47 +03:00
|
|
|
PuntTryAgain("Um, you apparently did not change anything on the " .
|
|
|
|
"selected bugs.");
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
my $basequery = $::query;
|
1999-05-25 23:22:31 +04:00
|
|
|
my $delta_ts;
|
1998-08-26 10:14:20 +04:00
|
|
|
|
1999-05-27 18:13:41 +04:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
sub SnapShotBug {
|
|
|
|
my ($id) = (@_);
|
1999-05-25 23:22:31 +04:00
|
|
|
SendSQL("select delta_ts, " . join(',', @::log_columns) .
|
1998-11-20 22:18:37 +03:00
|
|
|
" from bugs where bug_id = $id");
|
1999-05-25 23:22:31 +04:00
|
|
|
my @row = FetchSQLData();
|
|
|
|
$delta_ts = shift @row;
|
1999-05-27 18:13:41 +04:00
|
|
|
|
1999-05-25 23:22:31 +04:00
|
|
|
return @row;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-27 18:13:41 +04:00
|
|
|
sub SnapShotDeps {
|
|
|
|
my ($i, $target, $me) = (@_);
|
|
|
|
SendSQL("select $target from dependencies where $me = $i order by $target");
|
|
|
|
my @list;
|
|
|
|
while (MoreSQLData()) {
|
|
|
|
push(@list, FetchOneColumn());
|
|
|
|
}
|
|
|
|
return join(',', @list);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
my $timestamp;
|
|
|
|
|
|
|
|
sub LogDependencyActivity {
|
|
|
|
my ($i, $oldstr, $target, $me) = (@_);
|
|
|
|
my $newstr = SnapShotDeps($i, $target, $me);
|
|
|
|
if ($oldstr ne $newstr) {
|
2001-07-20 19:18:30 +04:00
|
|
|
# Figure out what's really different...
|
|
|
|
my ($removed, $added) = DiffStrings($oldstr, $newstr);
|
|
|
|
$added = SqlQuote($added);
|
|
|
|
$removed = SqlQuote($removed);
|
2000-01-22 07:24:42 +03:00
|
|
|
my $fieldid = GetFieldID($target);
|
|
|
|
SendSQL("INSERT INTO bugs_activity " .
|
2001-07-20 19:18:30 +04:00
|
|
|
"(bug_id,who,bug_when,fieldid,removed,added) VALUES " .
|
|
|
|
"($i,$whoid,$timestamp,$fieldid,$removed,$added)");
|
1999-05-27 18:13:41 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-12-03 02:21:42 +03:00
|
|
|
# this loop iterates once for each bug to be processed (eg when this script
|
2000-01-07 00:16:15 +03:00
|
|
|
# is called with multiple bugs selected from buglist.cgi instead of
|
1999-12-03 02:21:42 +03:00
|
|
|
# show_bug.cgi).
|
|
|
|
#
|
1998-09-16 01:49:26 +04:00
|
|
|
foreach my $id (@idlist) {
|
1999-05-27 18:13:41 +04:00
|
|
|
my %dependencychanged;
|
2000-02-18 00:41:39 +03:00
|
|
|
my $write = "WRITE"; # Might want to make a param to control
|
|
|
|
# whether we do LOW_PRIORITY ...
|
2000-02-16 00:29:14 +03:00
|
|
|
SendSQL("LOCK TABLES bugs $write, bugs_activity $write, cc $write, " .
|
|
|
|
"profiles $write, dependencies $write, votes $write, " .
|
|
|
|
"keywords $write, longdescs $write, fielddefs $write, " .
|
2000-05-09 02:00:38 +04:00
|
|
|
"keyworddefs READ, groups READ, attachments READ, products READ");
|
1998-09-16 01:49:26 +04:00
|
|
|
my @oldvalues = SnapShotBug($id);
|
2000-05-09 02:00:38 +04:00
|
|
|
my %oldhash;
|
2000-02-17 08:15:23 +03:00
|
|
|
my $i = 0;
|
|
|
|
foreach my $col (@::log_columns) {
|
2000-05-09 02:00:38 +04:00
|
|
|
$oldhash{$col} = $oldvalues[$i];
|
2000-02-17 08:15:23 +03:00
|
|
|
if (exists $::FORM{$col}) {
|
|
|
|
CheckCanChangeField($col, $id, $oldvalues[$i], $::FORM{$col});
|
|
|
|
}
|
|
|
|
$i++;
|
|
|
|
}
|
2000-05-09 02:00:38 +04:00
|
|
|
if ($requiremilestone) {
|
|
|
|
my $value = $::FORM{'target_milestone'};
|
|
|
|
if (!defined $value || $value eq $::dontchange) {
|
|
|
|
$value = $oldhash{'target_milestone'};
|
|
|
|
}
|
|
|
|
SendSQL("SELECT defaultmilestone FROM products WHERE product = " .
|
|
|
|
SqlQuote($oldhash{'product'}));
|
|
|
|
if ($value eq FetchOneColumn()) {
|
|
|
|
SendSQL("UNLOCK TABLES");
|
|
|
|
PuntTryAgain("You must determine a target milestone for bug $id " .
|
|
|
|
"if you are going to accept it. (Part of " .
|
|
|
|
"accepting a bug is giving an estimate of when it " .
|
|
|
|
"will be fixed.)");
|
|
|
|
}
|
|
|
|
}
|
1999-05-25 23:22:31 +04:00
|
|
|
if (defined $::FORM{'delta_ts'} && $::FORM{'delta_ts'} ne $delta_ts) {
|
|
|
|
print "
|
|
|
|
<H1>Mid-air collision detected!</H1>
|
|
|
|
Someone else has made changes to this bug at the same time you were trying to.
|
|
|
|
The changes made were:
|
|
|
|
<p>
|
|
|
|
";
|
|
|
|
DumpBugActivity($id, $delta_ts);
|
2000-03-10 21:01:32 +03:00
|
|
|
my $longdesc = GetLongDescriptionAsHTML($id);
|
1999-05-25 23:22:31 +04:00
|
|
|
my $longchanged = 0;
|
1999-12-03 02:21:42 +03:00
|
|
|
|
1999-05-25 23:22:31 +04:00
|
|
|
if (length($longdesc) > $::FORM{'longdesclength'}) {
|
|
|
|
$longchanged = 1;
|
2000-03-10 21:01:32 +03:00
|
|
|
print "<P>Added text to the long description:<blockquote>";
|
|
|
|
print substr($longdesc, $::FORM{'longdesclength'});
|
|
|
|
print "</blockquote>\n";
|
1999-05-25 23:22:31 +04:00
|
|
|
}
|
|
|
|
SendSQL("unlock tables");
|
|
|
|
print "You have the following choices: <ul>\n";
|
|
|
|
$::FORM{'delta_ts'} = $delta_ts;
|
|
|
|
print "<li><form method=post>";
|
|
|
|
foreach my $i (keys %::FORM) {
|
2001-06-08 00:26:40 +04:00
|
|
|
# Make sure we don't include the username/password fields in the
|
|
|
|
# HTML. If cookies are off, they'll have to reauthenticate after
|
|
|
|
# hitting "submit changes anyway".
|
|
|
|
# see http://bugzilla.mozilla.org/show_bug.cgi?id=15980
|
|
|
|
if ($i !~ /^(Bugzilla|LDAP)_(login|password)$/) {
|
|
|
|
my $value = value_quote($::FORM{$i});
|
|
|
|
print qq{<input type=hidden name="$i" value="$value">\n};
|
|
|
|
}
|
1999-05-25 23:22:31 +04:00
|
|
|
}
|
|
|
|
print qq{<input type=submit value="Submit my changes anyway">\n};
|
2001-03-10 02:59:40 +03:00
|
|
|
print " This will cause all of the above changes to be overwritten";
|
|
|
|
if ($longchanged) {
|
|
|
|
print ", except for the changes to the description";
|
|
|
|
}
|
1999-05-27 18:13:41 +04:00
|
|
|
print qq{.</form>\n<li><a href="show_bug.cgi?id=$id">Throw away my changes, and go revisit bug $id</a></ul>\n};
|
2000-01-15 01:35:49 +03:00
|
|
|
PutFooter();
|
1999-05-25 23:22:31 +04:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
1999-05-27 18:13:41 +04:00
|
|
|
my %deps;
|
|
|
|
if (defined $::FORM{'dependson'}) {
|
|
|
|
my $me = "blocked";
|
|
|
|
my $target = "dependson";
|
|
|
|
for (1..2) {
|
|
|
|
$deps{$target} = [];
|
|
|
|
my %seen;
|
|
|
|
foreach my $i (split('[\s,]+', $::FORM{$target})) {
|
|
|
|
if ($i eq "") {
|
|
|
|
next;
|
|
|
|
|
|
|
|
}
|
|
|
|
SendSQL("select bug_id from bugs where bug_id = " .
|
|
|
|
SqlQuote($i));
|
|
|
|
my $comp = FetchOneColumn();
|
|
|
|
if ($comp ne $i) {
|
2000-02-25 22:32:47 +03:00
|
|
|
PuntTryAgain("$i is not a legal bug number");
|
1999-05-27 18:13:41 +04:00
|
|
|
}
|
2001-02-27 01:50:58 +03:00
|
|
|
if ($id eq $i) {
|
|
|
|
PuntTryAgain("You can't make a bug blocked or dependent on itself.");
|
|
|
|
}
|
1999-05-27 18:13:41 +04:00
|
|
|
if (!exists $seen{$i}) {
|
|
|
|
push(@{$deps{$target}}, $i);
|
|
|
|
$seen{$i} = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
my @stack = @{$deps{$target}};
|
|
|
|
while (@stack) {
|
|
|
|
my $i = shift @stack;
|
|
|
|
SendSQL("select $target from dependencies where $me = $i");
|
|
|
|
while (MoreSQLData()) {
|
|
|
|
my $t = FetchOneColumn();
|
|
|
|
if ($t == $id) {
|
2000-02-25 22:32:47 +03:00
|
|
|
PuntTryAgain("Dependency loop detected!<P>" .
|
|
|
|
"The change you are making to " .
|
|
|
|
"dependencies has caused a circular " .
|
|
|
|
"dependency chain.");
|
1999-05-27 18:13:41 +04:00
|
|
|
}
|
|
|
|
if (!exists $seen{$t}) {
|
|
|
|
push @stack, $t;
|
|
|
|
$seen{$t} = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-05-25 23:22:31 +04:00
|
|
|
|
2001-02-27 01:50:58 +03:00
|
|
|
if ($me eq 'dependson') {
|
|
|
|
my @deps = @{$deps{'dependson'}};
|
|
|
|
my @blocks = @{$deps{'blocked'}};
|
|
|
|
my @union = ();
|
|
|
|
my @isect = ();
|
|
|
|
my %union = ();
|
|
|
|
my %isect = ();
|
|
|
|
foreach my $b (@deps, @blocks) { $union{$b}++ && $isect{$b}++ }
|
|
|
|
@union = keys %union;
|
|
|
|
@isect = keys %isect;
|
|
|
|
if (@isect > 0) {
|
|
|
|
my $both;
|
|
|
|
foreach my $i (@isect) {
|
|
|
|
$both = $both . "#" . $i . " ";
|
|
|
|
}
|
|
|
|
PuntTryAgain("Dependency loop detected!<P>" .
|
|
|
|
"This bug can't be both blocked and dependent " .
|
|
|
|
"on bug " . $both . "!");
|
|
|
|
}
|
|
|
|
}
|
1999-05-27 18:13:41 +04:00
|
|
|
my $tmp = $me;
|
|
|
|
$me = $target;
|
|
|
|
$target = $tmp;
|
|
|
|
}
|
|
|
|
}
|
1999-05-25 23:22:31 +04:00
|
|
|
|
2000-01-07 00:16:15 +03:00
|
|
|
if (@::legal_keywords) {
|
|
|
|
# There are three kinds of "keywordsaction": makeexact, add, delete.
|
|
|
|
# For makeexact, we delete everything, and then add our things.
|
|
|
|
# For add, we delete things we're adding (to make sure we don't
|
|
|
|
# end up having them twice), and then we add them.
|
|
|
|
# For delete, we just delete things on the list.
|
2000-01-17 14:38:41 +03:00
|
|
|
my $changed = 0;
|
2000-01-07 00:16:15 +03:00
|
|
|
if ($keywordaction eq "makeexact") {
|
|
|
|
SendSQL("DELETE FROM keywords WHERE bug_id = $id");
|
2000-01-17 14:38:41 +03:00
|
|
|
$changed = 1;
|
2000-01-07 00:16:15 +03:00
|
|
|
}
|
|
|
|
foreach my $keyword (@keywordlist) {
|
|
|
|
if ($keywordaction ne "makeexact") {
|
|
|
|
SendSQL("DELETE FROM keywords
|
|
|
|
WHERE bug_id = $id AND keywordid = $keyword");
|
2000-01-17 14:38:41 +03:00
|
|
|
$changed = 1;
|
2000-01-07 00:16:15 +03:00
|
|
|
}
|
|
|
|
if ($keywordaction ne "delete") {
|
|
|
|
SendSQL("INSERT INTO keywords
|
|
|
|
(bug_id, keywordid) VALUES ($id, $keyword)");
|
2000-01-17 14:38:41 +03:00
|
|
|
$changed = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($changed) {
|
|
|
|
SendSQL("SELECT keyworddefs.name
|
|
|
|
FROM keyworddefs, keywords
|
|
|
|
WHERE keywords.bug_id = $id
|
|
|
|
AND keyworddefs.id = keywords.keywordid
|
|
|
|
ORDER BY keyworddefs.name");
|
|
|
|
my @list;
|
|
|
|
while (MoreSQLData()) {
|
|
|
|
push(@list, FetchOneColumn());
|
2000-01-07 00:16:15 +03:00
|
|
|
}
|
2000-01-17 14:38:41 +03:00
|
|
|
SendSQL("UPDATE bugs SET keywords = " .
|
|
|
|
SqlQuote(join(', ', @list)) .
|
|
|
|
" WHERE bug_id = $id");
|
2000-01-07 00:16:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-20 22:18:37 +03:00
|
|
|
my $query = "$basequery\nwhere bug_id = $id";
|
1998-08-26 10:14:20 +04:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
# print "<PRE>$query</PRE>\n";
|
|
|
|
|
|
|
|
if ($::comma ne "") {
|
|
|
|
SendSQL($query);
|
2000-01-13 20:46:01 +03:00
|
|
|
SendSQL("select delta_ts from bugs where bug_id = $id");
|
|
|
|
} else {
|
|
|
|
SendSQL("select now()");
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
2000-01-13 20:46:01 +03:00
|
|
|
$timestamp = FetchOneColumn();
|
1998-08-26 10:14:20 +04:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
if (defined $::FORM{'comment'}) {
|
|
|
|
AppendComment($id, $::FORM{'who'}, $::FORM{'comment'});
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
2001-07-20 19:18:30 +04:00
|
|
|
if (defined $::FORM{newcc} || defined $::FORM{removecc} || defined $::FORM{masscc}) {
|
|
|
|
# Get the current CC list for this bug
|
|
|
|
my %oncc;
|
|
|
|
SendSQL("SELECT who FROM cc WHERE bug_id = $id");
|
|
|
|
while (MoreSQLData()) {
|
|
|
|
$oncc{FetchOneColumn()} = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
# If masscc is defined, then we came from buglist and need to either add or
|
|
|
|
# remove cc's... otherwise, we came from bugform and may need to do both.
|
|
|
|
my ($cc_add, $cc_remove) = "";
|
|
|
|
if (defined $::FORM{masscc}) {
|
|
|
|
if ($::FORM{ccaction} eq 'add') {
|
|
|
|
$cc_add = $::FORM{masscc};
|
|
|
|
} elsif ($::FORM{ccaction} eq 'remove') {
|
|
|
|
$cc_remove = $::FORM{masscc};
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$cc_add = $::FORM{newcc};
|
|
|
|
# We came from bug_form which uses a select box to determine what cc's
|
|
|
|
# need to be removed...
|
|
|
|
if (defined $::FORM{removecc}) {
|
|
|
|
$cc_remove = join (",", @{$::MFORM{cc}});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my (@added, @removed) = ();
|
|
|
|
if ($cc_add) {
|
|
|
|
my @new = split(/[ ,]/, $cc_add);
|
|
|
|
foreach my $person (@new) {
|
|
|
|
my $pid = DBNameToIdAndCheck($person);
|
|
|
|
# If this person isn't already on the cc list, add them
|
|
|
|
if (! $oncc{$pid}) {
|
|
|
|
SendSQL("INSERT INTO cc (bug_id, who) VALUES ($id, $pid)");
|
|
|
|
push (@added, $person);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($cc_remove) {
|
|
|
|
my @old = split (/[ ,]/, $cc_remove);
|
|
|
|
foreach my $person (@old) {
|
|
|
|
my $pid = DBNameToIdAndCheck($person);
|
|
|
|
# If the person is on the cc list, remove them
|
|
|
|
if ($oncc{$pid}) {
|
|
|
|
SendSQL("DELETE FROM cc WHERE bug_id = $id AND who = $pid");
|
|
|
|
push (@removed, $person);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# Save off the removedCcString so it can be fed to processmail
|
|
|
|
$removedCcString = join (",", @removed);
|
|
|
|
}
|
|
|
|
# If any changes were found, record it in the activity log
|
|
|
|
if (scalar(@removed) || scalar(@added)) {
|
|
|
|
my $col = GetFieldID('cc');
|
|
|
|
my $removed = SqlQuote(join(", ", @removed));
|
|
|
|
my $added = SqlQuote(join(", ", @added));
|
|
|
|
SendSQL("INSERT INTO bugs_activity " .
|
|
|
|
"(bug_id,who,bug_when,fieldid,removed,added) VALUES " .
|
|
|
|
"($id,$whoid,'$timestamp',$col,$removed,$added)");
|
|
|
|
}
|
2000-03-29 01:31:24 +04:00
|
|
|
}
|
1999-05-27 18:13:41 +04:00
|
|
|
|
|
|
|
if (defined $::FORM{'dependson'}) {
|
|
|
|
my $me = "blocked";
|
|
|
|
my $target = "dependson";
|
|
|
|
for (1..2) {
|
|
|
|
SendSQL("select $target from dependencies where $me = $id order by $target");
|
|
|
|
my %snapshot;
|
|
|
|
my @oldlist;
|
|
|
|
while (MoreSQLData()) {
|
|
|
|
push(@oldlist, FetchOneColumn());
|
|
|
|
}
|
|
|
|
my @newlist = sort {$a <=> $b} @{$deps{$target}};
|
1999-05-27 22:18:29 +04:00
|
|
|
@dependencychanged{@oldlist} = 1;
|
|
|
|
@dependencychanged{@newlist} = 1;
|
1999-05-27 18:13:41 +04:00
|
|
|
|
|
|
|
while (0 < @oldlist || 0 < @newlist) {
|
|
|
|
if (@oldlist == 0 || (@newlist > 0 &&
|
|
|
|
$oldlist[0] > $newlist[0])) {
|
|
|
|
$snapshot{$newlist[0]} = SnapShotDeps($newlist[0], $me,
|
|
|
|
$target);
|
|
|
|
shift @newlist;
|
|
|
|
} elsif (@newlist == 0 || (@oldlist > 0 &&
|
|
|
|
$newlist[0] > $oldlist[0])) {
|
|
|
|
$snapshot{$oldlist[0]} = SnapShotDeps($oldlist[0], $me,
|
|
|
|
$target);
|
|
|
|
shift @oldlist;
|
|
|
|
} else {
|
|
|
|
if ($oldlist[0] != $newlist[0]) {
|
|
|
|
die "Error in list comparing code";
|
|
|
|
}
|
|
|
|
shift @oldlist;
|
|
|
|
shift @newlist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
my @keys = keys(%snapshot);
|
|
|
|
if (@keys) {
|
|
|
|
my $oldsnap = SnapShotDeps($id, $target, $me);
|
|
|
|
SendSQL("delete from dependencies where $me = $id");
|
|
|
|
foreach my $i (@{$deps{$target}}) {
|
|
|
|
SendSQL("insert into dependencies ($me, $target) values ($id, $i)");
|
|
|
|
}
|
|
|
|
foreach my $k (@keys) {
|
1999-05-27 22:18:29 +04:00
|
|
|
LogDependencyActivity($k, $snapshot{$k}, $me, $target);
|
1999-05-27 18:13:41 +04:00
|
|
|
}
|
|
|
|
LogDependencyActivity($id, $oldsnap, $target, $me);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $tmp = $me;
|
|
|
|
$me = $target;
|
|
|
|
$target = $tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-08-11 05:18:24 +04:00
|
|
|
# When a bug changes products and the old or new product is associated
|
|
|
|
# with a bug group, it may be necessary to remove the bug from the old
|
|
|
|
# group or add it to the new one. There are a very specific series of
|
|
|
|
# conditions under which these activities take place, more information
|
|
|
|
# about which can be found in comments within the conditionals below.
|
|
|
|
if (
|
|
|
|
# the "usebuggroups" parameter is on, indicating that products
|
|
|
|
# are associated with groups of the same name;
|
|
|
|
Param('usebuggroups')
|
|
|
|
|
|
|
|
# the user has changed the product to which the bug belongs;
|
|
|
|
&& defined $::FORM{'product'}
|
|
|
|
&& $::FORM{'product'} ne $::dontchange
|
|
|
|
&& $::FORM{'product'} ne $oldhash{'product'}
|
|
|
|
) {
|
|
|
|
# DEBUGGING INSTRUCTIONS THAT WILL GO AWAY ONCE THIS PATCH IS READY
|
|
|
|
print qq|<p>\n|;
|
|
|
|
print qq|<em>usebuggroups</em> is enabled and this bug has changed from the
|
|
|
|
<em>$oldhash{'product'}</em> to the <em>$::FORM{'product'}</em> product,
|
|
|
|
so it is time to check if we have to remove the bug from its old product
|
|
|
|
group or add it to its new product group.<br>\n|;
|
|
|
|
# END DEBUGGING INSTRUCTIONS THAT WILL GO AWAY ONCE THIS PATCH IS READY
|
|
|
|
if (
|
|
|
|
# the user wants to add the bug to the new product's group;
|
|
|
|
($::FORM{'addtonewgroup'} eq 'yes'
|
|
|
|
|| ($::FORM{'addtonewgroup'} eq 'yesifinold'
|
|
|
|
&& GroupNameToBit($oldhash{'product'}) & $oldhash{'groupset'}))
|
|
|
|
|
|
|
|
# the new product is associated with a group;
|
|
|
|
&& GroupExists($::FORM{'product'})
|
|
|
|
|
|
|
|
# the bug is not already in the group; (This can happen when the user
|
|
|
|
# goes to the "edit multiple bugs" form with a list of bugs at least
|
|
|
|
# one of which is in the new group. In this situation, the user can
|
|
|
|
# simultaneously change the bugs to a new product and move the bugs
|
|
|
|
# into that product's group, which happens earlier in this script
|
|
|
|
# and thus is already done. If we didn't check for this, then this
|
|
|
|
# situation would cause us to add the bug to the group twice, which
|
|
|
|
# would result in the bug being added to a totally different group.)
|
|
|
|
&& !BugInGroup($id, $::FORM{'product'})
|
|
|
|
|
|
|
|
# the user is a member of the associated group, indicating they
|
|
|
|
# are authorized to add bugs to that group, *or* the "usebuggroupsentry"
|
|
|
|
# parameter is off, indicating that users can add bugs to a product
|
|
|
|
# regardless of whether or not they belong to its associated group;
|
|
|
|
&& (UserInGroup($::FORM{'product'}) || !Param('usebuggroupsentry'))
|
|
|
|
|
|
|
|
# the associated group is active, indicating it can accept new bugs;
|
|
|
|
&& GroupIsActive(GroupNameToBit($::FORM{'product'}))
|
|
|
|
) {
|
|
|
|
# Add the bug to the group associated with its new product.
|
|
|
|
my $groupbit = GroupNameToBit($::FORM{'product'});
|
|
|
|
# DEBUGGING INSTRUCTIONS THAT WILL GO AWAY ONCE THIS PATCH IS READY
|
|
|
|
print qq|
|
|
|
|
The user specified <em>addtonewgroup</em>, there is a group
|
|
|
|
associated with the new product, the user is a member of that
|
|
|
|
group (or <em>usebuggroupsentry</em> is off), and the group
|
|
|
|
is active, so we have to add the product to the group:<br>
|
|
|
|
<code>UPDATE bugs SET groupset = groupset + $groupbit WHERE bug_id = $id</code><br>
|
|
|
|
|;
|
|
|
|
# END DEBUGGING INSTRUCTIONS THAT WILL GO AWAY ONCE THIS PATCH IS READY
|
|
|
|
SendSQL("UPDATE bugs SET groupset = groupset + $groupbit WHERE bug_id = $id");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
# the old product is associated with a group;
|
|
|
|
GroupExists($oldhash{'product'})
|
|
|
|
|
|
|
|
# the bug is a member of that group;
|
|
|
|
&& BugInGroup($id, $oldhash{'product'})
|
|
|
|
) {
|
|
|
|
# Remove the bug from the group associated with its old product.
|
|
|
|
# DEBUGGING INSTRUCTIONS THAT WILL GO AWAY ONCE THIS PATCH IS READY
|
|
|
|
my $groupbit = GroupNameToBit($oldhash{'product'});
|
|
|
|
print qq|
|
|
|
|
There is a group associated with the old product, the bug is a
|
|
|
|
member of that group, so remove the bug from the group:<br>
|
|
|
|
UPDATE bugs SET groupset = groupset - $groupbit WHERE bug_id = $id<br>
|
|
|
|
|;
|
|
|
|
# END DEBUGGING INSTRUCTIONS THAT WILL GO AWAY ONCE THIS PATCH IS READY
|
|
|
|
SendSQL("UPDATE bugs SET groupset = groupset - $groupbit WHERE bug_id = $id");
|
|
|
|
}
|
|
|
|
|
|
|
|
print qq|</p>|;
|
|
|
|
}
|
|
|
|
|
1999-12-03 02:21:42 +03:00
|
|
|
# get a snapshot of the newly set values out of the database,
|
|
|
|
# and then generate any necessary bug activity entries by seeing
|
|
|
|
# what has changed since before we wrote out the new values.
|
|
|
|
#
|
1998-09-16 01:49:26 +04:00
|
|
|
my @newvalues = SnapShotBug($id);
|
2000-01-07 00:16:15 +03:00
|
|
|
|
2001-02-14 23:41:26 +03:00
|
|
|
# for passing to processmail to ensure that when someone is removed
|
|
|
|
# from one of these fields, they get notified of that fact (if desired)
|
|
|
|
#
|
|
|
|
my $origOwner = "";
|
|
|
|
my $origQaContact = "";
|
|
|
|
|
2000-01-17 14:38:41 +03:00
|
|
|
foreach my $c (@::log_columns) {
|
2000-01-07 00:16:15 +03:00
|
|
|
my $col = $c; # We modify it, don't want to modify array
|
|
|
|
# values in place.
|
1998-09-16 01:49:26 +04:00
|
|
|
my $old = shift @oldvalues;
|
|
|
|
my $new = shift @newvalues;
|
1998-12-09 22:27:37 +03:00
|
|
|
if (!defined $old) {
|
|
|
|
$old = "";
|
|
|
|
}
|
|
|
|
if (!defined $new) {
|
|
|
|
$new = "";
|
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
if ($old ne $new) {
|
2001-02-14 23:41:26 +03:00
|
|
|
|
|
|
|
# save off the old value for passing to processmail so the old
|
|
|
|
# owner can be notified
|
|
|
|
#
|
|
|
|
if ($col eq 'assigned_to') {
|
|
|
|
$old = ($old) ? DBID_to_name($old) : "";
|
|
|
|
$new = ($new) ? DBID_to_name($new) : "";
|
|
|
|
$origOwner = $old;
|
|
|
|
}
|
|
|
|
|
|
|
|
# ditto for the old qa contact
|
|
|
|
#
|
|
|
|
if ($col eq 'qa_contact') {
|
2000-08-13 03:30:51 +04:00
|
|
|
$old = ($old) ? DBID_to_name($old) : "";
|
|
|
|
$new = ($new) ? DBID_to_name($new) : "";
|
2001-02-14 23:41:26 +03:00
|
|
|
$origQaContact = $old;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
2001-02-14 23:41:26 +03:00
|
|
|
|
2001-07-20 19:18:30 +04:00
|
|
|
# If this is the keyword field, only record the changes, not everything.
|
|
|
|
if ($col eq 'keywords') {
|
|
|
|
($old, $new) = DiffStrings($old, $new);
|
|
|
|
}
|
|
|
|
|
1999-10-08 03:54:52 +04:00
|
|
|
if ($col eq 'product') {
|
2000-02-17 08:15:23 +03:00
|
|
|
RemoveVotes($id, 0,
|
1999-10-08 03:54:52 +04:00
|
|
|
"This bug has been moved to a different product");
|
|
|
|
}
|
2000-01-22 07:24:42 +03:00
|
|
|
$col = GetFieldID($col);
|
1998-09-16 01:49:26 +04:00
|
|
|
$old = SqlQuote($old);
|
|
|
|
$new = SqlQuote($new);
|
2001-07-20 19:18:30 +04:00
|
|
|
my $q = "insert into bugs_activity (bug_id,who,bug_when,fieldid,removed,added) values ($id,$whoid,'$timestamp',$col,$old,$new)";
|
1998-11-20 22:18:37 +03:00
|
|
|
# puts "<pre>$q</pre>"
|
1998-09-16 01:49:26 +04:00
|
|
|
SendSQL($q);
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-12 09:22:36 +04:00
|
|
|
print "<TABLE BORDER=1><TD><H2>Changes to bug $id submitted</H2>\n";
|
1999-05-11 03:15:09 +04:00
|
|
|
SendSQL("unlock tables");
|
2001-02-14 23:41:26 +03:00
|
|
|
|
2001-06-07 01:17:42 +04:00
|
|
|
my @ARGLIST = ();
|
2001-02-14 23:41:26 +03:00
|
|
|
if ( $removedCcString ne "" ) {
|
|
|
|
push @ARGLIST, ("-forcecc", $removedCcString);
|
|
|
|
}
|
|
|
|
if ( $origOwner ne "" ) {
|
|
|
|
push @ARGLIST, ("-forceowner", $origOwner);
|
|
|
|
}
|
|
|
|
if ( $origQaContact ne "") {
|
|
|
|
push @ARGLIST, ( "-forceqacontact", $origQaContact);
|
|
|
|
}
|
|
|
|
push @ARGLIST, ($id, $::FORM{'who'});
|
2001-06-07 01:17:42 +04:00
|
|
|
system ("./processmail",@ARGLIST);
|
2001-02-14 23:41:26 +03:00
|
|
|
|
1999-05-12 09:22:36 +04:00
|
|
|
print "<TD><A HREF=\"show_bug.cgi?id=$id\">Back To BUG# $id</A></TABLE>\n";
|
1999-05-27 18:13:41 +04:00
|
|
|
|
2001-03-11 03:53:22 +03:00
|
|
|
if ($duplicate) {
|
|
|
|
# Check to see if Reporter of this bug is reporter of Dupe
|
|
|
|
SendSQL("SELECT reporter FROM bugs WHERE bug_id = " . SqlQuote($::FORM{'id'}));
|
|
|
|
my $reporter = FetchOneColumn();
|
|
|
|
SendSQL("SELECT reporter FROM bugs WHERE bug_id = " . SqlQuote($duplicate) . " and reporter = $reporter");
|
|
|
|
my $isreporter = FetchOneColumn();
|
|
|
|
SendSQL("SELECT who FROM cc WHERE bug_id = " . SqlQuote($duplicate) . " and who = $reporter");
|
|
|
|
my $isoncc = FetchOneColumn();
|
|
|
|
unless ($isreporter || $isoncc) {
|
|
|
|
# The reporter is oblivious to the existance of the new bug... add 'em to the cc (and record activity)
|
|
|
|
my $ccid = GetFieldID("cc");
|
|
|
|
my $whochange = DBNameToIdAndCheck($::FORM{'who'});
|
2001-07-20 19:18:30 +04:00
|
|
|
SendSQL("INSERT INTO bugs_activity (bug_id,who,bug_when,fieldid,removed,added) VALUES " .
|
|
|
|
"('$duplicate','$whochange',now(),$ccid,'','" . DBID_to_name($reporter) . "')");
|
2001-03-11 03:53:22 +03:00
|
|
|
SendSQL("INSERT INTO cc (who, bug_id) VALUES ($reporter, " . SqlQuote($duplicate) . ")");
|
|
|
|
}
|
|
|
|
AppendComment($duplicate, $::FORM{'who'}, "*** Bug $::FORM{'id'} has been marked as a duplicate of this bug. ***");
|
|
|
|
if ( Param('strictvaluechecks') ) {
|
|
|
|
CheckFormFieldDefined(\%::FORM,'comment');
|
|
|
|
}
|
|
|
|
SendSQL("INSERT INTO duplicates VALUES ($duplicate, $::FORM{'id'})");
|
|
|
|
print "<TABLE BORDER=1><TD><H2>Duplicate notation added to bug $duplicate</H2>\n";
|
|
|
|
system("./processmail", $duplicate, $::FORM{'who'});
|
|
|
|
print "<TD><A HREF=\"show_bug.cgi?id=$duplicate\">Go To BUG# $duplicate</A></TABLE>\n";
|
|
|
|
}
|
|
|
|
|
1999-05-27 18:13:41 +04:00
|
|
|
foreach my $k (keys(%dependencychanged)) {
|
1999-05-27 22:18:29 +04:00
|
|
|
print "<TABLE BORDER=1><TD><H2>Checking for dependency changes on bug $k</H2>\n";
|
2000-05-18 01:29:33 +04:00
|
|
|
system("./processmail", $k, $::FORM{'who'});
|
1999-05-27 18:13:41 +04:00
|
|
|
print "<TD><A HREF=\"show_bug.cgi?id=$k\">Go To BUG# $k</A></TABLE>\n";
|
|
|
|
}
|
|
|
|
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
if (defined $::next_bug) {
|
1999-05-12 09:22:36 +04:00
|
|
|
print("<P>The next bug in your list is:\n");
|
1998-09-16 01:49:26 +04:00
|
|
|
$::FORM{'id'} = $::next_bug;
|
|
|
|
print "<HR>\n";
|
1998-08-26 10:14:20 +04:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
navigation_header();
|
1998-09-16 18:36:38 +04:00
|
|
|
do "bug_form.pl";
|
1998-08-26 10:14:20 +04:00
|
|
|
} else {
|
1999-05-12 09:22:36 +04:00
|
|
|
navigation_header();
|
2000-01-15 01:35:49 +03:00
|
|
|
PutFooter();
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|