enter_bug.cgi 23.6 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
use lib qw(. lib);
39

40
use Bugzilla;
41
use Bugzilla::Constants;
42 43
use Bugzilla::Util;
use Bugzilla::Error;
44
use Bugzilla::Bug;
45
use Bugzilla::User;
46
use Bugzilla::Hook;
47
use Bugzilla::Product;
48
use Bugzilla::Classification;
49
use Bugzilla::Keyword;
50
use Bugzilla::Token;
51
use Bugzilla::Field;
52
use Bugzilla::Status;
53

54
my $user = Bugzilla->login(LOGIN_REQUIRED);
55

56 57 58
my $cloned_bug;
my $cloned_bug_id;

59
my $cgi = Bugzilla->cgi;
60
my $dbh = Bugzilla->dbh;
61 62
my $template = Bugzilla->template;
my $vars = {};
63

64 65 66
# All pages point to the same part of the documentation.
$vars->{'doc_section'} = 'bugreports.html';

67 68 69
my $product_name = trim($cgi->param('product') || '');
# Will contain the product object the bug is created in.
my $product;
70

71
if ($product_name eq '') {
72 73 74 75
    # If the user cannot enter bugs in any product, stop here.
    my @enterable_products = @{$user->get_enterable_products};
    ThrowUserError('no_products') unless scalar(@enterable_products);

76
    my $classification = Bugzilla->params->{'useclassification'} ?
77
        scalar($cgi->param('classification')) : '__all';
78

79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
    # Unless a real classification name is given, we sort products
    # by classification.
    my @classifications;

    unless ($classification && $classification ne '__all') {
        if (Bugzilla->params->{'useclassification'}) {
            my $class;
            # Get all classifications with at least one enterable product.
            foreach my $product (@enterable_products) {
                $class->{$product->classification_id}->{'object'} ||=
                    new Bugzilla::Classification($product->classification_id);
                # Nice way to group products per classification, without querying
                # the DB again.
                push(@{$class->{$product->classification_id}->{'products'}}, $product);
            }
            @classifications = sort {$a->{'object'}->sortkey <=> $b->{'object'}->sortkey
                                     || lc($a->{'object'}->name) cmp lc($b->{'object'}->name)}
                                    (values %$class);
        }
        else {
            @classifications = ({object => undef, products => \@enterable_products});
100
        }
101
    }
102

103
    unless ($classification) {
104 105 106
        # We know there is at least one classification available,
        # else we would have stopped earlier.
        if (scalar(@classifications) > 1) {
107 108
            # We only need classification objects.
            $vars->{'classifications'} = [map {$_->{'object'}} @classifications];
109 110 111 112 113 114 115 116

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

            print $cgi->header();
            $template->process("global/choose-classification.html.tmpl", $vars)
               || ThrowTemplateError($template->error());
117
            exit;
118
        }
119
        # If we come here, then there is only one classification available.
120
        $classification = $classifications[0]->{'object'}->name;
121
    }
122

123 124 125 126 127 128 129
    # Keep only enterable products which are in the specified classification.
    if ($classification ne "__all") {
        my $class = new Bugzilla::Classification({'name' => $classification});
        # If the classification doesn't exist, then there is no product in it.
        if ($class) {
            @enterable_products
              = grep {$_->classification_id == $class->id} @enterable_products;
130
            @classifications = ({object => $class, products => \@enterable_products});
131
        }
132 133
        else {
            @enterable_products = ();
134
        }
135
    }
136

137 138 139 140
    if (scalar(@enterable_products) == 0) {
        ThrowUserError('no_products');
    }
    elsif (scalar(@enterable_products) > 1) {
141
        $vars->{'classifications'} = \@classifications;
142
        $vars->{'target'} = "enter_bug.cgi";
143
        $vars->{'format'} = $cgi->param('format');
144
        $vars->{'cloned_bug_id'} = $cgi->param('cloned_bug_id');
145

146
        print $cgi->header();
147 148
        $template->process("global/choose-product.html.tmpl", $vars)
          || ThrowTemplateError($template->error());
149
        exit;
150
    } else {
151
        # Only one product exists.
152
        $product = $enterable_products[0];
153
    }
154
}
155 156 157 158 159 160 161 162 163
else {
    # Do not use Bugzilla::Product::check_product() here, else the user
    # could know whether the product doesn't exist or is not accessible.
    $product = new Bugzilla::Product({'name' => $product_name});
}

# We need to check and make sure that the user has permission
# to enter a bug against this product.
$user->can_enter_product($product ? $product->name : $product_name, THROW_ERROR);
terry%netscape.com's avatar
terry%netscape.com committed
164

165 166 167
##############################################################################
# Useful Subroutines
##############################################################################
168 169
sub formvalue {
    my ($name, $default) = (@_);
170
    return Bugzilla->cgi->param($name) || $default || "";
171
}
terry%netscape.com's avatar
terry%netscape.com committed
172

173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
# Takes the name of a field and a list of possible values for that 
# field. Returns the first value in the list that is actually a 
# valid value for that field.
# The field should be named after its DB table.
# Returns undef if none of the platforms match.
sub pick_valid_field_value (@) {
    my ($field, @values) = @_;
    my $dbh = Bugzilla->dbh;

    foreach my $value (@values) {
        return $value if $dbh->selectrow_array(
            "SELECT 1 FROM $field WHERE value = ?", undef, $value); 
    }
    return undef;
}

189
sub pickplatform {
190 191
    return formvalue("rep_platform") if formvalue("rep_platform");

192 193
    my @platform;

194 195
    if (Bugzilla->params->{'defaultplatform'}) {
        @platform = Bugzilla->params->{'defaultplatform'};
196
    } else {
197 198 199
        # If @platform is a list, this function will return the first
        # item in the list that is a valid platform choice. If
        # no choice is valid, we return "Other".
200
        for ($ENV{'HTTP_USER_AGENT'}) {
201
        #PowerPC
202 203 204
            /\(.*PowerPC.*\)/i && do {@platform = "Macintosh"; last;};
            /\(.*PPC.*\)/ && do {@platform = "Macintosh"; last;};
            /\(.*AIX.*\)/ && do {@platform = "Macintosh"; last;};
205
        #Intel x86
206
            /\(.*Intel.*\)/ && do {@platform = "PC"; last;};
207
            /\(.*[ix0-9]86.*\)/ && do {@platform = "PC"; last;};
208
        #Versions of Windows that only run on Intel x86
209 210
            /\(.*Win(?:dows |)[39M].*\)/ && do {@platform = "PC"; last};
            /\(.*Win(?:dows |)16.*\)/ && do {@platform = "PC"; last;};
211
        #Sparc
212 213
            /\(.*sparc.*\)/ && do {@platform = "Sun"; last;};
            /\(.*sun4.*\)/ && do {@platform = "Sun"; last;};
214
        #Alpha
215 216 217
            /\(.*AXP.*\)/i && do {@platform = "DEC"; last;};
            /\(.*[ _]Alpha.\D/i && do {@platform = "DEC"; last;};
            /\(.*[ _]Alpha\)/i && do {@platform = "DEC"; last;};
218
        #MIPS
219 220
            /\(.*IRIX.*\)/i && do {@platform = "SGI"; last;};
            /\(.*MIPS.*\)/i && do {@platform = "SGI"; last;};
221
        #68k
222 223
            /\(.*68K.*\)/ && do {@platform = "Macintosh"; last;};
            /\(.*680[x0]0.*\)/ && do {@platform = "Macintosh"; last;};
224
        #HP
225
            /\(.*9000.*\)/ && do {@platform = "HP"; last;};
226
        #ARM
227
#            /\(.*ARM.*\) && do {$platform = "ARM";};
228
        #Stereotypical and broken
229 230 231 232 233 234 235 236
            /\(.*Macintosh.*\)/ && do {@platform = "Macintosh"; last;};
            /\(.*Mac OS [89].*\)/ && do {@platform = "Macintosh"; last;};
            /\(Win.*\)/ && do {@platform = "PC"; last;};
            /\(.*Win(?:dows[ -])NT.*\)/ && do {@platform = "PC"; last;};
            /\(.*OSF.*\)/ && do {@platform = "DEC"; last;};
            /\(.*HP-?UX.*\)/i && do {@platform = "HP"; last;};
            /\(.*IRIX.*\)/i && do {@platform = "SGI"; last;};
            /\(.*(SunOS|Solaris).*\)/ && do {@platform = "Sun"; last;};
237
        #Braindead old browsers who didn't follow convention:
238 239
            /Amiga/ && do {@platform = "Macintosh"; last;};
            /WinMosaic/ && do {@platform = "PC"; last;};
240
        }
terry%netscape.com's avatar
terry%netscape.com committed
241
    }
242 243

    return pick_valid_field_value('rep_platform', @platform) || "Other";
terry%netscape.com's avatar
terry%netscape.com committed
244 245
}

246 247 248
sub pickos {
    if (formvalue('op_sys') ne "") {
        return formvalue('op_sys');
terry%netscape.com's avatar
terry%netscape.com committed
249
    }
250

251
    my @os = ();
252

253 254
    if (Bugzilla->params->{'defaultopsys'}) {
        @os = Bugzilla->params->{'defaultopsys'};
255
    } else {
256 257 258
        # This function will return the first
        # item in @os that is a valid platform choice. If
        # no choice is valid, we return "Other".
259
        for ($ENV{'HTTP_USER_AGENT'}) {
260 261 262 263
            /\(.*IRIX.*\)/ && do {push @os, "IRIX"; };
            /\(.*OSF.*\)/ && do {push @os, "OSF/1";};
            /\(.*Linux.*\)/ && do {push @os, "Linux";};
            /\(.*Solaris.*\)/ && do {push @os, "Solaris";};
264 265 266 267 268 269 270 271 272 273 274 275 276
            /\(.*SunOS.*\)/ && do {
              /\(.*SunOS 5.11.*\)/ && do {push @os, ("OpenSolaris", "Opensolaris", "Solaris 11");};
              /\(.*SunOS 5.10.*\)/ && do {push @os, "Solaris 10";};
              /\(.*SunOS 5.9.*\)/ && do {push @os, "Solaris 9";};
              /\(.*SunOS 5.8.*\)/ && do {push @os, "Solaris 8";};
              /\(.*SunOS 5.7.*\)/ && do {push @os, "Solaris 7";};
              /\(.*SunOS 5.6.*\)/ && do {push @os, "Solaris 6";};
              /\(.*SunOS 5.5.*\)/ && do {push @os, "Solaris 5";};
              /\(.*SunOS 5.*\)/ && do {push @os, "Solaris";};
              /\(.*SunOS.*sun4u.*\)/ && do {push @os, "Solaris";};
              /\(.*SunOS.*i86pc.*\)/ && do {push @os, "Solaris";};
              /\(.*SunOS.*\)/ && do {push @os, "SunOS";};
            };
277
            /\(.*HP-?UX.*\)/ && do {push @os, "HP-UX";};
278 279 280 281 282 283
            /\(.*BSD.*\)/ && do {
              /\(.*BSD\/(?:OS|386).*\)/ && do {push @os, "BSDI";};
              /\(.*FreeBSD.*\)/ && do {push @os, "FreeBSD";};
              /\(.*OpenBSD.*\)/ && do {push @os, "OpenBSD";};
              /\(.*NetBSD.*\)/ && do {push @os, "NetBSD";};
            };
284 285 286 287 288
            /\(.*BeOS.*\)/ && do {push @os, "BeOS";};
            /\(.*AIX.*\)/ && do {push @os, "AIX";};
            /\(.*OS\/2.*\)/ && do {push @os, "OS/2";};
            /\(.*QNX.*\)/ && do {push @os, "Neutrino";};
            /\(.*VMS.*\)/ && do {push @os, "OpenVMS";};
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
            /\(.*Win.*\)/ && do {
              /\(.*Windows XP.*\)/ && do {push @os, "Windows XP";};
              /\(.*Windows NT 6\.0.*\)/ && do {push @os, "Windows Vista";};
              /\(.*Windows NT 5\.2.*\)/ && do {push @os, "Windows Server 2003";};
              /\(.*Windows NT 5\.1.*\)/ && do {push @os, "Windows XP";};
              /\(.*Windows 2000.*\)/ && do {push @os, "Windows 2000";};
              /\(.*Windows NT 5.*\)/ && do {push @os, "Windows 2000";};
              /\(.*Win.*9[8x].*4\.9.*\)/ && do {push @os, "Windows ME";};
              /\(.*Win(?:dows |)M[Ee].*\)/ && do {push @os, "Windows ME";};
              /\(.*Win(?:dows |)98.*\)/ && do {push @os, "Windows 98";};
              /\(.*Win(?:dows |)95.*\)/ && do {push @os, "Windows 95";};
              /\(.*Win(?:dows |)16.*\)/ && do {push @os, "Windows 3.1";};
              /\(.*Win(?:dows[ -]|)NT.*\)/ && do {push @os, "Windows NT";};
              /\(.*Windows.*NT.*\)/ && do {push @os, "Windows NT";};
            };
            /\(.*Mac OS X.*\)/ && do {
              /\(.*Intel.*Mac OS X.*\)/ && do {push @os, "Mac OS X 10.4";};
              /\(.*Mac OS X.*\)/ && do {push @os, ("Mac OS X 10.3", "Mac OS X 10.0", "Mac OS X");};
            };
308 309
            /\(.*32bit.*\)/ && do {push @os, "Windows 95";};
            /\(.*16bit.*\)/ && do {push @os, "Windows 3.1";};
310 311 312 313 314 315 316 317 318 319
            /\(.*Mac OS \d.*\)/ && do {
              /\(.*Mac OS 9.*\)/ && do {push @os, ("Mac System 9.x", "Mac System 9.0");};
              /\(.*Mac OS 8\.6.*\)/ && do {push @os, ("Mac System 8.6", "Mac System 8.5");};
              /\(.*Mac OS 8\.5.*\)/ && do {push @os, "Mac System 8.5";};
              /\(.*Mac OS 8\.1.*\)/ && do {push @os, ("Mac System 8.1", "Mac System 8.0");};
              /\(.*Mac OS 8\.0.*\)/ && do {push @os, "Mac System 8.0";};
              /\(.*Mac OS 8[^.].*\)/ && do {push @os, "Mac System 8.0";};
              /\(.*Mac OS 8.*\)/ && do {push @os, "Mac System 8.6";};
            };
            /\(.*Darwin.*\)/ && do {push @os, ("Mac OS X 10.0", "Mac OS X");};
320
        # Silly
321 322 323 324 325
            /\(.*Mac.*\)/ && do {
              /\(.*Mac.*PowerPC.*\)/ && do {push @os, "Mac System 9.x";};
              /\(.*Mac.*PPC.*\)/ && do {push @os, "Mac System 9.x";};
              /\(.*Mac.*68k.*\)/ && do {push @os, "Mac System 8.0";};
            };
326
        # Evil
327 328 329 330 331
            /Amiga/i && do {push @os, "Other";};
            /WinMosaic/ && do {push @os, "Windows 95";};
            /\(.*PowerPC.*\)/ && do {push @os, "Mac System 9.x";};
            /\(.*PPC.*\)/ && do {push @os, "Mac System 9.x";};
            /\(.*68K.*\)/ && do {push @os, "Mac System 8.0";};
332
        }
terry%netscape.com's avatar
terry%netscape.com committed
333
    }
334 335 336 337 338

    push(@os, "Windows") if grep(/^Windows /, @os);
    push(@os, "Mac OS") if grep(/^Mac /, @os);

    return pick_valid_field_value('op_sys', @os) || "Other";
terry%netscape.com's avatar
terry%netscape.com committed
339
}
340 341 342
##############################################################################
# End of subroutines
##############################################################################
terry%netscape.com's avatar
terry%netscape.com committed
343

344 345 346
my $has_editbugs = $user->in_group('editbugs', $product->id);
my $has_canconfirm = $user->in_group('canconfirm', $product->id);

347 348 349 350 351 352
# 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) {
353 354
    $cloned_bug = Bugzilla::Bug->check($cloned_bug_id);
    $cloned_bug_id = $cloned_bug->id;
355 356
}

357
if (scalar(@{$product->components}) == 1) {
358
    # Only one component; just pick it.
359
    $cgi->param('component', $product->components->[0]->name);
360 361
}

362
my %default;
terry%netscape.com's avatar
terry%netscape.com committed
363

364 365
$vars->{'product'}               = $product;

366 367 368 369
$vars->{'priority'}              = get_legal_field_values('priority');
$vars->{'bug_severity'}          = get_legal_field_values('bug_severity');
$vars->{'rep_platform'}          = get_legal_field_values('rep_platform');
$vars->{'op_sys'}                = get_legal_field_values('op_sys');
370

371
$vars->{'valid_keywords'}        = [map($_->name, Bugzilla::Keyword->get_all)];
372
$vars->{'use_keywords'}          = 1 if Bugzilla::Keyword::keyword_count();
terry%netscape.com's avatar
terry%netscape.com committed
373

374
$vars->{'assigned_to'}           = formvalue('assigned_to');
375
$vars->{'assigned_to_disabled'}  = !$has_editbugs;
376
$vars->{'cc_disabled'}           = 0;
377

378
$vars->{'qa_contact'}           = formvalue('qa_contact');
379
$vars->{'qa_contact_disabled'}  = !$has_editbugs;
380

381
$vars->{'cloned_bug_id'}         = $cloned_bug_id;
382

383
$vars->{'token'}             = issue_session_token('createbug:');
384

385

386
my @enter_bug_fields = grep { $_->enter_bug } Bugzilla->active_custom_fields;
387 388 389 390
foreach my $field (@enter_bug_fields) {
    $vars->{$field->name} = formvalue($field->name);
}

391
if ($cloned_bug_id) {
392

393
    $default{'component_'}    = $cloned_bug->component;
394 395 396 397
    $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'};
398

399 400
    $vars->{'short_desc'}     = $cloned_bug->{'short_desc'};
    $vars->{'bug_file_loc'}   = $cloned_bug->{'bug_file_loc'};
401
    $vars->{'keywords'}       = $cloned_bug->keywords;
402 403
    $vars->{'dependson'}      = $cloned_bug_id;
    $vars->{'blocked'}        = "";
404
    $vars->{'deadline'}       = $cloned_bug->{'deadline'};
405

406 407
    if (defined $cloned_bug->cc) {
        $vars->{'cc'}         = join (" ", @{$cloned_bug->cc});
408 409 410 411
    } else {
        $vars->{'cc'}         = formvalue('cc');
    }

412 413 414 415
    foreach my $field (@enter_bug_fields) {
        $vars->{$field->name} = $cloned_bug->{$field->name};
    }

416 417 418 419 420 421 422 423 424 425 426
# 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) ||
427
         ( ( Bugzilla->params->{"insidergroup"} ) && 
428
           ( Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"}) ) ) 
429 430 431 432
       ) {
        $vars->{'comment'}        = $cloned_bug->{'longdescs'}->[0]->{'body'};
        $vars->{'commentprivacy'} = $isprivate;
    }
433

434 435
# Ensure that the groupset information is set up for later use.
    $cloned_bug->groups();
436

437
} # end of cloned bug entry form
438

439
else {
440

441
    $default{'component_'}    = formvalue('component');
442 443
    $default{'priority'}      = formvalue('priority', Bugzilla->params->{'defaultpriority'});
    $default{'bug_severity'}  = formvalue('bug_severity', Bugzilla->params->{'defaultseverity'});
444 445 446 447 448 449 450 451
    $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');
452
    $vars->{'deadline'}       = formvalue('deadline');
453

454
    $vars->{'cc'}             = join(', ', $cgi->param('cc'));
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472

    $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).
#
473 474
# Eventually maybe each product should have a "current version"
# parameter.
475
$vars->{'version'} = [map($_->name, @{$product->versions})];
476 477

if ( ($cloned_bug_id) &&
478
     ($product->name eq $cloned_bug->product ) ) {
479 480
    $default{'version'} = $cloned_bug->{'version'};
} elsif (formvalue('version')) {
481
    $default{'version'} = formvalue('version');
482 483 484
} elsif (defined $cgi->cookie("VERSION-" . $product->name) &&
    lsearch($vars->{'version'}, $cgi->cookie("VERSION-" . $product->name)) != -1) {
    $default{'version'} = $cgi->cookie("VERSION-" . $product->name);
485 486 487
} else {
    $default{'version'} = $vars->{'version'}->[$#{$vars->{'version'}}];
}
488

489
# Get list of milestones.
490
if ( Bugzilla->params->{'usetargetmilestone'} ) {
491
    $vars->{'target_milestone'} = [map($_->name, @{$product->milestones})];
492 493 494
    if (formvalue('target_milestone')) {
       $default{'target_milestone'} = formvalue('target_milestone');
    } else {
495
       $default{'target_milestone'} = $product->default_milestone;
496 497 498
    }
}

499
# Construct the list of allowable statuses.
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
my $initial_statuses = Bugzilla::Status->can_change_to();
# Exclude closed states from the UI, even if the workflow allows them.
# The back-end code will still accept them, though.
@$initial_statuses = grep { $_->is_open } @$initial_statuses;

my @status = map { $_->name } @$initial_statuses;
# UNCONFIRMED is illegal if votes_to_confirm = 0.
@status = grep {$_ ne 'UNCONFIRMED'} @status unless $product->votes_to_confirm;
scalar(@status) || ThrowUserError('no_initial_bug_status');

# If the user has no privs...
unless ($has_editbugs || $has_canconfirm) {
    # ... use UNCONFIRMED if available, else use the first status of the list.
    my $bug_status = (grep {$_ eq 'UNCONFIRMED'} @status) ? 'UNCONFIRMED' : $status[0];
    @status = ($bug_status);
515 516
}

517
$vars->{'bug_status'} = \@status;
518

519 520 521 522 523 524 525 526 527
# 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];
}
 
528 529 530 531 532 533 534
my $grouplist = $dbh->selectall_arrayref(
                  q{SELECT DISTINCT groups.id, groups.name, groups.description,
                                    membercontrol, othercontrol
                      FROM groups
                 LEFT JOIN group_control_map
                        ON group_id = id AND product_id = ?
                     WHERE isbuggroup != 0 AND isactive != 0
535
                  ORDER BY description}, undef, $product->id);
536

537
my @groups;
538

539 540
foreach my $row (@$grouplist) {
    my ($id, $groupname, $description, $membercontrol, $othercontrol) = @$row;
541 542 543 544 545 546
    # Only include groups if the entering user will have an option.
    next if ((!$membercontrol) 
               || ($membercontrol == CONTROLMAPNA) 
               || ($membercontrol == CONTROLMAPMANDATORY)
               || (($othercontrol != CONTROLMAPSHOWN) 
                    && ($othercontrol != CONTROLMAPDEFAULT)
547
                    && (!Bugzilla->user->in_group($groupname)))
548
             );
549 550
    my $check;

551 552 553 554 555 556 557 558 559
    # 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) &&
560
         ($product->name eq $cloned_bug->product ) ) {
561 562 563 564 565 566 567
        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 "") {
568 569 570
        $check = formvalue("bit-$id", 0);
    }
    else {
571 572 573
        # Checkbox is checked by default if $control is a default state.
        $check = (($membercontrol == CONTROLMAPDEFAULT)
                 || (($othercontrol == CONTROLMAPDEFAULT)
574
                      && (!Bugzilla->user->in_group($groupname))));
575 576
    }

577 578 579 580 581 582 583 584
    my $group = 
    {
        'bit' => $id , 
        'checked' => $check , 
        'description' => $description 
    };

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

587 588
$vars->{'group'} = \@groups;

589
Bugzilla::Hook::process("enter_bug-entrydefaultvars", { vars => $vars });
590

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

593 594 595
my $format = $template->get_format("bug/create/create",
                                   scalar $cgi->param('format'), 
                                   scalar $cgi->param('ctype'));
596

597
print $cgi->header($format->{'ctype'});
598
$template->process($format->{'template'}, $vars)
599
  || ThrowTemplateError($template->error());          
600