2003-03-27 00:07:02 +00:00
|
|
|
#!/usr/bin/perl -wT
|
1998-09-15 21:49:26 +00:00
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
1998-08-26 06:14:20 +00:00
|
|
|
#
|
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-08-26 06:14:20 +00:00
|
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
1999-11-01 23:33:56 +00:00
|
|
|
#
|
1998-08-26 06:14:20 +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-08-26 06:14:20 +00:00
|
|
|
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
1999-12-02 23:21:42 +00:00
|
|
|
# Dan Mosedale <dmose@mozilla.org>
|
2000-03-10 16:25:03 +00:00
|
|
|
# Joe Robins <jmrobins@tgix.com>
|
2002-04-05 07:09:28 +00:00
|
|
|
# Gervase Markham <gerv@gerv.net>
|
1998-08-26 06:14:20 +00:00
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
use strict;
|
2002-01-20 01:44:52 +00:00
|
|
|
use lib qw(.);
|
|
|
|
|
2003-05-05 01:15:38 +00:00
|
|
|
use Bugzilla;
|
2002-11-24 19:56:34 +00:00
|
|
|
use Bugzilla::Constants;
|
1998-09-15 21:49:26 +00:00
|
|
|
require "CGI.pl";
|
2002-11-28 10:49:58 +00:00
|
|
|
|
2004-03-18 03:57:05 +00:00
|
|
|
use Bugzilla::Bug;
|
1998-08-26 06:14:20 +00:00
|
|
|
|
2002-10-25 03:59:35 +00:00
|
|
|
use Bugzilla::User;
|
|
|
|
|
2002-04-05 07:09:28 +00:00
|
|
|
# Shut up misguided -w warnings about "used only once". For some reason,
|
1998-09-15 21:49:26 +00:00
|
|
|
# "use vars" chokes on me when I try it here.
|
1999-10-18 23:04:40 +00:00
|
|
|
sub sillyness {
|
|
|
|
my $zz;
|
|
|
|
$zz = $::buffer;
|
2000-02-25 19:32:47 +00:00
|
|
|
$zz = %::components;
|
|
|
|
$zz = %::versions;
|
|
|
|
$zz = @::legal_opsys;
|
|
|
|
$zz = @::legal_platform;
|
|
|
|
$zz = @::legal_priority;
|
|
|
|
$zz = @::legal_product;
|
|
|
|
$zz = @::legal_severity;
|
2000-03-24 01:01:47 +00:00
|
|
|
$zz = %::target_milestone;
|
1999-10-18 23:04:40 +00:00
|
|
|
}
|
2000-02-25 19:32:47 +00:00
|
|
|
|
2002-04-05 07:09:28 +00:00
|
|
|
# Use global template variables.
|
|
|
|
use vars qw($vars $template);
|
|
|
|
|
2004-03-27 03:51:44 +00:00
|
|
|
my $user = Bugzilla->login(LOGIN_REQUIRED);
|
1998-08-26 06:14:20 +00:00
|
|
|
|
2003-05-05 01:15:38 +00:00
|
|
|
my $cgi = Bugzilla->cgi;
|
|
|
|
|
2005-02-18 16:01:48 +00:00
|
|
|
my $dbh = Bugzilla->dbh;
|
|
|
|
|
2002-10-25 03:59:35 +00:00
|
|
|
# do a match on the fields if applicable
|
|
|
|
|
2005-04-07 23:37:56 +00:00
|
|
|
&Bugzilla::User::match_field ($cgi, {
|
2002-10-25 03:59:35 +00:00
|
|
|
'cc' => { 'type' => 'multi' },
|
|
|
|
'assigned_to' => { 'type' => 'single' },
|
2005-02-25 17:10:33 +00:00
|
|
|
'qa_contact' => { 'type' => 'single' },
|
2002-10-25 03:59:35 +00:00
|
|
|
});
|
2002-04-15 23:17:03 +00:00
|
|
|
|
|
|
|
# The format of the initial comment can be structured by adding fields to the
|
|
|
|
# enter_bug template and then referencing them in the comment template.
|
|
|
|
my $comment;
|
|
|
|
|
2005-04-07 23:59:59 +00:00
|
|
|
my $format = GetFormat("bug/create/comment",
|
|
|
|
scalar($cgi->param('format')), "txt");
|
2002-04-28 22:05:31 +00:00
|
|
|
|
2002-09-17 23:28:24 +00:00
|
|
|
$template->process($format->{'template'}, $vars, \$comment)
|
2002-04-15 23:17:03 +00:00
|
|
|
|| ThrowTemplateError($template->error());
|
|
|
|
|
|
|
|
ValidateComment($comment);
|
2002-03-11 07:33:03 +00:00
|
|
|
|
2005-02-24 16:30:40 +00:00
|
|
|
# Check that the product exists and that the user
|
|
|
|
# is allowed to submit bugs in this product.
|
2005-04-07 23:59:59 +00:00
|
|
|
my $product = $cgi->param('product');
|
2005-02-24 16:30:40 +00:00
|
|
|
if (!CanEnterProduct($product)) {
|
|
|
|
ThrowUserError("entry_access_denied", {product => $product});
|
2002-08-12 05:43:05 +00:00
|
|
|
}
|
2005-02-24 16:30:40 +00:00
|
|
|
my $product_id = get_product_id($product);
|
2000-03-28 23:18:45 +00:00
|
|
|
|
2002-04-05 07:09:28 +00:00
|
|
|
# Set cookies
|
2005-04-07 23:59:59 +00:00
|
|
|
if (defined $cgi->param('product')) {
|
|
|
|
if (defined $cgi->param('version')) {
|
2003-05-05 01:15:38 +00:00
|
|
|
$cgi->send_cookie(-name => "VERSION-$product",
|
|
|
|
-value => $cgi->param('version'),
|
|
|
|
-expires => "Fri, 01-Jan-2038 00:00:00 GMT");
|
2002-04-05 07:09:28 +00:00
|
|
|
}
|
|
|
|
}
|
1998-08-26 06:14:20 +00:00
|
|
|
|
2005-04-07 23:59:59 +00:00
|
|
|
if (defined $cgi->param('maketemplate')) {
|
2002-04-05 07:09:28 +00:00
|
|
|
$vars->{'url'} = $::buffer;
|
1998-08-26 06:14:20 +00:00
|
|
|
|
2003-05-05 01:15:38 +00:00
|
|
|
print $cgi->header();
|
2002-04-24 07:24:50 +00:00
|
|
|
$template->process("bug/create/make-template.html.tmpl", $vars)
|
|
|
|
|| ThrowTemplateError($template->error());
|
1998-09-15 21:49:26 +00:00
|
|
|
exit;
|
1998-08-26 06:14:20 +00:00
|
|
|
}
|
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
umask 0;
|
1998-08-26 06:14:20 +00:00
|
|
|
|
2002-04-05 07:09:28 +00:00
|
|
|
# Some sanity checking
|
2005-04-07 23:59:59 +00:00
|
|
|
my $component_id = get_component_id($product_id,
|
|
|
|
scalar($cgi->param('component')));
|
2002-10-01 22:41:09 +00:00
|
|
|
$component_id || ThrowUserError("require_component");
|
1998-08-26 06:14:20 +00:00
|
|
|
|
2005-04-09 23:18:18 +00:00
|
|
|
if (!defined $cgi->param('short_desc')
|
|
|
|
|| trim($cgi->param('short_desc')) eq "") {
|
2002-10-01 22:41:09 +00:00
|
|
|
ThrowUserError("require_summary");
|
1999-11-19 14:50:57 +00:00
|
|
|
}
|
|
|
|
|
2004-12-02 22:31:35 +00:00
|
|
|
# Check that if required a description has been provided
|
|
|
|
# This has to go somewhere after 'maketemplate'
|
|
|
|
# or it breaks bookmarks with no comments.
|
2005-04-07 23:59:59 +00:00
|
|
|
if (Param("commentoncreate") && !trim($cgi->param('comment'))) {
|
2004-12-02 22:31:35 +00:00
|
|
|
ThrowUserError("description_required");
|
|
|
|
}
|
|
|
|
|
2005-04-07 23:59:59 +00:00
|
|
|
# If bug_file_loc is "http://", the default, use an empty value instead.
|
|
|
|
$cgi->param('bug_file_loc', '') if $cgi->param('bug_file_loc') eq 'http://';
|
|
|
|
|
|
|
|
my $sql_product = SqlQuote($cgi->param('product'));
|
|
|
|
my $sql_component = SqlQuote($cgi->param('component'));
|
2002-04-05 07:09:28 +00:00
|
|
|
|
|
|
|
# Default assignee is the component owner.
|
2005-04-07 23:59:59 +00:00
|
|
|
if (!UserInGroup("editbugs") || $cgi->param('assigned_to') eq "") {
|
2002-04-05 07:09:28 +00:00
|
|
|
SendSQL("SELECT initialowner FROM components " .
|
2002-08-12 05:43:05 +00:00
|
|
|
"WHERE id = $component_id");
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => 'assigned_to', -value => FetchOneColumn());
|
2001-02-23 01:04:01 +00:00
|
|
|
} else {
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => 'assigned_to',
|
|
|
|
-value => DBNameToIdAndCheck(trim($cgi->param('assigned_to'))));
|
1998-08-26 06:14:20 +00:00
|
|
|
}
|
|
|
|
|
2002-08-12 05:43:05 +00:00
|
|
|
my @bug_fields = ("version", "rep_platform",
|
1998-09-15 21:49:26 +00:00
|
|
|
"bug_severity", "priority", "op_sys", "assigned_to",
|
2002-08-12 05:43:05 +00:00
|
|
|
"bug_status", "bug_file_loc", "short_desc",
|
2003-10-07 07:02:15 +00:00
|
|
|
"target_milestone", "status_whiteboard");
|
1999-02-03 19:00:13 +00:00
|
|
|
|
2005-02-25 17:10:33 +00:00
|
|
|
# Retrieve the default QA contact if the field is empty
|
1999-02-03 19:00:13 +00:00
|
|
|
if (Param("useqacontact")) {
|
2005-02-25 17:10:33 +00:00
|
|
|
my $qa_contact;
|
2005-04-07 23:59:59 +00:00
|
|
|
if (!UserInGroup("editbugs") || !defined $cgi->param('qa_contact')
|
|
|
|
|| trim($cgi->param('qa_contact')) eq "") {
|
2005-02-25 17:10:33 +00:00
|
|
|
SendSQL("SELECT initialqacontact FROM components " .
|
|
|
|
"WHERE id = $component_id");
|
|
|
|
$qa_contact = FetchOneColumn();
|
|
|
|
} else {
|
2005-04-07 23:59:59 +00:00
|
|
|
$qa_contact = DBNameToIdAndCheck(trim($cgi->param('qa_contact')));
|
2005-02-25 17:10:33 +00:00
|
|
|
}
|
|
|
|
|
2005-03-15 05:20:48 +00:00
|
|
|
if ($qa_contact) {
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => 'qa_contact', -value => $qa_contact);
|
1999-02-03 19:00:13 +00:00
|
|
|
push(@bug_fields, "qa_contact");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-07 21:34:45 +00:00
|
|
|
if (UserInGroup("editbugs") || UserInGroup("canconfirm")) {
|
2002-08-19 22:47:06 +00:00
|
|
|
# Default to NEW if the user hasn't selected another status
|
2005-04-09 23:18:18 +00:00
|
|
|
if (!defined $cgi->param('bug_status')) {
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => 'bug_status', -value => "NEW");
|
|
|
|
}
|
2002-08-19 22:47:06 +00:00
|
|
|
} else {
|
|
|
|
# Default to UNCONFIRMED if we are using it, NEW otherwise
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => 'bug_status', -value => 'UNCONFIRMED');
|
2002-08-12 05:43:05 +00:00
|
|
|
SendSQL("SELECT votestoconfirm FROM products WHERE id = $product_id");
|
2005-04-07 23:59:59 +00:00
|
|
|
if (!FetchOneColumn()) {
|
|
|
|
$cgi->param(-name => 'bug_status', -value => "NEW");
|
2000-02-17 05:15:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-07 23:59:59 +00:00
|
|
|
if (!defined $cgi->param('target_milestone')) {
|
2002-08-12 05:43:05 +00:00
|
|
|
SendSQL("SELECT defaultmilestone FROM products WHERE name=$sql_product");
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => 'target_milestone', -value => FetchOneColumn());
|
2000-03-23 18:23:14 +00:00
|
|
|
}
|
|
|
|
|
2002-03-01 05:39:25 +00:00
|
|
|
if (!Param('letsubmitterchoosepriority')) {
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => 'priority', -value => Param('defaultpriority'));
|
2002-03-01 05:39:25 +00:00
|
|
|
}
|
|
|
|
|
2002-02-05 00:20:09 +00:00
|
|
|
GetVersionTable();
|
2002-04-05 07:09:28 +00:00
|
|
|
|
|
|
|
# Some more sanity checking
|
2005-04-07 23:52:20 +00:00
|
|
|
CheckFormField($cgi, 'product', \@::legal_product);
|
|
|
|
CheckFormField($cgi, 'rep_platform', \@::legal_platform);
|
|
|
|
CheckFormField($cgi, 'bug_severity', \@::legal_severity);
|
|
|
|
CheckFormField($cgi, 'priority', \@::legal_priority);
|
|
|
|
CheckFormField($cgi, 'op_sys', \@::legal_opsys);
|
|
|
|
CheckFormField($cgi, 'bug_status', ['UNCONFIRMED', 'NEW']);
|
|
|
|
CheckFormField($cgi, 'version', $::versions{$product});
|
|
|
|
CheckFormField($cgi, 'component', $::components{$product});
|
|
|
|
CheckFormField($cgi, 'target_milestone', $::target_milestone{$product});
|
|
|
|
CheckFormFieldDefined($cgi, 'assigned_to');
|
|
|
|
CheckFormFieldDefined($cgi, 'bug_file_loc');
|
|
|
|
CheckFormFieldDefined($cgi, 'comment');
|
2000-02-17 14:49:33 +00:00
|
|
|
|
1999-07-08 00:21:33 +00:00
|
|
|
my @used_fields;
|
2002-04-05 07:09:28 +00:00
|
|
|
foreach my $field (@bug_fields) {
|
2005-04-07 23:59:59 +00:00
|
|
|
if (defined $cgi->param($field)) {
|
2002-04-05 07:09:28 +00:00
|
|
|
push (@used_fields, $field);
|
1999-07-08 00:21:33 +00:00
|
|
|
}
|
|
|
|
}
|
2002-04-05 07:09:28 +00:00
|
|
|
|
2005-04-07 23:59:59 +00:00
|
|
|
if (defined $cgi->param('bug_status')
|
|
|
|
&& $cgi->param('bug_status') ne 'UNCONFIRMED')
|
2002-04-05 07:09:28 +00:00
|
|
|
{
|
2000-02-17 05:15:23 +00:00
|
|
|
push(@used_fields, "everconfirmed");
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => 'everconfirmed', -value => 1);
|
2000-02-17 05:15:23 +00:00
|
|
|
}
|
1999-02-03 19:00:13 +00:00
|
|
|
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => 'product_id', -value => $product_id);
|
2002-08-12 05:43:05 +00:00
|
|
|
push(@used_fields, "product_id");
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => 'component_id', -value => $component_id);
|
2002-08-12 05:43:05 +00:00
|
|
|
push(@used_fields, "component_id");
|
|
|
|
|
2002-06-26 12:16:24 +00:00
|
|
|
my %ccids;
|
|
|
|
|
|
|
|
# Create the ccid hash for inserting into the db
|
|
|
|
# use a hash rather than a list to avoid adding users twice
|
2005-04-07 23:59:59 +00:00
|
|
|
if (defined $cgi->param('cc')) {
|
|
|
|
foreach my $person ($cgi->param('cc')) {
|
|
|
|
my $ccid = DBNameToIdAndCheck($person);
|
|
|
|
if ($ccid && !$ccids{$ccid}) {
|
|
|
|
$ccids{$ccid} = 1;
|
2002-06-26 12:16:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-09-13 22:21:19 +00:00
|
|
|
# Check for valid keywords and create list of keywords to be added to db
|
|
|
|
# (validity routine copied from process_bug.cgi)
|
|
|
|
my @keywordlist;
|
|
|
|
my %keywordseen;
|
|
|
|
|
2005-04-07 23:59:59 +00:00
|
|
|
if ($cgi->param('keywords') && UserInGroup("editbugs")) {
|
|
|
|
foreach my $keyword (split(/[\s,]+/, $cgi->param('keywords'))) {
|
2002-09-13 22:21:19 +00:00
|
|
|
if ($keyword eq '') {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
my $i = GetKeywordIdFromName($keyword);
|
|
|
|
if (!$i) {
|
2003-04-02 12:35:07 +00:00
|
|
|
ThrowUserError("unknown_keyword",
|
|
|
|
{ keyword => $keyword });
|
2002-09-13 22:21:19 +00:00
|
|
|
}
|
|
|
|
if (!$keywordseen{$i}) {
|
|
|
|
push(@keywordlist, $i);
|
|
|
|
$keywordseen{$i} = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-06-26 12:16:24 +00:00
|
|
|
|
2002-10-17 04:31:56 +00:00
|
|
|
# Check for valid dependency info.
|
|
|
|
foreach my $field ("dependson", "blocked") {
|
2005-04-07 23:59:59 +00:00
|
|
|
if (UserInGroup("editbugs") && defined($cgi->param($field)) &&
|
|
|
|
$cgi->param($field) ne "") {
|
2002-10-17 04:31:56 +00:00
|
|
|
my @validvalues;
|
2005-04-07 23:59:59 +00:00
|
|
|
foreach my $id (split(/[\s,]+/, $cgi->param($field))) {
|
2002-10-17 04:31:56 +00:00
|
|
|
next unless $id;
|
2004-12-21 09:04:01 +00:00
|
|
|
ValidateBugID($id, $field);
|
2002-10-17 04:31:56 +00:00
|
|
|
push(@validvalues, $id);
|
|
|
|
}
|
2005-04-07 23:59:59 +00:00
|
|
|
$cgi->param(-name => $field, -value => join(",", @validvalues));
|
2002-10-17 04:31:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
# Gather the dependecy list, and make sure there are no circular refs
|
|
|
|
my %deps;
|
2005-04-07 23:59:59 +00:00
|
|
|
if (UserInGroup("editbugs") && defined($cgi->param('dependson'))) {
|
2002-10-17 04:31:56 +00:00
|
|
|
my $me = "blocked";
|
|
|
|
my $target = "dependson";
|
|
|
|
my %deptree;
|
|
|
|
for (1..2) {
|
|
|
|
$deptree{$target} = [];
|
|
|
|
my %seen;
|
2005-04-07 23:59:59 +00:00
|
|
|
foreach my $i (split('[\s,]+', $cgi->param($target))) {
|
2002-10-17 04:31:56 +00:00
|
|
|
if (!exists $seen{$i}) {
|
|
|
|
push(@{$deptree{$target}}, $i);
|
|
|
|
$seen{$i} = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# populate $deps{$target} as first-level deps only.
|
|
|
|
# and find remainder of dependency tree in $deptree{$target}
|
|
|
|
@{$deps{$target}} = @{$deptree{$target}};
|
|
|
|
my @stack = @{$deps{$target}};
|
|
|
|
while (@stack) {
|
|
|
|
my $i = shift @stack;
|
2005-05-02 18:52:02 +00:00
|
|
|
SendSQL("SELECT $target FROM dependencies WHERE $me = " .
|
2002-10-17 04:31:56 +00:00
|
|
|
SqlQuote($i));
|
|
|
|
while (MoreSQLData()) {
|
|
|
|
my $t = FetchOneColumn();
|
|
|
|
if (!exists $seen{$t}) {
|
|
|
|
push(@{$deptree{$target}}, $t);
|
|
|
|
push @stack, $t;
|
|
|
|
$seen{$t} = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($me eq 'dependson') {
|
|
|
|
my @deps = @{$deptree{'dependson'}};
|
|
|
|
my @blocks = @{$deptree{'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 . GetBugLink($i, "#" . $i) . " ";
|
|
|
|
}
|
2003-04-02 12:35:07 +00:00
|
|
|
|
|
|
|
ThrowUserError("dependency_loop_multi",
|
2005-03-05 00:18:48 +00:00
|
|
|
{ both => $both });
|
2002-10-17 04:31:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
my $tmp = $me;
|
|
|
|
$me = $target;
|
|
|
|
$target = $tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-08 16:51:03 +00:00
|
|
|
# get current time
|
|
|
|
SendSQL("SELECT NOW()");
|
|
|
|
my $timestamp = FetchOneColumn();
|
|
|
|
my $sql_timestamp = SqlQuote($timestamp);
|
|
|
|
|
2002-04-05 07:09:28 +00:00
|
|
|
# Build up SQL string to add bug.
|
|
|
|
my $sql = "INSERT INTO bugs " .
|
2005-02-08 16:51:03 +00:00
|
|
|
"(" . join(",", @used_fields) . ", reporter, creation_ts, delta_ts, " .
|
2005-01-16 13:36:05 +00:00
|
|
|
"estimated_time, remaining_time, deadline) " .
|
2002-04-05 07:09:28 +00:00
|
|
|
"VALUES (";
|
1998-08-26 06:14:20 +00:00
|
|
|
|
1999-07-08 00:21:33 +00:00
|
|
|
foreach my $field (@used_fields) {
|
2005-04-07 23:59:59 +00:00
|
|
|
$sql .= SqlQuote($cgi->param($field)) . ",";
|
1998-08-26 06:14:20 +00:00
|
|
|
}
|
|
|
|
|
2002-04-05 07:09:28 +00:00
|
|
|
$comment =~ s/\r\n?/\n/g; # Get rid of \r.
|
1999-04-21 17:45:22 +00:00
|
|
|
$comment = trim($comment);
|
2002-04-05 07:09:28 +00:00
|
|
|
# If comment is all whitespace, it'll be null at this point. That's
|
2001-04-09 19:10:43 +00:00
|
|
|
# OK except for the fact that it causes e-mail to be suppressed.
|
|
|
|
$comment = $comment ? $comment : " ";
|
1999-04-21 17:45:22 +00:00
|
|
|
|
2005-02-08 16:51:03 +00:00
|
|
|
$sql .= "$::userid, $sql_timestamp, $sql_timestamp, ";
|
2002-10-13 04:26:24 +00:00
|
|
|
|
|
|
|
# Time Tracking
|
|
|
|
if (UserInGroup(Param("timetrackinggroup")) &&
|
2005-04-07 23:59:59 +00:00
|
|
|
defined $cgi->param('estimated_time')) {
|
2002-10-13 04:26:24 +00:00
|
|
|
|
2005-04-07 23:59:59 +00:00
|
|
|
my $est_time = $cgi->param('estimated_time');
|
2004-07-22 17:48:37 +00:00
|
|
|
Bugzilla::Bug::ValidateTime($est_time, 'estimated_time');
|
2005-01-16 13:36:05 +00:00
|
|
|
$sql .= SqlQuote($est_time) . "," . SqlQuote($est_time) . ",";
|
2002-10-13 04:26:24 +00:00
|
|
|
} else {
|
2005-01-16 13:36:05 +00:00
|
|
|
$sql .= "0, 0, ";
|
2002-10-13 04:26:24 +00:00
|
|
|
}
|
2005-01-16 13:36:05 +00:00
|
|
|
|
2005-04-07 23:59:59 +00:00
|
|
|
if ((UserInGroup(Param("timetrackinggroup"))) && ($cgi->param('deadline'))) {
|
|
|
|
Bugzilla::Util::ValidateDate($cgi->param('deadline'), 'YYYY-MM-DD');
|
|
|
|
$sql .= SqlQuote($cgi->param('deadline'));
|
2005-01-16 13:36:05 +00:00
|
|
|
} else {
|
|
|
|
$sql .= "NULL";
|
|
|
|
}
|
|
|
|
|
2002-10-13 04:26:24 +00:00
|
|
|
$sql .= ")";
|
2000-03-07 22:22:55 +00:00
|
|
|
|
2002-04-05 07:09:28 +00:00
|
|
|
# Groups
|
2002-09-22 17:15:13 +00:00
|
|
|
my @groupstoadd = ();
|
2005-04-07 23:59:59 +00:00
|
|
|
foreach my $b (grep(/^bit-\d*$/, $cgi->param())) {
|
|
|
|
if ($cgi->param($b)) {
|
2000-03-07 22:22:55 +00:00
|
|
|
my $v = substr($b, 4);
|
2005-04-07 23:59:59 +00:00
|
|
|
detaint_natural($v)
|
2005-03-05 00:18:48 +00:00
|
|
|
|| ThrowCodeError("group_id_invalid");
|
2001-06-06 03:16:52 +00:00
|
|
|
if (!GroupIsActive($v)) {
|
|
|
|
# Prevent the user from adding the bug to an inactive group.
|
|
|
|
# Should only happen if there is a bug in Bugzilla or the user
|
|
|
|
# hacked the "enter bug" form since otherwise the UI
|
|
|
|
# for adding the bug to the group won't appear on that form.
|
2002-08-15 06:43:47 +00:00
|
|
|
$vars->{'bit'} = $v;
|
2005-03-05 00:18:48 +00:00
|
|
|
ThrowCodeError("inactive_group");
|
2001-06-06 03:16:52 +00:00
|
|
|
}
|
2002-09-22 17:15:13 +00:00
|
|
|
SendSQL("SELECT user_id FROM user_group_map
|
|
|
|
WHERE user_id = $::userid
|
|
|
|
AND group_id = $v
|
|
|
|
AND isbless = 0");
|
2002-11-24 19:56:34 +00:00
|
|
|
my ($permit) = FetchSQLData();
|
|
|
|
if (!$permit) {
|
|
|
|
SendSQL("SELECT othercontrol FROM group_control_map
|
|
|
|
WHERE group_id = $v AND product_id = $product_id");
|
|
|
|
my ($othercontrol) = FetchSQLData();
|
|
|
|
$permit = (($othercontrol == CONTROLMAPSHOWN)
|
|
|
|
|| ($othercontrol == CONTROLMAPDEFAULT));
|
|
|
|
}
|
|
|
|
if ($permit) {
|
2002-09-22 17:15:13 +00:00
|
|
|
push(@groupstoadd, $v)
|
|
|
|
}
|
2000-03-07 22:22:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-24 19:56:34 +00:00
|
|
|
SendSQL("SELECT DISTINCT groups.id, groups.name, " .
|
2005-03-15 07:59:18 +00:00
|
|
|
"membercontrol, othercontrol, description " .
|
2002-11-24 19:56:34 +00:00
|
|
|
"FROM groups LEFT JOIN group_control_map " .
|
|
|
|
"ON group_id = id AND product_id = $product_id " .
|
|
|
|
" WHERE isbuggroup != 0 AND isactive != 0 ORDER BY description");
|
|
|
|
while (MoreSQLData()) {
|
|
|
|
my ($id, $groupname, $membercontrol, $othercontrol ) = FetchSQLData();
|
|
|
|
$membercontrol ||= 0;
|
|
|
|
$othercontrol ||= 0;
|
|
|
|
# Add groups required
|
|
|
|
if (($membercontrol == CONTROLMAPMANDATORY)
|
|
|
|
|| (($othercontrol == CONTROLMAPMANDATORY)
|
|
|
|
&& (!UserInGroup($groupname)))) {
|
|
|
|
# User had no option, bug needs to be in this group.
|
|
|
|
push(@groupstoadd, $id)
|
|
|
|
}
|
|
|
|
}
|
2002-04-23 21:33:46 +00:00
|
|
|
|
2002-04-05 07:09:28 +00:00
|
|
|
# Add the bug report to the DB.
|
|
|
|
SendSQL($sql);
|
2000-03-07 22:22:55 +00:00
|
|
|
|
2002-04-05 07:09:28 +00:00
|
|
|
# Get the bug ID back.
|
2005-02-18 16:01:48 +00:00
|
|
|
my $id = $dbh->bz_last_key('bugs', 'bug_id');
|
1998-08-26 06:14:20 +00:00
|
|
|
|
2002-09-22 17:15:13 +00:00
|
|
|
# Add the group restrictions
|
|
|
|
foreach my $grouptoadd (@groupstoadd) {
|
|
|
|
SendSQL("INSERT INTO bug_group_map (bug_id, group_id)
|
|
|
|
VALUES ($id, $grouptoadd)");
|
|
|
|
}
|
|
|
|
|
2005-01-07 20:25:20 +00:00
|
|
|
# Add the initial comment, allowing for the fact that it may be private
|
|
|
|
my $privacy = 0;
|
|
|
|
if (Param("insidergroup") && UserInGroup(Param("insidergroup"))) {
|
2005-04-07 23:59:59 +00:00
|
|
|
$privacy = $cgi->param('commentprivacy') ? 1 : 0;
|
2005-01-07 20:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SendSQL("INSERT INTO longdescs (bug_id, who, bug_when, thetext, isprivate)
|
2005-05-02 18:52:02 +00:00
|
|
|
VALUES ($id, " . SqlQuote($user->id) . ", $sql_timestamp, " .
|
2005-02-08 16:51:03 +00:00
|
|
|
SqlQuote($comment) . ", $privacy)");
|
1998-08-26 06:14:20 +00:00
|
|
|
|
2002-06-26 12:16:24 +00:00
|
|
|
# Insert the cclist into the database
|
|
|
|
foreach my $ccid (keys(%ccids)) {
|
|
|
|
SendSQL("INSERT INTO cc (bug_id, who) VALUES ($id, $ccid)");
|
1998-08-26 06:14:20 +00:00
|
|
|
}
|
|
|
|
|
2002-10-17 04:31:56 +00:00
|
|
|
my @all_deps;
|
2002-09-13 22:21:19 +00:00
|
|
|
if (UserInGroup("editbugs")) {
|
|
|
|
foreach my $keyword (@keywordlist) {
|
|
|
|
SendSQL("INSERT INTO keywords (bug_id, keywordid)
|
|
|
|
VALUES ($id, $keyword)");
|
|
|
|
}
|
2002-11-19 23:35:53 +00:00
|
|
|
if (@keywordlist) {
|
|
|
|
# Make sure that we have the correct case for the kw
|
|
|
|
SendSQL("SELECT name FROM keyworddefs WHERE id IN ( " .
|
|
|
|
join(',', @keywordlist) . ")");
|
|
|
|
my @list;
|
|
|
|
while (MoreSQLData()) {
|
|
|
|
push (@list, FetchOneColumn());
|
|
|
|
}
|
2005-02-08 16:51:03 +00:00
|
|
|
SendSQL("UPDATE bugs SET delta_ts = $sql_timestamp," .
|
|
|
|
" keywords = " . SqlQuote(join(', ', @list)) .
|
2002-11-19 23:35:53 +00:00
|
|
|
" WHERE bug_id = $id");
|
|
|
|
}
|
2005-04-07 23:59:59 +00:00
|
|
|
if (defined $cgi->param('dependson')) {
|
2002-10-17 04:31:56 +00:00
|
|
|
my $me = "blocked";
|
|
|
|
my $target = "dependson";
|
|
|
|
for (1..2) {
|
|
|
|
foreach my $i (@{$deps{$target}}) {
|
|
|
|
SendSQL("INSERT INTO dependencies ($me, $target) values " .
|
|
|
|
"($id, $i)");
|
|
|
|
push(@all_deps, $i); # list for mailing dependent bugs
|
|
|
|
# Log the activity for the other bug:
|
2003-06-03 09:48:15 +00:00
|
|
|
LogActivityEntry($i, $me, "", $id, $user->id, $timestamp);
|
2002-10-17 04:31:56 +00:00
|
|
|
}
|
|
|
|
my $tmp = $me;
|
|
|
|
$me = $target;
|
|
|
|
$target = $tmp;
|
|
|
|
}
|
|
|
|
}
|
2002-09-13 22:21:19 +00:00
|
|
|
}
|
|
|
|
|
2003-02-09 22:04:25 +00:00
|
|
|
# Email everyone the details of the new bug
|
2005-03-29 21:43:00 +00:00
|
|
|
$vars->{'mailrecipients'} = {'changer' => Bugzilla->user->login};
|
2002-04-14 04:43:55 +00:00
|
|
|
|
2002-05-01 19:00:51 +00:00
|
|
|
$vars->{'id'} = $id;
|
2004-03-18 03:57:05 +00:00
|
|
|
my $bug = new Bugzilla::Bug($id, $::userid);
|
2002-11-28 10:49:58 +00:00
|
|
|
$vars->{'bug'} = $bug;
|
1998-08-26 06:14:20 +00:00
|
|
|
|
2003-09-14 06:05:23 +00:00
|
|
|
ThrowCodeError("bug_error", { bug => $bug }) if $bug->error;
|
2002-11-28 10:49:58 +00:00
|
|
|
|
|
|
|
$vars->{'sentmail'} = [];
|
|
|
|
|
|
|
|
push (@{$vars->{'sentmail'}}, { type => 'created',
|
|
|
|
id => $id,
|
|
|
|
});
|
2002-05-01 19:00:51 +00:00
|
|
|
|
2002-10-17 04:31:56 +00:00
|
|
|
foreach my $i (@all_deps) {
|
2003-02-09 22:04:25 +00:00
|
|
|
push (@{$vars->{'sentmail'}}, { type => 'dep', id => $i, });
|
2002-11-28 10:49:58 +00:00
|
|
|
}
|
2002-10-17 04:31:56 +00:00
|
|
|
|
2002-11-28 10:49:58 +00:00
|
|
|
my @bug_list;
|
2004-07-20 21:12:33 +00:00
|
|
|
if ($cgi->cookie("BUGLIST")) {
|
|
|
|
@bug_list = split(/:/, $cgi->cookie("BUGLIST"));
|
2002-10-17 04:31:56 +00:00
|
|
|
}
|
2002-11-28 10:49:58 +00:00
|
|
|
$vars->{'bug_list'} = \@bug_list;
|
|
|
|
|
2003-05-05 01:15:38 +00:00
|
|
|
print $cgi->header();
|
2002-11-28 10:49:58 +00:00
|
|
|
$template->process("bug/create/created.html.tmpl", $vars)
|
|
|
|
|| ThrowTemplateError($template->error());
|
2002-10-17 04:31:56 +00:00
|
|
|
|
2002-05-01 19:00:51 +00:00
|
|
|
|