enter_bug.cgi 13.7 KB
Newer Older
1
#!/usr/bonsaitools/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 36
use diagnostics;
use strict;
terry%netscape.com's avatar
terry%netscape.com committed
37

38 39
use lib qw(.);

40
require "CGI.pl";
41

42 43 44 45 46
use vars qw(
  $unconfirmedstate
  $template
  $vars
  %COOKIE
47
  @enterable_products
48 49 50 51 52
  @legal_opsys
  @legal_platform
  @legal_priority
  @legal_severity
  %MFORM
53
  %versions
54 55
);

56 57 58 59 60
# We have to connect to the database, even though we don't use it in this code,
# because we might occasionally rebuild the version cache, which causes tokens
# to get deleted from the database, which needs a database connection.
ConnectToDatabase();

61 62 63
# If we're using bug groups to restrict bug entry, we need to know who the 
# user is right from the start. 
confirm_login() if (Param("usebuggroupsentry"));
64 65 66

if (!defined $::FORM{'product'}) {
    GetVersionTable();
67
    quietly_check_login();
68

69 70 71 72 73 74
    my %products;

    foreach my $p (@enterable_products) {
        if (!(Param("usebuggroupsentry") 
              && GroupExists($p) 
              && !UserInGroup($p)))
75
        {
76
            $products{$p} = $::proddesc{$p};
77
        }
78
    }
79
 
80
    my $prodsize = scalar(keys %products);
81 82 83
    if ($prodsize == 0) {
        DisplayError("Either no products have been defined to enter bugs ".
                     "against or you have not been given access to any.\n");
84
        exit;
85 86
    } 
    elsif ($prodsize > 1) {
87
        $vars->{'proddesc'} = \%products;
88 89

        $vars->{'target'} = "enter_bug.cgi";
90
        $vars->{'format'} = $::FORM{'format'};
91 92 93
        $vars->{'title'} = "Enter Bug";
        $vars->{'h2'} = 
                    "First, you must pick a product on which to enter a bug.";
94
        
95
        print "Content-type: text/html\n\n";
96 97
        $template->process("global/choose-product.html.tmpl", $vars)
          || ThrowTemplateError($template->error());
98
        exit;        
99 100
    }

101
    $::FORM{'product'} = (keys %products)[0];
102
    $::MFORM{'product'} = [$::FORM{'product'}];
terry%netscape.com's avatar
terry%netscape.com committed
103

104
}
terry%netscape.com's avatar
terry%netscape.com committed
105

106
my $product = $::FORM{'product'};
terry%netscape.com's avatar
terry%netscape.com committed
107

108 109 110
##############################################################################
# Useful Subroutines
##############################################################################
111 112
sub formvalue {
    my ($name, $default) = (@_);
113
    return $::FORM{$name} || $default || "";
114
}
terry%netscape.com's avatar
terry%netscape.com committed
115

116
sub pickplatform {
117 118
    return formvalue("rep_platform") if formvalue("rep_platform");

119
    if ( Param('usebrowserinfo') ) {
120
        for ($ENV{'HTTP_USER_AGENT'}) {
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
        #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
            /\(.*Windows 9.*\)/ && do {return "PC";};
            /\(.*Win9.*\)/ && do {return "PC";};
            /\(.*Windows 3.*\)/ && do {return "PC";};
            /\(.*Win16.*\)/ && do {return "PC";};
        #Sparc
            /\(.*sparc.*\)/ && do {return "Sun";};
            /\(.*sun4.*\)/ && do {return "Sun";};
        #Alpha
            /\(.*Alpha.*\)/i && do {return "DEC";};
        #MIPS
            /\(.*IRIX.*\)/i && do {return "SGI";};
            /\(.*MIPS.*\)/i && do {return "SGI";};
        #68k
            /\(.*68K.*\)/ && do {return "Macintosh";};
            /\(.*680[x0]0.*\)/ && do {return "Macintosh";};
        #ARM
#            /\(.*ARM.*\) && do {return "ARM";};
        #Stereotypical and broken
            /\(.*Macintosh.*\)/ && do {return "Macintosh";};
            /\(.*Mac OS [89].*\)/ && do {return "Macintosh";};
            /\(Win.*\)/ && do {return "PC";};
            /\(.*Windows NT.*\)/ && do {return "PC";};
            /\(.*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";};
156
        }
terry%netscape.com's avatar
terry%netscape.com committed
157
    }
158 159
    # default
    return "Other";
terry%netscape.com's avatar
terry%netscape.com committed
160 161
}

162 163 164
sub pickos {
    if (formvalue('op_sys') ne "") {
        return formvalue('op_sys');
terry%netscape.com's avatar
terry%netscape.com committed
165
    }
166
    if ( Param('usebrowserinfo') ) {
167
        for ($ENV{'HTTP_USER_AGENT'}) {
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
            /\(.*IRIX.*\)/ && do {return "IRIX";};
            /\(.*OSF.*\)/ && do {return "OSF/1";};
            /\(.*Linux.*\)/ && do {return "Linux";};
            /\(.*SunOS 5.*\)/ && do {return "Solaris";};
            /\(.*SunOS.*\)/ && do {return "SunOS";};
            /\(.*HP-?UX.*\)/ && do {return "HP-UX";};
            /\(.*BSD\/OS.*\)/ && do {return "BSDI";};
            /\(.*FreeBSD.*\)/ && do {return "FreeBSD";};
            /\(.*OpenBSD.*\)/ && do {return "OpenBSD";};
            /\(.*NetBSD.*\)/ && do {return "NetBSD";};
            /\(.*BeOS.*\)/ && do {return "BeOS";};
            /\(.*AIX.*\)/ && do {return "AIX";};
            /\(.*IBM.*\)/ && do {return "OS/2";};
            /\(.*QNX.*\)/ && do {return "Neutrino";};
            /\(.*VMS.*\)/ && do {return "OpenVMS";};
183 184
            /\(.*Windows XP.*\)/ && do {return "Windows XP";};
            /\(.*Windows NT 5\.1.*\)/ && do {return "Windows XP";};
185
            /\(.*Windows 2000.*\)/ && do {return "Windows 2000";};
186 187
            /\(.*Windows NT 5.*\)/ && do {return "Windows 2000";};
            /\(.*Windows.*NT.*\)/ && do {return "Windows NT";};
188 189 190 191 192 193 194 195 196
            /\(.*Win.*98.*4\.9.*\)/ && do {return "Windows ME";};
            /\(.*Win98.*\)/ && do {return "Windows 98";};
            /\(.*Win95.*\)/ && do {return "Windows 95";};
            /\(.*Win16.*\)/ && do {return "Windows 3.1";};
            /\(.*WinNT.*\)/ && do {return "Windows NT";};
            /\(.*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";};
197
            /\(.*Mac OS 8\.5.*\)/ && do {return "Mac System 8.5";};
198
        # Bugzilla doesn't have an entry for 8.1
199 200 201 202
            /\(.*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";};
203
            /\(.*Mac OS X.*\)/ && do {return "MacOS X";};
204
            /\(.*Darwin.*\)/ && do {return "MacOS X";};
205
        # Silly
206 207 208
            /\(.*Mac.*PowerPC.*\)/ && do {return "Mac System 9.x";};
            /\(.*Mac.*PPC.*\)/ && do {return "Mac System 9.x";};
            /\(.*Mac.*68k.*\)/ && do {return "Mac System 8.0";};
209
        # Evil
210
            /Amiga/i && do {return "other";};
211 212 213
            /\(.*PowerPC.*\)/ && do {return "Mac System 9.x";};
            /\(.*PPC.*\)/ && do {return "Mac System 9.x";};
            /\(.*68K.*\)/ && do {return "Mac System 8.0";};
214
        }
terry%netscape.com's avatar
terry%netscape.com committed
215
    }
216 217
    # default
    return "other";
terry%netscape.com's avatar
terry%netscape.com committed
218
}
219 220 221
##############################################################################
# End of subroutines
##############################################################################
terry%netscape.com's avatar
terry%netscape.com committed
222

223
confirm_login() if (!(Param("usebuggroupsentry")));
terry%netscape.com's avatar
terry%netscape.com committed
224

225 226 227 228 229 230 231 232 233 234
# If the usebuggroupsentry parameter is set, we need to check and make sure
# that the user has permission to enter a bug against this product.
if(Param("usebuggroupsentry") 
   && GroupExists($product) 
   && !UserInGroup($product)) 
{
    DisplayError("Sorry; you do not have the permissions necessary to " .
                 "enter a bug against this product.\n");         
    exit;
}
235

236
GetVersionTable();
terry%netscape.com's avatar
terry%netscape.com committed
237

238
if (lsearch(\@::enterable_products, $product) == -1) {
239 240 241 242
    DisplayError("'" . html_quote($product) . "' is not a valid product.");
    exit;
}
    
243
if (0 == @{$::components{$product}}) {
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
    my $error = "Sorry; there needs to be at least one component for this " .
                "product in order to create a new bug. ";
    if (UserInGroup('editcomponents')) {
        $error .= "<a href=\"editcomponents.cgi\">" . 
                  "Create a new component</a>\n";
    }
    else {              
        $error .= "Please contact " . Param("maintainer") . ", detailing " .
                  "the product in which you tried to create a new bug.\n";
    }
        
    DisplayError($error);   
    exit;
} 
elsif (1 == @{$::components{$product}}) {
259 260 261 262
    # Only one component; just pick it.
    $::FORM{'component'} = $::components{$product}->[0];
}

263 264 265 266 267 268 269 270 271 272 273 274 275 276
my @components;
SendSQL("SELECT value, description FROM components " . 
        "WHERE program = " . SqlQuote($product) . " ORDER BY value");
while (MoreSQLData()) {
    my ($name, $description) = FetchSQLData();

    my %component;

    $component{'name'} = $name;
    $component{'description'} = $description;

    push @components, \%component;
}

277
my %default;
terry%netscape.com's avatar
terry%netscape.com committed
278

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

282 283 284 285 286 287 288 289
$vars->{'assigned_to'} = formvalue('assigned_to');
$vars->{'cc'} = formvalue('cc');
$vars->{'reporter'} = $::COOKIE{'Bugzilla_login'};
$vars->{'user_agent'} = $ENV{'HTTP_USER_AGENT'};
$vars->{'product'} = $product;
$vars->{'bug_file_loc'} = formvalue('bug_file_loc', "http://");
$vars->{'short_desc'} = formvalue('short_desc');
$vars->{'comment'} = formvalue('comment');
290

291 292
$vars->{'priority'} = \@legal_priority;
$default{'priority'} = formvalue('priority', Param('defaultpriority'));
293

294 295
$vars->{'bug_severity'} = \@legal_severity;
$default{'bug_severity'} = formvalue('bug_severity', 'normal');
296

297 298 299 300 301 302
$vars->{'rep_platform'} = \@legal_platform;
$default{'rep_platform'} = pickplatform();

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

303 304
# Posting a bug sets a cookie for the current version, if one exists. Else,
# the default version is the last one in the list (hopefully the latest one).
305 306
# Eventually maybe each product should have a "current version" parameter.
$vars->{'version'} = $::versions{$product} || [];
307 308 309 310 311 312
if (exists $::COOKIE{"VERSION-$product"} &&
    lsearch($vars->{'version'}, $::COOKIE{"VERSION-$product"}) != -1) {
    $default{'version'} = $::COOKIE{"VERSION-$product"};
} else {
    $default{'version'} = $vars->{'version'}->[$#{$vars->{'version'}}];
}
313 314 315

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

317
if (UserInGroup("editbugs") || UserInGroup("canconfirm")) {
318
    SendSQL("SELECT votestoconfirm FROM products WHERE product = " . 
319
            SqlQuote($product));
320
    push(@status, $unconfirmedstate) if (FetchOneColumn());
321 322
}

323 324
$vars->{'bug_status'} = \@status; 
$default{'bug_status'} = $status[0];
325

326 327
# Select whether to restrict this bug to the product's bug group or not, 
# if the usebuggroups parameter is set, and if this product has a bug group.
328
if ($::usergroupset ne '0') {
329 330 331 332 333 334 335 336 337 338
    # First we get the bit and description for the group.
    my $group_bit = '0';

    if(Param("usebuggroups") && GroupExists($product)) {
        SendSQL("SELECT bit FROM groups ".
                "WHERE name = " . SqlQuote($product) . " " .
                "AND isbuggroup != 0");
        ($group_bit) = FetchSQLData();
    }

339
    SendSQL("SELECT bit, name, description FROM groups " .
340
            "WHERE bit & $::usergroupset != 0 " .
341 342 343 344
            "AND isbuggroup != 0 AND isactive = 1 ORDER BY description");

    my @groups;

345
    while (MoreSQLData()) {
346
        my ($bit, $prodname, $description) = FetchSQLData();
347
        # Don't want to include product groups other than this product.
348
        next unless($prodname eq $product || 
349
                    !defined($::proddesc{$prodname}));
350 351 352

        my $check;

353
        # If this is the group for this product, make it checked.
354 355 356 357 358 359
        if(formvalue("maketemplate") eq 
                                   "Remember values as bookmarkable template") 
        {
            # If this is a bookmarked template, then we only want to set the
            # bit for those bits set in the template.        
            $check = formvalue("bit-$bit", 0);
360
        }
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
        else {
            # $group_bit will only have a non-zero value if we're using
            # bug groups and have one for this product.
            # If $group_bit is 0, it won't match the current group, so compare 
            # it to the current bit instead of checking for non-zero.
            $check = ($group_bit == $bit);
        }

        my $group = 
        {
            'bit' => $bit , 
            'checked' => $check , 
            'description' => $description 
        };

        push @groups, $group;        
377 378
    }

379
    $vars->{'group'} = \@groups;
380
}
terry%netscape.com's avatar
terry%netscape.com committed
381

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

384
my $format = ValidateOutputFormat($::FORM{'format'}, "create", "bug/create");
385 386 387

print "Content-type: $format->{'contenttype'}\n\n";
$template->process("bug/create/$format->{'template'}", $vars)
388
  || ThrowTemplateError($template->error());