post_bug.cgi 15.7 KB
Newer Older
1
#!/usr/bin/perl -wT
2
# -*- Mode: perl; indent-tabs-mode: nil -*-
terry%netscape.com's avatar
terry%netscape.com committed
3
#
4 5 6 7 8 9 10 11 12 13
# 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.
#
terry%netscape.com's avatar
terry%netscape.com committed
14
# The Original Code is the Bugzilla Bug Tracking System.
15
#
terry%netscape.com's avatar
terry%netscape.com committed
16
# The Initial Developer of the Original Code is Netscape Communications
17 18 19 20
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
terry%netscape.com's avatar
terry%netscape.com committed
21
# Contributor(s): Terry Weissman <terry@mozilla.org>
22
#                 Dan Mosedale <dmose@mozilla.org>
23
#                 Joe Robins <jmrobins@tgix.com>
24
#                 Gervase Markham <gerv@gerv.net>
terry%netscape.com's avatar
terry%netscape.com committed
25

26
use strict;
27 28
use lib qw(.);

29
use Bugzilla;
30
use Bugzilla::Constants;
31
require "CGI.pl";
32 33

use Bug;
terry%netscape.com's avatar
terry%netscape.com committed
34

35 36
use Bugzilla::User;

37
# Shut up misguided -w warnings about "used only once". For some reason,
38
# "use vars" chokes on me when I try it here.
39 40 41 42
sub sillyness {
    my $zz;
    $zz = $::buffer;
    $zz = %::COOKIE;
43 44 45 46 47 48 49
    $zz = %::components;
    $zz = %::versions;
    $zz = @::legal_opsys;
    $zz = @::legal_platform;
    $zz = @::legal_priority;
    $zz = @::legal_product;
    $zz = @::legal_severity;
50
    $zz = %::target_milestone;
51
}
52

53 54 55
# Use global template variables.
use vars qw($vars $template);

56
ConnectToDatabase();
57
my $user = confirm_login();
terry%netscape.com's avatar
terry%netscape.com committed
58

59 60
my $cgi = Bugzilla->cgi;

61 62 63 64 65 66
# do a match on the fields if applicable

&Bugzilla::User::match_field ({
    'cc'            => { 'type' => 'multi'  },
    'assigned_to'   => { 'type' => 'single' },
});
67 68 69 70 71 72

# 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;

$vars->{'form'} = \%::FORM;
73

74
my $format = GetFormat("bug/create/comment", $::FORM{'format'}, "txt");
75

76
$template->process($format->{'template'}, $vars, \$comment)
77 78
  || ThrowTemplateError($template->error());

79 80 81 82
# Check that if required a description has been provided
if (Param("commentoncreate") && !trim($::FORM{'comment'})) {
    ThrowUserError("description_required");
}
83
ValidateComment($comment);
84

85
my $product = $::FORM{'product'};
86 87
my $product_id = get_product_id($product);
if (!$product_id) {
88 89
    ThrowUserError("invalid_product_name",
                   { product => $product });
90
}
dmose%mozilla.org's avatar
dmose%mozilla.org committed
91

92 93 94
# Set cookies
my $cookiepath = Param("cookiepath");
if (exists $::FORM{'product'}) {
95 96 97 98
    if (exists $::FORM{'version'}) {
        $cgi->send_cookie(-name => "VERSION-$product",
                          -value => $cgi->param('version'),
                          -expires => "Fri, 01-Jan-2038 00:00:00 GMT");
99 100
    }
}
terry%netscape.com's avatar
terry%netscape.com committed
101

102
if (defined $::FORM{'maketemplate'}) {
103
    $vars->{'url'} = $::buffer;
terry%netscape.com's avatar
terry%netscape.com committed
104
    
105
    print $cgi->header();
106 107
    $template->process("bug/create/make-template.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
108
    exit;
terry%netscape.com's avatar
terry%netscape.com committed
109 110
}

111
umask 0;
terry%netscape.com's avatar
terry%netscape.com committed
112

113
# Some sanity checking
114 115
if (!CanEnterProduct($product)) {
    ThrowUserError("entry_access_denied", {product => $product});
116 117
}

118
my $component_id = get_component_id($product_id, $::FORM{component});
119
$component_id || ThrowUserError("require_component");
terry%netscape.com's avatar
terry%netscape.com committed
120

121
if (!defined $::FORM{'short_desc'} || trim($::FORM{'short_desc'}) eq "") {
122
    ThrowUserError("require_summary");
123 124
}

125 126 127 128 129 130 131 132
# If bug_file_loc is "http://", the default, strip it out and use an empty
# value. 
$::FORM{'bug_file_loc'} = "" if $::FORM{'bug_file_loc'} eq 'http://';
    
my $sql_product = SqlQuote($::FORM{'product'});
my $sql_component = SqlQuote($::FORM{'component'});

# Default assignee is the component owner.
133
if ($::FORM{'assigned_to'} eq "") {
134
    SendSQL("SELECT initialowner FROM components " .
135
            "WHERE id = $component_id");
136
    $::FORM{'assigned_to'} = FetchOneColumn();
137
} else {
138
    $::FORM{'assigned_to'} = DBNameToIdAndCheck(trim($::FORM{'assigned_to'}));
terry%netscape.com's avatar
terry%netscape.com committed
139 140
}

141
my @bug_fields = ("version", "rep_platform",
142
                  "bug_severity", "priority", "op_sys", "assigned_to",
143
                  "bug_status", "bug_file_loc", "short_desc",
144
                  "target_milestone", "status_whiteboard");
145 146

if (Param("useqacontact")) {
147
    SendSQL("SELECT initialqacontact FROM components " .
148
            "WHERE id = $component_id");
149 150 151
    my $qa_contact = FetchOneColumn();
    if (defined $qa_contact && $qa_contact != 0) {
        $::FORM{'qa_contact'} = $qa_contact;
152 153 154 155
        push(@bug_fields, "qa_contact");
    }
}

156 157 158 159 160
if (UserInGroup("canedit") || UserInGroup("canconfirm")) {
    # Default to NEW if the user hasn't selected another status
    $::FORM{'bug_status'} ||= "NEW";
} else {
    # Default to UNCONFIRMED if we are using it, NEW otherwise
161
    $::FORM{'bug_status'} = $::unconfirmedstate;
162
    SendSQL("SELECT votestoconfirm FROM products WHERE id = $product_id");
163 164 165 166 167
    if (!FetchOneColumn()) {
        $::FORM{'bug_status'} = "NEW";
    }
}

168
if (!exists $::FORM{'target_milestone'}) {
169
    SendSQL("SELECT defaultmilestone FROM products WHERE name=$sql_product");
170 171 172
    $::FORM{'target_milestone'} = FetchOneColumn();
}

173
if (!Param('letsubmitterchoosepriority')) {
174
    $::FORM{'priority'} = Param('defaultpriority');
175 176
}

177
GetVersionTable();
178 179 180

# Some more sanity checking
CheckFormField(\%::FORM, 'product',      \@::legal_product);
181 182
CheckFormField(\%::FORM, 'rep_platform', \@::legal_platform);
CheckFormField(\%::FORM, 'bug_severity', \@::legal_severity);
183 184 185 186 187 188
CheckFormField(\%::FORM, 'priority',     \@::legal_priority);
CheckFormField(\%::FORM, 'op_sys',       \@::legal_opsys);
CheckFormField(\%::FORM, 'bug_status',   [$::unconfirmedstate, 'NEW']);
CheckFormField(\%::FORM, 'version',          $::versions{$product});
CheckFormField(\%::FORM, 'component',        $::components{$product});
CheckFormField(\%::FORM, 'target_milestone', $::target_milestone{$product});
189 190 191
CheckFormFieldDefined(\%::FORM, 'assigned_to');
CheckFormFieldDefined(\%::FORM, 'bug_file_loc');
CheckFormFieldDefined(\%::FORM, 'comment');
192

193
my @used_fields;
194 195 196
foreach my $field (@bug_fields) {
    if (exists $::FORM{$field}) {
        push (@used_fields, $field);
197 198
    }
}
199 200 201 202

if (exists $::FORM{'bug_status'} 
    && $::FORM{'bug_status'} ne $::unconfirmedstate) 
{
203 204 205
    push(@used_fields, "everconfirmed");
    $::FORM{'everconfirmed'} = 1;
}
206

207 208 209 210 211
$::FORM{'product_id'} = $product_id;
push(@used_fields, "product_id");
$::FORM{component_id} = $component_id;
push(@used_fields, "component_id");

212 213 214 215
my %ccids;
my @cc;

# Create the ccid hash for inserting into the db
216
# and the list for passing to Bugzilla::BugMail::Send
217 218 219 220 221 222 223 224 225 226 227 228
# use a hash rather than a list to avoid adding users twice
if (defined $::FORM{'cc'}) {
    foreach my $person (split(/[ ,]/, $::FORM{'cc'})) {
        if ($person ne "") {
            my $ccid = DBNameToIdAndCheck($person);
            if ($ccid && !$ccids{$ccid}) {
                $ccids{$ccid} = 1;
                push(@cc, $person);
            }
        }
    }
}
229 230 231 232 233 234 235 236 237 238 239 240
# 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;

if ($::FORM{'keywords'} && UserInGroup("editbugs")) {
    foreach my $keyword (split(/[\s,]+/, $::FORM{'keywords'})) {
        if ($keyword eq '') {
           next;
        }
        my $i = GetKeywordIdFromName($keyword);
        if (!$i) {
241 242
            ThrowUserError("unknown_keyword",
                           { keyword => $keyword });
243 244 245 246 247 248 249
        }
        if (!$keywordseen{$i}) {
            push(@keywordlist, $i);
            $keywordseen{$i} = 1;
        }
    }
}
250

251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
# Check for valid dependency info. 
foreach my $field ("dependson", "blocked") {
    if (UserInGroup("editbugs") && defined($::FORM{$field}) &&
        $::FORM{$field} ne "") {
        my @validvalues;
        foreach my $id (split(/[\s,]+/, $::FORM{$field})) {
            next unless $id;
            ValidateBugID($id, 1);
            push(@validvalues, $id);
        }
        $::FORM{$field} = join(",", @validvalues);
    }
}
# Gather the dependecy list, and make sure there are no circular refs
my %deps;
if (UserInGroup("editbugs") && defined($::FORM{'dependson'})) {
    my $me = "blocked";
    my $target = "dependson";
    my %deptree;
    for (1..2) {
        $deptree{$target} = [];
        my %seen;
        foreach my $i (split('[\s,]+', $::FORM{$target})) {
            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;
            SendSQL("select $target from dependencies where $me = " .
                    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) . " ";
                }
312 313 314 315

                ThrowUserError("dependency_loop_multi",
                               { both => $both },
                               "abort");
316 317 318 319 320 321 322 323
            }
        }
        my $tmp = $me;
        $me = $target;
        $target = $tmp;
    }
}

324 325
# Build up SQL string to add bug.
my $sql = "INSERT INTO bugs " . 
326 327
  "(" . join(",", @used_fields) . ", reporter, creation_ts, " .
  "estimated_time, remaining_time) " .
328
  "VALUES (";
terry%netscape.com's avatar
terry%netscape.com committed
329

330
foreach my $field (@used_fields) {
331
    $sql .= SqlQuote($::FORM{$field}) . ",";
terry%netscape.com's avatar
terry%netscape.com committed
332 333
}

334
$comment =~ s/\r\n?/\n/g;     # Get rid of \r.
335
$comment = trim($comment);
336
# If comment is all whitespace, it'll be null at this point. That's
337 338
# OK except for the fact that it causes e-mail to be suppressed.
$comment = $comment ? $comment : " ";
339

340 341 342 343 344 345 346 347 348 349
$sql .= "$::userid, now(), ";

# Time Tracking
if (UserInGroup(Param("timetrackinggroup")) &&
    defined $::FORM{'estimated_time'}) {

    my $est_time = $::FORM{'estimated_time'};
    if ($est_time =~ /^(?:\d+(?:\.\d*)?|\.\d+)$/) {
        $sql .= SqlQuote($est_time) . "," . SqlQuote($est_time);
    } else {
350 351
        ThrowUserError("need_positive_number",
                       { field => 'estimated_time' });
352 353 354 355 356
    }
} else {
    $sql .= "0, 0";
}
$sql .= ")";
357

358
# Groups
359
my @groupstoadd = ();
360 361 362
foreach my $b (grep(/^bit-\d*$/, keys %::FORM)) {
    if ($::FORM{$b}) {
        my $v = substr($b, 4);
363
        $v =~ /^(\d+)$/
364
          || ThrowCodeError("group_id_invalid", undef, "abort");
365 366 367 368 369
        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.
370
            $vars->{'bit'} = $v;
371
            ThrowCodeError("inactive_group", undef, "abort");
372
        }
373 374 375 376
        SendSQL("SELECT user_id FROM user_group_map 
                 WHERE user_id = $::userid
                 AND group_id = $v
                 AND isbless = 0");
377 378 379 380 381 382 383 384 385
        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) {
386 387
            push(@groupstoadd, $v)
        }
388 389 390
    }
}

391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
SendSQL("SELECT DISTINCT groups.id, groups.name, " .
        "membercontrol, othercontrol " .
        "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)
    }
}
408

409 410
# Add the bug report to the DB.
SendSQL($sql);
411

412 413 414
SendSQL("select now()");
my $timestamp = FetchOneColumn();

415 416 417
# Get the bug ID back.
SendSQL("select LAST_INSERT_ID()");
my $id = FetchOneColumn();
terry%netscape.com's avatar
terry%netscape.com committed
418

419 420 421 422 423 424
# Add the group restrictions
foreach my $grouptoadd (@groupstoadd) {
    SendSQL("INSERT INTO bug_group_map (bug_id, group_id)
             VALUES ($id, $grouptoadd)");
}

425 426 427
# Add the comment
SendSQL("INSERT INTO longdescs (bug_id, who, bug_when, thetext) 
         VALUES ($id, $::userid, now(), " . SqlQuote($comment) . ")");
terry%netscape.com's avatar
terry%netscape.com committed
428

429 430 431
# Insert the cclist into the database
foreach my $ccid (keys(%ccids)) {
    SendSQL("INSERT INTO cc (bug_id, who) VALUES ($id, $ccid)");
terry%netscape.com's avatar
terry%netscape.com committed
432 433
}

434
my @all_deps;
435 436 437 438 439
if (UserInGroup("editbugs")) {
    foreach my $keyword (@keywordlist) {
        SendSQL("INSERT INTO keywords (bug_id, keywordid) 
                 VALUES ($id, $keyword)");
    }
440 441 442 443 444 445 446 447 448 449 450 451
    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());
        }
        SendSQL("UPDATE bugs SET keywords = " .
                SqlQuote(join(', ', @list)) .
                " WHERE bug_id = $id");
    }
452 453 454 455 456 457 458 459 460
    if (defined $::FORM{'dependson'}) {
        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:
461
                LogActivityEntry($i, $me, "", $id, $user->id, $timestamp);
462 463 464 465 466 467
            }
            my $tmp = $me;
            $me = $target;
            $target = $tmp;
        }
    }
468 469
}

470 471 472 473 474
# Email everyone the details of the new bug 
$vars->{'mailrecipients'} = { 'cc' => \@cc,
                              'owner' => DBID_to_name($::FORM{'assigned_to'}),
                              'reporter' => $::COOKIE{'Bugzilla_login'},
                              'changer' => $::COOKIE{'Bugzilla_login'} };
475

476
if (defined $::FORM{'qa_contact'}) {
477
    $vars->{'mailrecipients'}->{'qa'} = DBID_to_name($::FORM{'qa_contact'});
478 479
}

480
$vars->{'id'} = $id;
481 482
my $bug = new Bug($id, $::userid);
$vars->{'bug'} = $bug;
terry%netscape.com's avatar
terry%netscape.com committed
483

484
ThrowCodeError("bug_error", { bug => $bug }) if $bug->error;
485 486 487 488 489 490

$vars->{'sentmail'} = [];

push (@{$vars->{'sentmail'}}, { type => 'created',
                                id => $id,
                              });
491

492
foreach my $i (@all_deps) {
493
    push (@{$vars->{'sentmail'}}, { type => 'dep', id => $i, });
494
}
495

496 497 498
my @bug_list;
if ($::COOKIE{"BUGLIST"}) {
    @bug_list = split(/:/, $::COOKIE{"BUGLIST"});
499
}
500 501
$vars->{'bug_list'} = \@bug_list;

502
print $cgi->header();
503 504
$template->process("bug/create/created.html.tmpl", $vars)
  || ThrowTemplateError($template->error());
505

506