enter_bug.cgi 19.2 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
# Corporation. Portions created by Netscape are Copyright (C) 1998
# Netscape Communications Corporation. All Rights Reserved.
# 
terry%netscape.com's avatar
terry%netscape.com committed
20
# Contributor(s): Terry Weissman <terry@mozilla.org>
21
#                 Dave Miller <justdave@syndicomm.com>
22
#                 Joe Robins <jmrobins@tgix.com>
23
#                 Gervase Markham <gerv@gerv.net>
24
#                 Shane H. W. Travis <travis@sedsystems.ca>
terry%netscape.com's avatar
terry%netscape.com committed
25

26
##############################################################################
27 28 29 30
#
# enter_bug.cgi
# -------------
# Displays bug entry form. Bug fields are specified through popup menus, 
31 32
# drop-down lists, or text fields. Default for these values can be 
# passed in as parameters to the cgi.
33
#
34
##############################################################################
35

36
use strict;
terry%netscape.com's avatar
terry%netscape.com committed
37

38 39
use lib qw(.);

40
use Bugzilla;
41
use Bugzilla::Constants;
42
use Bugzilla::Bug;
43
require "CGI.pl";
44

45 46 47
use vars qw(
  $template
  $vars
48
  @enterable_products
49 50 51 52
  @legal_opsys
  @legal_platform
  @legal_priority
  @legal_severity
53
  @legal_keywords
54
  $userid
55
  %versions
56
  %target_milestone
57
  $proddesc
58
  $classdesc
59 60 61 62
);

# If we're using bug groups to restrict bug entry, we need to know who the 
# user is right from the start. 
63
Bugzilla->login(LOGIN_REQUIRED) if AnyEntryGroups();
64

65 66 67
my $cloned_bug;
my $cloned_bug_id;

68 69
my $cgi = Bugzilla->cgi;

70 71 72
my $product = $cgi->param('product');

if (!defined $product) {
73
    GetVersionTable();
74
    Bugzilla->login();
75

76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
   if ( ! Param('useclassification') ) {
      # just pick the default one
      $::FORM{'classification'}=(keys %::classdesc)[0];
   }

   if (!defined $::FORM{'classification'}) {
       my %classdesc;
       my %classifications;
    
       foreach my $c (GetSelectableClassifications()) {
           $classdesc{$c} = $::classdesc{$c};
           $classifications{$c} = $::classifications{$c};
       }

       my $classification_size = scalar(keys %classdesc);
       if ($classification_size == 0) {
           ThrowUserError("no_products");
       } 
       elsif ($classification_size > 1) {
           $vars->{'classdesc'} = \%classdesc;
           $vars->{'classifications'} = \%classifications;

           $vars->{'target'} = "enter_bug.cgi";
           $vars->{'format'} = $::FORM{'format'};
           
           print "Content-type: text/html\n\n";
           $template->process("global/choose-classification.html.tmpl", $vars)
             || ThrowTemplateError($template->error());
           exit;        
       }
       $::FORM{'classification'} = (keys %classdesc)[0];
       $::MFORM{'classification'} = [$::FORM{'classification'}];
   }
109

110
    my %products;
111
    foreach my $p (@enterable_products) {
112 113 114 115 116
        if (CanEnterProduct($p)) {
            if (IsInClassification($::FORM{'classification'},$p) ||
                $::FORM{'classification'} eq "__all") {
                $products{$p} = $::proddesc{$p};
            }
117
        }
118
    }
119
 
120
    my $prodsize = scalar(keys %products);
121
    if ($prodsize == 0) {
122
        ThrowUserError("no_products");
123 124
    } 
    elsif ($prodsize > 1) {
125 126 127 128 129 130 131 132 133 134
        my %classifications;
        if ( ! Param('useclassification') ) {
            @{$classifications{"all"}} = keys %products;
        }
        elsif ($::FORM{'classification'} eq "__all") {
            %classifications = %::classifications;
        } else {
            $classifications{$::FORM{'classification'}} =
                $::classifications{$::FORM{'classification'}};
        }
135
        $vars->{'proddesc'} = \%products;
136 137
        $vars->{'classifications'} = \%classifications;
        $vars->{'classdesc'} = \%::classdesc;
138 139

        $vars->{'target'} = "enter_bug.cgi";
140
        $vars->{'format'} = $cgi->param('format');
141 142

        $vars->{'cloned_bug_id'} = $cgi->param('cloned_bug_id');
143
        
144
        print $cgi->header();
145 146
        $template->process("global/choose-product.html.tmpl", $vars)
          || ThrowTemplateError($template->error());
147
        exit;        
148 149 150
    } else {
        # Only one product exists
        $product = (keys %products)[0];
151
    }
152
}
terry%netscape.com's avatar
terry%netscape.com committed
153

154 155 156
##############################################################################
# Useful Subroutines
##############################################################################
157 158
sub formvalue {
    my ($name, $default) = (@_);
159
    return $cgi->param($name) || $default || "";
160
}
terry%netscape.com's avatar
terry%netscape.com committed
161

162
sub pickplatform {
163 164
    return formvalue("rep_platform") if formvalue("rep_platform");

165 166 167
    if (Param('defaultplatform')) {
        return Param('defaultplatform');
    } else {
168
        for ($ENV{'HTTP_USER_AGENT'}) {
169 170 171 172 173 174 175
        #PowerPC
            /\(.*PowerPC.*\)/i && do {return "Macintosh";};
            /\(.*PPC.*\)/ && do {return "Macintosh";};
            /\(.*AIX.*\)/ && do {return "Macintosh";};
        #Intel x86
            /\(.*[ix0-9]86.*\)/ && do {return "PC";};
        #Versions of Windows that only run on Intel x86
176 177
            /\(.*Win(?:dows )[39M].*\)/ && do {return "PC";};
            /\(.*Win(?:dows )16.*\)/ && do {return "PC";};
178 179 180 181
        #Sparc
            /\(.*sparc.*\)/ && do {return "Sun";};
            /\(.*sun4.*\)/ && do {return "Sun";};
        #Alpha
182 183 184
            /\(.*AXP.*\)/i && do {return "DEC";};
            /\(.*[ _]Alpha.\D/i && do {return "DEC";};
            /\(.*[ _]Alpha\)/i && do {return "DEC";};
185 186 187 188 189 190
        #MIPS
            /\(.*IRIX.*\)/i && do {return "SGI";};
            /\(.*MIPS.*\)/i && do {return "SGI";};
        #68k
            /\(.*68K.*\)/ && do {return "Macintosh";};
            /\(.*680[x0]0.*\)/ && do {return "Macintosh";};
191 192
        #HP
            /\(.*9000.*\)/ && do {return "HP";};
193 194 195 196 197 198
        #ARM
#            /\(.*ARM.*\) && do {return "ARM";};
        #Stereotypical and broken
            /\(.*Macintosh.*\)/ && do {return "Macintosh";};
            /\(.*Mac OS [89].*\)/ && do {return "Macintosh";};
            /\(Win.*\)/ && do {return "PC";};
199
            /\(.*Win(?:dows[ -])NT.*\)/ && do {return "PC";};
200 201 202 203 204 205
            /\(.*OSF.*\)/ && do {return "DEC";};
            /\(.*HP-?UX.*\)/i && do {return "HP";};
            /\(.*IRIX.*\)/i && do {return "SGI";};
            /\(.*(SunOS|Solaris).*\)/ && do {return "Sun";};
        #Braindead old browsers who didn't follow convention:
            /Amiga/ && do {return "Macintosh";};
206
            /WinMosaic/ && do {return "PC";};
207
        }
208
        return "Other";
terry%netscape.com's avatar
terry%netscape.com committed
209 210 211
    }
}

212 213 214
sub pickos {
    if (formvalue('op_sys') ne "") {
        return formvalue('op_sys');
terry%netscape.com's avatar
terry%netscape.com committed
215
    }
216 217 218
    if (Param('defaultopsys')) {
        return Param('defaultopsys');
    } else {
219
        for ($ENV{'HTTP_USER_AGENT'}) {
220 221 222
            /\(.*IRIX.*\)/ && do {return "IRIX";};
            /\(.*OSF.*\)/ && do {return "OSF/1";};
            /\(.*Linux.*\)/ && do {return "Linux";};
223
            /\(.*Solaris.*\)/ && do {return "Solaris";};
224
            /\(.*SunOS 5.*\)/ && do {return "Solaris";};
225
            /\(.*SunOS.*sun4u.*\)/ && do {return "Solaris";};
226 227
            /\(.*SunOS.*\)/ && do {return "SunOS";};
            /\(.*HP-?UX.*\)/ && do {return "HP-UX";};
228
            /\(.*BSD\/(?:OS|386).*\)/ && do {return "BSDI";};
229 230 231 232 233
            /\(.*FreeBSD.*\)/ && do {return "FreeBSD";};
            /\(.*OpenBSD.*\)/ && do {return "OpenBSD";};
            /\(.*NetBSD.*\)/ && do {return "NetBSD";};
            /\(.*BeOS.*\)/ && do {return "BeOS";};
            /\(.*AIX.*\)/ && do {return "AIX";};
234
            /\(.*OS\/2.*\)/ && do {return "OS/2";};
235 236
            /\(.*QNX.*\)/ && do {return "Neutrino";};
            /\(.*VMS.*\)/ && do {return "OpenVMS";};
237
            /\(.*Windows XP.*\)/ && do {return "Windows XP";};
238
            /\(.*Windows NT 5\.2.*\)/ && do {return "Windows Server 2003";};
239
            /\(.*Windows NT 5\.1.*\)/ && do {return "Windows XP";};
240
            /\(.*Windows 2000.*\)/ && do {return "Windows 2000";};
241
            /\(.*Windows NT 5.*\)/ && do {return "Windows 2000";};
242
            /\(.*Win.*9[8x].*4\.9.*\)/ && do {return "Windows ME";};
243 244 245 246 247 248
            /\(.*Win(?:dows )M[Ee].*\)/ && do {return "Windows ME";};
            /\(.*Win(?:dows )98.*\)/ && do {return "Windows 98";};
            /\(.*Win(?:dows )95.*\)/ && do {return "Windows 95";};
            /\(.*Win(?:dows )16.*\)/ && do {return "Windows 3.1";};
            /\(.*Win(?:dows[ -])NT.*\)/ && do {return "Windows NT";};
            /\(.*Windows.*NT.*\)/ && do {return "Windows NT";};
249 250 251 252
            /\(.*32bit.*\)/ && do {return "Windows 95";};
            /\(.*16bit.*\)/ && do {return "Windows 3.1";};
            /\(.*Mac OS 9.*\)/ && do {return "Mac System 9.x";};
            /\(.*Mac OS 8\.6.*\)/ && do {return "Mac System 8.6";};
253
            /\(.*Mac OS 8\.5.*\)/ && do {return "Mac System 8.5";};
254
        # Bugzilla doesn't have an entry for 8.1
255 256 257 258
            /\(.*Mac OS 8\.1.*\)/ && do {return "Mac System 8.0";};
            /\(.*Mac OS 8\.0.*\)/ && do {return "Mac System 8.0";};
            /\(.*Mac OS 8[^.].*\)/ && do {return "Mac System 8.0";};
            /\(.*Mac OS 8.*\)/ && do {return "Mac System 8.6";};
259 260
            /\(.*Mac OS X.*\)/ && do {return "Mac OS X 10.0";};
            /\(.*Darwin.*\)/ && do {return "Mac OS X 10.0";};
261
        # Silly
262 263 264
            /\(.*Mac.*PowerPC.*\)/ && do {return "Mac System 9.x";};
            /\(.*Mac.*PPC.*\)/ && do {return "Mac System 9.x";};
            /\(.*Mac.*68k.*\)/ && do {return "Mac System 8.0";};
265
        # Evil
266
            /Amiga/i && do {return "other";};
267
            /WinMosaic/ && do {return "Windows 95";};
268 269 270
            /\(.*PowerPC.*\)/ && do {return "Mac System 9.x";};
            /\(.*PPC.*\)/ && do {return "Mac System 9.x";};
            /\(.*68K.*\)/ && do {return "Mac System 8.0";};
271
        }
272
        return "other";
terry%netscape.com's avatar
terry%netscape.com committed
273 274
    }
}
275 276 277
##############################################################################
# End of subroutines
##############################################################################
terry%netscape.com's avatar
terry%netscape.com committed
278

279
Bugzilla->login(LOGIN_REQUIRED) if (!(AnyEntryGroups()));
terry%netscape.com's avatar
terry%netscape.com committed
280

281 282 283 284 285 286 287 288 289 290
# If a user is trying to clone a bug
#   Check that the user has authorization to view the parent bug
#   Create an instance of Bug that holds the info from the parent
$cloned_bug_id = $cgi->param('cloned_bug_id');

if ($cloned_bug_id) {
    ValidateBugID($cloned_bug_id);
    $cloned_bug = new Bugzilla::Bug($cloned_bug_id, $userid);
}

291
# We need to check and make sure
292
# that the user has permission to enter a bug against this product.
293
if(!CanEnterProduct($product))
294
{
295
    ThrowUserError("entry_access_denied", { product => $product});         
296
}
297

298
GetVersionTable();
terry%netscape.com's avatar
terry%netscape.com committed
299

300
if (lsearch(\@::enterable_products, $product) == -1) {
301
    ThrowUserError("invalid_product_name", { product => $product});
302
}
303 304 305

my $product_id = get_product_id($product);

306
if (0 == @{$::components{$product}}) {        
307
    ThrowUserError("no_components", {product => $product});   
308 309
} 
elsif (1 == @{$::components{$product}}) {
310
    # Only one component; just pick it.
311
    $cgi->param('component', $::components{$product}->[0]);
312 313
}

314
my @components;
315 316 317 318 319
SendSQL("SELECT name, description, login_name, realname
             FROM components, profiles
             WHERE product_id = $product_id
             AND initialowner=userid
             ORDER BY name");
320
while (MoreSQLData()) {
321
    my ($name, $description, $login, $realname) = FetchSQLData();
322

323 324 325 326 327 328
    push @components, {
        name => $name,
        description => $description,
        default_login => $login,
        default_realname => $realname,
    };
329 330
}

331
my %default;
terry%netscape.com's avatar
terry%netscape.com committed
332

333 334 335 336 337 338 339 340 341
$vars->{'product'}               = $product;
$vars->{'component_'}            = \@components;

$vars->{'priority'}              = \@legal_priority;
$vars->{'bug_severity'}          = \@legal_severity;
$vars->{'rep_platform'}          = \@legal_platform;
$vars->{'op_sys'}                = \@legal_opsys; 

$vars->{'use_keywords'}          = 1 if (@::legal_keywords);
terry%netscape.com's avatar
terry%netscape.com committed
342

343 344 345
$vars->{'assigned_to'}           = formvalue('assigned_to');
$vars->{'assigned_to_disabled'}  = !UserInGroup('editbugs');
$vars->{'cc_disabled'}           = 0;
346

347
$vars->{'cloned_bug_id'}         = $cloned_bug_id;
348

349
if ($cloned_bug_id) {
350

351 352 353 354 355
    $default{'component_'}    = $cloned_bug->{'component'};
    $default{'priority'}      = $cloned_bug->{'priority'};
    $default{'bug_severity'}  = $cloned_bug->{'bug_severity'};
    $default{'rep_platform'}  = $cloned_bug->{'rep_platform'};
    $default{'op_sys'}        = $cloned_bug->{'op_sys'};
356

357 358 359 360 361
    $vars->{'short_desc'}     = $cloned_bug->{'short_desc'};
    $vars->{'bug_file_loc'}   = $cloned_bug->{'bug_file_loc'};
    $vars->{'keywords'}       = $cloned_bug->{'keywords'};
    $vars->{'dependson'}      = $cloned_bug_id;
    $vars->{'blocked'}        = "";
362

363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
    if (exists $cloned_bug->{'cc'}) {
        $vars->{'cc'}         = join (" ", @{$cloned_bug->{'cc'}});
    } else {
        $vars->{'cc'}         = formvalue('cc');
    }

# We need to ensure that we respect the 'insider' status of
# the first comment, if it has one. Either way, make a note
# that this bug was cloned from another bug.

    $cloned_bug->longdescs();
    my $isprivate             = $cloned_bug->{'longdescs'}->[0]->{'isprivate'};

    $vars->{'comment'}        = "";
    $vars->{'commentprivacy'} = 0;

    if ( !($isprivate) ||
         ( ( Param("insidergroup") ) && 
           ( UserInGroup(Param("insidergroup")) ) ) 
       ) {
        $vars->{'comment'}        = $cloned_bug->{'longdescs'}->[0]->{'body'};
        $vars->{'commentprivacy'} = $isprivate;
    }
386

387 388
# Ensure that the groupset information is set up for later use.
    $cloned_bug->groups();
389

390
} # end of cloned bug entry form
391

392
else {
393

394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
    $default{'component_'}    = formvalue('component');
    $default{'priority'}      = formvalue('priority', Param('defaultpriority'));
    $default{'bug_severity'}  = formvalue('bug_severity', Param('defaultseverity'));
    $default{'rep_platform'}  = pickplatform();
    $default{'op_sys'}        = pickos();

    $vars->{'short_desc'}     = formvalue('short_desc');
    $vars->{'bug_file_loc'}   = formvalue('bug_file_loc', "http://");
    $vars->{'keywords'}       = formvalue('keywords');
    $vars->{'dependson'}      = formvalue('dependson');
    $vars->{'blocked'}        = formvalue('blocked');

    $vars->{'cc'}             = formvalue('cc');

    $vars->{'comment'}        = formvalue('comment');
    $vars->{'commentprivacy'} = formvalue('commentprivacy');

} # end of normal/bookmarked entry form


# IF this is a cloned bug,
# AND the clone's product is the same as the parent's
#   THEN use the version from the parent bug
# ELSE IF a version is supplied in the URL
#   THEN use it
# ELSE IF there is a version in the cookie
#   THEN use it (Posting a bug sets a cookie for the current version.)
# ELSE
#   The default version is the last one in the list (which, it is
#   hoped, will be the most recent one).
#
425 426
# Eventually maybe each product should have a "current version"
# parameter.
427
$vars->{'version'} = $::versions{$product} || [];
428 429 430 431 432

if ( ($cloned_bug_id) &&
     ("$product" eq "$cloned_bug->{'product'}" ) ) {
    $default{'version'} = $cloned_bug->{'version'};
} elsif (formvalue('version')) {
433
    $default{'version'} = formvalue('version');
434 435 436
} elsif (defined $cgi->cookie("VERSION-$product") &&
    lsearch($vars->{'version'}, $cgi->cookie("VERSION-$product")) != -1) {
    $default{'version'} = $cgi->cookie("VERSION-$product");
437 438 439
} else {
    $default{'version'} = $vars->{'version'}->[$#{$vars->{'version'}}];
}
440

441 442 443 444 445 446 447 448 449 450 451 452 453
# Get list of milestones.
if ( Param('usetargetmilestone') ) {
    $vars->{'target_milestone'} = $::target_milestone{$product};
    if (formvalue('target_milestone')) {
       $default{'target_milestone'} = formvalue('target_milestone');
    } else {
       SendSQL("SELECT defaultmilestone FROM products WHERE " .
               "name = " . SqlQuote($product));
       $default{'target_milestone'} = FetchOneColumn();
    }
}


454 455
# List of status values for drop-down.
my @status;
456

457 458 459 460 461 462 463 464 465 466 467 468 469
# Construct the list of allowable values.  There are three cases:
# 
#  case                                 values
#  product does not have confirmation   NEW
#  confirmation, user cannot confirm    UNCONFIRMED
#  confirmation, user can confirm       NEW, UNCONFIRMED.

SendSQL("SELECT votestoconfirm FROM products WHERE name = " .
        SqlQuote($product));
if (FetchOneColumn()) {
    if (UserInGroup("editbugs") || UserInGroup("canconfirm")) {
        push(@status, "NEW");
    }
470
    push(@status, 'UNCONFIRMED');
471 472
} else {
    push(@status, "NEW");
473 474
}

475
$vars->{'bug_status'} = \@status; 
476

477 478 479 480 481 482 483 484 485
# Get the default from a template value if it is legitimate.
# Otherwise, set the default to the first item on the list.

if (formvalue('bug_status') && (lsearch(\@status, formvalue('bug_status')) >= 0)) {
    $default{'bug_status'} = formvalue('bug_status');
} else {
    $default{'bug_status'} = $status[0];
}
 
486 487 488 489 490
SendSQL("SELECT DISTINCT groups.id, groups.name, groups.description, " .
        "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");
491

492
my @groups;
493

494
while (MoreSQLData()) {
495 496 497 498 499 500 501 502 503 504
    my ($id, $groupname, $description, $membercontrol, $othercontrol) 
        = FetchSQLData();
    # Only include groups if the entering user will have an option.
    next if ((!$membercontrol) 
               || ($membercontrol == CONTROLMAPNA) 
               || ($membercontrol == CONTROLMAPMANDATORY)
               || (($othercontrol != CONTROLMAPSHOWN) 
                    && ($othercontrol != CONTROLMAPDEFAULT)
                    && (!UserInGroup($groupname)))
             );
505 506
    my $check;

507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
    # If this is a cloned bug, 
    # AND the product for this bug is the same as for the original
    #   THEN set a group's checkbox if the original also had it on
    # ELSE IF this is a bookmarked template
    #   THEN set a group's checkbox if was set in the bookmark
    # ELSE
    #   set a groups's checkbox based on the group control map
    #
    if ( ($cloned_bug_id) &&
         ("$product" eq "$cloned_bug->{'product'}" ) ) {
        foreach my $i (0..(@{$cloned_bug->{'groups'}}-1) ) {
            if ($cloned_bug->{'groups'}->[$i]->{'bit'} == $id) {
                $check = $cloned_bug->{'groups'}->[$i]->{'ison'};
            }
        }
    }
    elsif(formvalue("maketemplate") ne "") {
524 525 526
        $check = formvalue("bit-$id", 0);
    }
    else {
527 528 529 530
        # Checkbox is checked by default if $control is a default state.
        $check = (($membercontrol == CONTROLMAPDEFAULT)
                 || (($othercontrol == CONTROLMAPDEFAULT)
                      && (!UserInGroup($groupname))));
531 532
    }

533 534 535 536 537 538 539 540
    my $group = 
    {
        'bit' => $id , 
        'checked' => $check , 
        'description' => $description 
    };

    push @groups, $group;        
541
}
terry%netscape.com's avatar
terry%netscape.com committed
542

543 544
$vars->{'group'} = \@groups;

545
$vars->{'default'} = \%default;
terry%netscape.com's avatar
terry%netscape.com committed
546

547
my $format = 
548 549
  GetFormat("bug/create/create", scalar $cgi->param('format'), 
            scalar $cgi->param('ctype'));
550

551
print $cgi->header($format->{'ctype'});
552
$template->process($format->{'template'}, $vars)
553
  || ThrowTemplateError($template->error());          
554