enter_bug.cgi 15 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>
terry%netscape.com's avatar
terry%netscape.com committed
24

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

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

37 38
use lib qw(.);

39
use Bugzilla;
40
use Bugzilla::Constants;
41
require "CGI.pl";
42

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

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

63 64
my $cgi = Bugzilla->cgi;

65 66 67
my $product = $cgi->param('product');

if (!defined $product) {
68
    GetVersionTable();
69
    Bugzilla->login();
70

71 72 73 74 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
   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'}];
   }
104

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

        $vars->{'target'} = "enter_bug.cgi";
135
        $vars->{'format'} = $cgi->param('format');
136
        
137
        print $cgi->header();
138 139
        $template->process("global/choose-product.html.tmpl", $vars)
          || ThrowTemplateError($template->error());
140
        exit;        
141 142 143
    } else {
        # Only one product exists
        $product = (keys %products)[0];
144
    }
145
}
terry%netscape.com's avatar
terry%netscape.com committed
146

147 148 149
##############################################################################
# Useful Subroutines
##############################################################################
150 151
sub formvalue {
    my ($name, $default) = (@_);
152
    return $cgi->param($name) || $default || "";
153
}
terry%netscape.com's avatar
terry%netscape.com committed
154

155
sub pickplatform {
156 157
    return formvalue("rep_platform") if formvalue("rep_platform");

158 159 160
    if (Param('defaultplatform')) {
        return Param('defaultplatform');
    } else {
161
        for ($ENV{'HTTP_USER_AGENT'}) {
162 163 164 165 166 167 168
        #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
169 170
            /\(.*Win(?:dows )[39M].*\)/ && do {return "PC";};
            /\(.*Win(?:dows )16.*\)/ && do {return "PC";};
171 172 173 174
        #Sparc
            /\(.*sparc.*\)/ && do {return "Sun";};
            /\(.*sun4.*\)/ && do {return "Sun";};
        #Alpha
175 176 177
            /\(.*AXP.*\)/i && do {return "DEC";};
            /\(.*[ _]Alpha.\D/i && do {return "DEC";};
            /\(.*[ _]Alpha\)/i && do {return "DEC";};
178 179 180 181 182 183
        #MIPS
            /\(.*IRIX.*\)/i && do {return "SGI";};
            /\(.*MIPS.*\)/i && do {return "SGI";};
        #68k
            /\(.*68K.*\)/ && do {return "Macintosh";};
            /\(.*680[x0]0.*\)/ && do {return "Macintosh";};
184 185
        #HP
            /\(.*9000.*\)/ && do {return "HP";};
186 187 188 189 190 191
        #ARM
#            /\(.*ARM.*\) && do {return "ARM";};
        #Stereotypical and broken
            /\(.*Macintosh.*\)/ && do {return "Macintosh";};
            /\(.*Mac OS [89].*\)/ && do {return "Macintosh";};
            /\(Win.*\)/ && do {return "PC";};
192
            /\(.*Win(?:dows[ -])NT.*\)/ && do {return "PC";};
193 194 195 196 197 198
            /\(.*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";};
199
            /WinMosaic/ && do {return "PC";};
200
        }
201
        return "Other";
terry%netscape.com's avatar
terry%netscape.com committed
202 203 204
    }
}

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

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

274
# We need to check and make sure
275
# that the user has permission to enter a bug against this product.
276
if(!CanEnterProduct($product))
277
{
278
    ThrowUserError("entry_access_denied", { product => $product});         
279
}
280

281
GetVersionTable();
terry%netscape.com's avatar
terry%netscape.com committed
282

283
if (lsearch(\@::enterable_products, $product) == -1) {
284
    ThrowUserError("invalid_product_name", { product => $product});
285
}
286 287 288

my $product_id = get_product_id($product);

289
if (0 == @{$::components{$product}}) {        
290
    ThrowUserError("no_components", {product => $product});   
291 292
} 
elsif (1 == @{$::components{$product}}) {
293
    # Only one component; just pick it.
294
    $cgi->param('component', $::components{$product}->[0]);
295 296
}

297
my @components;
298 299 300 301 302
SendSQL("SELECT name, description, login_name, realname
             FROM components, profiles
             WHERE product_id = $product_id
             AND initialowner=userid
             ORDER BY name");
303
while (MoreSQLData()) {
304
    my ($name, $description, $login, $realname) = FetchSQLData();
305

306 307 308 309 310 311
    push @components, {
        name => $name,
        description => $description,
        default_login => $login,
        default_realname => $realname,
    };
312 313
}

314
my %default;
terry%netscape.com's avatar
terry%netscape.com committed
315

316
$vars->{'component_'} = \@components;
317
$default{'component_'} = formvalue('component');
terry%netscape.com's avatar
terry%netscape.com committed
318

319 320 321 322 323 324
$vars->{'assigned_to'} = formvalue('assigned_to');
$vars->{'cc'} = formvalue('cc');
$vars->{'product'} = $product;
$vars->{'bug_file_loc'} = formvalue('bug_file_loc', "http://");
$vars->{'short_desc'} = formvalue('short_desc');
$vars->{'comment'} = formvalue('comment');
325

326 327
$vars->{'priority'} = \@legal_priority;
$default{'priority'} = formvalue('priority', Param('defaultpriority'));
328

329 330
$vars->{'bug_severity'} = \@legal_severity;
$default{'bug_severity'} = formvalue('bug_severity', 'normal');
331

332 333 334 335 336 337
$vars->{'rep_platform'} = \@legal_platform;
$default{'rep_platform'} = pickplatform();

$vars->{'op_sys'} = \@legal_opsys; 
$default{'op_sys'} = pickos();

338 339 340 341
$vars->{'keywords'} = formvalue('keywords');
$vars->{'dependson'} = formvalue('dependson');
$vars->{'blocked'} = formvalue('blocked');

342 343 344 345 346 347
# Use the version specified in the URL, if one is supplied. If not,
# then use the cookie-specified value. (Posting a bug sets a cookie
# for the current version.) If no URL or cookie version, the default
# version is the last one in the list (hopefully the latest one).
# Eventually maybe each product should have a "current version"
# parameter.
348
$vars->{'version'} = $::versions{$product} || [];
349 350
if (formvalue('version')) {
    $default{'version'} = formvalue('version');
351 352 353
} elsif (defined $cgi->cookie("VERSION-$product") &&
    lsearch($vars->{'version'}, $cgi->cookie("VERSION-$product")) != -1) {
    $default{'version'} = $cgi->cookie("VERSION-$product");
354 355 356
} else {
    $default{'version'} = $vars->{'version'}->[$#{$vars->{'version'}}];
}
357 358 359

# There must be at least one status in @status.
my @status = "NEW";
360

361
if (UserInGroup("editbugs") || UserInGroup("canconfirm")) {
362
    SendSQL("SELECT votestoconfirm FROM products WHERE name = " .
363
            SqlQuote($product));
364
    push(@status, $unconfirmedstate) if (FetchOneColumn());
365 366
}

367 368
$vars->{'bug_status'} = \@status; 
$default{'bug_status'} = $status[0];
369

370 371 372 373 374
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");
375

376
my @groups;
377

378
while (MoreSQLData()) {
379 380 381 382 383 384 385 386 387 388
    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)))
             );
389 390 391
    my $check;

    # If this is the group for this product, make it checked.
392
    if(formvalue("maketemplate") ne "") 
393 394 395 396 397 398
    {
        # If this is a bookmarked template, then we only want to set the
        # bit for those bits set in the template.        
        $check = formvalue("bit-$id", 0);
    }
    else {
399 400 401 402
        # Checkbox is checked by default if $control is a default state.
        $check = (($membercontrol == CONTROLMAPDEFAULT)
                 || (($othercontrol == CONTROLMAPDEFAULT)
                      && (!UserInGroup($groupname))));
403 404
    }

405 406 407 408 409 410 411 412
    my $group = 
    {
        'bit' => $id , 
        'checked' => $check , 
        'description' => $description 
    };

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

415 416
$vars->{'group'} = \@groups;

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

419 420
$vars->{'use_keywords'} = 1 if (@::legal_keywords);

421
my $format = 
422 423
  GetFormat("bug/create/create", scalar $cgi->param('format'), 
            scalar $cgi->param('ctype'));
424

425
print $cgi->header($format->{'ctype'});
426
$template->process($format->{'template'}, $vars)
427
  || ThrowTemplateError($template->error());          
428