enter_bug.cgi 12.8 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 47
use vars qw(
  $unconfirmedstate
  $template
  $vars
  %COOKIE
48
  @enterable_products
49 50 51 52
  @legal_opsys
  @legal_platform
  @legal_priority
  @legal_severity
53
  @legal_keywords
54
  $userid
55
  %MFORM
56
  %versions
57
  $proddesc
58 59
);

60 61 62 63 64
# 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();

65 66
# If we're using bug groups to restrict bug entry, we need to know who the 
# user is right from the start. 
67
confirm_login() if AnyEntryGroups();
68

69 70
my $cgi = Bugzilla->cgi;

71 72
if (!defined $::FORM{'product'}) {
    GetVersionTable();
73
    quietly_check_login();
74

75 76 77
    my %products;

    foreach my $p (@enterable_products) {
78
        if (CanEnterProduct($p))
79
        {
80
            $products{$p} = $::proddesc{$p};
81
        }
82
    }
83
 
84
    my $prodsize = scalar(keys %products);
85
    if ($prodsize == 0) {
86
        ThrowUserError("no_products");
87 88
    } 
    elsif ($prodsize > 1) {
89
        $vars->{'proddesc'} = \%products;
90 91

        $vars->{'target'} = "enter_bug.cgi";
92
        $vars->{'format'} = $::FORM{'format'};
93
        
94
        print $cgi->header();
95 96
        $template->process("global/choose-product.html.tmpl", $vars)
          || ThrowTemplateError($template->error());
97
        exit;        
98 99
    }

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

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

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

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

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

118
    if ( Param('usebrowserinfo') ) {
119
        for ($ENV{'HTTP_USER_AGENT'}) {
120 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
        #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";};
155
        }
terry%netscape.com's avatar
terry%netscape.com committed
156
    }
157 158
    # default
    return "Other";
terry%netscape.com's avatar
terry%netscape.com committed
159 160
}

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

222
confirm_login() if (!(AnyEntryGroups()));
terry%netscape.com's avatar
terry%netscape.com committed
223

224
# We need to check and make sure
225
# that the user has permission to enter a bug against this product.
226
if(!CanEnterProduct($product))
227
{
228
    ThrowUserError("entry_access_denied", { product => $product});         
229
}
230

231
GetVersionTable();
terry%netscape.com's avatar
terry%netscape.com committed
232

233
if (lsearch(\@::enterable_products, $product) == -1) {
234
    ThrowUserError("invalid_product_name", { product => $product});
235
}
236 237 238

my $product_id = get_product_id($product);

239 240
if (0 == @{$::components{$product}}) {        
    ThrowUserError("no_components");   
241 242
} 
elsif (1 == @{$::components{$product}}) {
243 244 245 246
    # Only one component; just pick it.
    $::FORM{'component'} = $::components{$product}->[0];
}

247
my @components;
248 249 250 251 252
SendSQL("SELECT name, description, login_name, realname
             FROM components, profiles
             WHERE product_id = $product_id
             AND initialowner=userid
             ORDER BY name");
253
while (MoreSQLData()) {
254 255 256 257 258 259 260
    my ($name, $description, $login, $realname) = FetchSQLData();
    push @components, {
        name => $name,
        description => $description,
        default_login => $login,
        default_realname => $realname,
    };
261 262
}

263
my %default;
terry%netscape.com's avatar
terry%netscape.com committed
264

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

268 269 270 271 272 273 274
$vars->{'assigned_to'} = formvalue('assigned_to');
$vars->{'cc'} = formvalue('cc');
$vars->{'reporter'} = $::COOKIE{'Bugzilla_login'};
$vars->{'product'} = $product;
$vars->{'bug_file_loc'} = formvalue('bug_file_loc', "http://");
$vars->{'short_desc'} = formvalue('short_desc');
$vars->{'comment'} = formvalue('comment');
275

276 277
$vars->{'priority'} = \@legal_priority;
$default{'priority'} = formvalue('priority', Param('defaultpriority'));
278

279 280
$vars->{'bug_severity'} = \@legal_severity;
$default{'bug_severity'} = formvalue('bug_severity', 'normal');
281

282 283 284 285 286 287
$vars->{'rep_platform'} = \@legal_platform;
$default{'rep_platform'} = pickplatform();

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

288 289 290 291 292 293
# 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.
294
$vars->{'version'} = $::versions{$product} || [];
295 296 297
if (formvalue('version')) {
    $default{'version'} = formvalue('version');
} elsif (exists $::COOKIE{"VERSION-$product"} &&
298 299 300 301 302
    lsearch($vars->{'version'}, $::COOKIE{"VERSION-$product"}) != -1) {
    $default{'version'} = $::COOKIE{"VERSION-$product"};
} else {
    $default{'version'} = $vars->{'version'}->[$#{$vars->{'version'}}];
}
303 304 305

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

307
if (UserInGroup("editbugs") || UserInGroup("canconfirm")) {
308
    SendSQL("SELECT votestoconfirm FROM products WHERE name = " .
309
            SqlQuote($product));
310
    push(@status, $unconfirmedstate) if (FetchOneColumn());
311 312
}

313 314
$vars->{'bug_status'} = \@status; 
$default{'bug_status'} = $status[0];
315

316 317 318 319 320
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");
321

322
my @groups;
323

324
while (MoreSQLData()) {
325 326 327 328 329 330 331 332 333 334
    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)))
             );
335 336 337
    my $check;

    # If this is the group for this product, make it checked.
338
    if(formvalue("maketemplate") ne "") 
339 340 341 342 343 344
    {
        # 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 {
345 346 347 348
        # Checkbox is checked by default if $control is a default state.
        $check = (($membercontrol == CONTROLMAPDEFAULT)
                 || (($othercontrol == CONTROLMAPDEFAULT)
                      && (!UserInGroup($groupname))));
349 350
    }

351 352 353 354 355 356 357 358
    my $group = 
    {
        'bit' => $id , 
        'checked' => $check , 
        'description' => $description 
    };

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

361 362
$vars->{'group'} = \@groups;

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

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

367 368
my $format = 
  GetFormat("bug/create/create", $::FORM{'format'}, $::FORM{'ctype'});
369

370
print $cgi->header($format->{'ctype'});
371
$template->process($format->{'template'}, $vars)
372
  || ThrowTemplateError($template->error());          
373