buglist.cgi 48.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 20
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
terry%netscape.com's avatar
terry%netscape.com committed
21
# Contributor(s): Terry Weissman <terry@mozilla.org>
22
#                 Dan Mosedale <dmose@mozilla.org>
23
#                 Stephan Niemz  <st.n@gmx.net>
24
#                 Andreas Franke <afranke@mathweb.org>
25
#                 Myk Melez <myk@mozilla.org>
26
#                 Max Kanat-Alexander <mkanat@bugzilla.org>
terry%netscape.com's avatar
terry%netscape.com committed
27

28 29 30 31 32
################################################################################
# Script Initialization
################################################################################

# Make it harder for us to do dangerous things in Perl.
33
use strict;
terry%netscape.com's avatar
terry%netscape.com committed
34

35 36
use lib qw(.);

37
use Bugzilla;
38 39 40
use Bugzilla::Constants;
use Bugzilla::Error;
use Bugzilla::Util;
41
use Bugzilla::Search;
42
use Bugzilla::Search::Quicksearch;
43
use Bugzilla::Search::Saved;
44
use Bugzilla::User;
45
use Bugzilla::Bug;
46
use Bugzilla::Product;
47
use Bugzilla::Keyword;
48
use Bugzilla::Field;
49

50 51
use Date::Parse;

52
my $cgi = Bugzilla->cgi;
53
my $dbh = Bugzilla->dbh;
54 55
my $template = Bugzilla->template;
my $vars = {};
56
my $buffer = $cgi->query_string();
57

58 59 60 61 62
# We have to check the login here to get the correct footer if an error is
# thrown and to prevent a logged out user to use QuickSearch if 'requirelogin'
# is turned 'on'.
Bugzilla->login();

63
if (length($buffer) == 0) {
64
    print $cgi->header(-refresh=> '10; URL=query.cgi');
65
    ThrowUserError("buglist_parameters_required");
66
}
67

68 69 70 71 72 73 74 75 76
# Determine whether this is a quicksearch query.
my $searchstring = $cgi->param('quicksearch');
if (defined($searchstring)) {
    $buffer = quicksearch($searchstring);
    # Quicksearch may do a redirect, in which case it does not return.
    # If it does return, it has modified $cgi->params so we can use them here
    # as if this had been a normal query from the beginning.
}

77 78 79
################################################################################
# Data and Security Validation
################################################################################
80

81
# Whether or not the user wants to change multiple bugs.
82
my $dotweak = $cgi->param('tweak') ? 1 : 0;
83 84 85

# Log the user in
if ($dotweak) {
86
    Bugzilla->login(LOGIN_REQUIRED);
87
    Bugzilla->user->in_group("editbugs")
88 89 90
      || ThrowUserError("auth_failure", {group  => "editbugs",
                                         action => "modify",
                                         object => "multiple_bugs"});
91 92
}

93
# Hack to support legacy applications that think the RDF ctype is at format=rdf.
94 95 96 97
if (defined $cgi->param('format') && $cgi->param('format') eq "rdf"
    && !defined $cgi->param('ctype')) {
    $cgi->param('ctype', "rdf");
    $cgi->delete('format');
98
}
99

100 101 102 103 104
# Treat requests for ctype=rss as requests for ctype=atom
if (defined $cgi->param('ctype') && $cgi->param('ctype') eq "rss") {
    $cgi->param('ctype', "atom");
}

105 106 107 108 109 110
# The js ctype presents a security risk; a malicious site could use it  
# to gather information about secure bugs. So, we only allow public bugs to be
# retrieved with this format.
#
# Note that if and when this call clears cookies or has other persistent 
# effects, we'll need to do this another way instead.
111
if ((defined $cgi->param('ctype')) && ($cgi->param('ctype') eq "js")) {
112
    Bugzilla->logout_request();
113
}
114

115 116 117 118 119 120 121
# An agent is a program that automatically downloads and extracts data
# on its user's behalf.  If this request comes from an agent, we turn off
# various aspects of bug list functionality so agent requests succeed
# and coexist nicely with regular user requests.  Currently the only agent
# we know about is Firefox's microsummary feature.
my $agent = ($cgi->http('X-Moz') && $cgi->http('X-Moz') =~ /\bmicrosummary\b/);

122 123 124
# Determine the format in which the user would like to receive the output.
# Uses the default format if the user did not specify an output format;
# otherwise validates the user's choice against the list of available formats.
125 126
my $format = $template->get_format("list/list", scalar $cgi->param('format'),
                                   scalar $cgi->param('ctype'));
127

128 129 130 131 132 133 134 135
# Use server push to display a "Please wait..." message for the user while
# executing their query if their browser supports it and they are viewing
# the bug list as HTML and they have not disabled it by adding &serverpush=0
# to the URL.
#
# Server push is a Netscape 3+ hack incompatible with MSIE, Lynx, and others. 
# Even Communicator 4.51 has bugs with it, especially during page reload.
# http://www.browsercaps.org used as source of compatible browsers.
136 137
# Safari (WebKit) does not support it, despite a UA that says otherwise (bug 188712)
# MSIE 5+ supports it on Mac (but not on Windows) (bug 190370)
138 139
#
my $serverpush =
140 141 142
  $format->{'extension'} eq "html"
    && exists $ENV{'HTTP_USER_AGENT'} 
      && $ENV{'HTTP_USER_AGENT'} =~ /Mozilla.[3-9]/ 
143
        && (($ENV{'HTTP_USER_AGENT'} !~ /[Cc]ompatible/) || ($ENV{'HTTP_USER_AGENT'} =~ /MSIE 5.*Mac_PowerPC/))
144
          && $ENV{'HTTP_USER_AGENT'} !~ /WebKit/
145 146 147
            && !$agent
              && !defined($cgi->param('serverpush'))
                || $cgi->param('serverpush');
148

149
my $order = $cgi->param('order') || "";
150
my $order_from_cookie = 0;  # True if $order set using the LASTORDER cookie
151

152 153 154
# The params object to use for the actual query itself
my $params;

155 156
# If the user is retrieving the last bug list they looked at, hack the buffer
# storing the query string so that it looks like a query retrieving those bugs.
157
if (defined $cgi->param('regetlastlist')) {
158
    $cgi->cookie('BUGLIST') || ThrowUserError("missing_cookie");
159

160
    $order = "reuse last sort" unless $order;
161 162
    my $bug_id = $cgi->cookie('BUGLIST');
    $bug_id =~ s/:/,/g;
163 164
    # set up the params for this new query
    $params = new Bugzilla::CGI({
165
                                 bug_id => $bug_id,
166 167
                                 order => $order,
                                });
168 169
}

170 171
if ($buffer =~ /&cmd-/) {
    my $url = "query.cgi?$buffer#chart";
172
    print $cgi->redirect(-location => $url);
173
    # Generate and return the UI (HTML page) from the appropriate template.
174
    $vars->{'message'} = "buglist_adding_field";
175 176
    $vars->{'url'} = $url;
    $template->process("global/message.html.tmpl", $vars)
177
      || ThrowTemplateError($template->error());
178 179
    exit;
}
180

181 182 183 184
# Figure out whether or not the user is doing a fulltext search.  If not,
# we'll remove the relevance column from the lists of columns to display
# and order by, since relevance only exists when doing a fulltext search.
my $fulltext = 0;
185
if ($cgi->param('content')) { $fulltext = 1 }
186
my @charts = map(/^field(\d-\d-\d)$/ ? $1 : (), $cgi->param());
187
foreach my $chart (@charts) {
188
    if ($cgi->param("field$chart") eq 'content' && $cgi->param("value$chart")) {
189 190 191 192 193
        $fulltext = 1;
        last;
    }
}

194 195 196 197
################################################################################
# Utilities
################################################################################

198
local our @weekday= qw( Sun Mon Tue Wed Thu Fri Sat );
199 200 201 202 203 204 205 206 207 208 209 210 211 212
sub DiffDate {
    my ($datestr) = @_;
    my $date = str2time($datestr);
    my $age = time() - $date;
    my ($s,$m,$h,$d,$mo,$y,$wd)= localtime $date;
    if( $age < 18*60*60 ) {
        $date = sprintf "%02d:%02d:%02d", $h,$m,$s;
    } elsif( $age < 6*24*60*60 ) {
        $date = sprintf "%s %02d:%02d", $weekday[$wd],$h,$m;
    } else {
        $date = sprintf "%04d-%02d-%02d", 1900+$y,$mo+1,$d;
    }
    return $date;
}
213

214
sub LookupNamedQuery {
215
    my ($name, $sharer_id) = @_;
216
    my $user = Bugzilla->login(LOGIN_REQUIRED);
217
    my $dbh = Bugzilla->dbh;
218 219 220 221
    my $owner_id;

    # $name and $sharer_id are safe -- we only use them below in SELECT
    # placeholders and then in error messages (which are always HTML-filtered).
222
    $name || ThrowUserError("query_name_missing");
223
    trick_taint($name);
224 225
    if ($sharer_id) {
        $owner_id = $sharer_id;
226 227
        detaint_natural($owner_id);
        $owner_id || ThrowUserError('illegal_user_id', {'userid' => $sharer_id});
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
    }
    else {
        $owner_id = $user->id;
    }

    my ($id, $result) = $dbh->selectrow_array('SELECT id, query
                                                 FROM namedqueries
                                                WHERE userid = ? AND name = ?',
                                              undef, ($owner_id, $name));
    defined($result)
        || ThrowUserError("missing_query", {'queryname' => $name,
                                            'sharer_id' => $sharer_id});

    if ($sharer_id) {
        my $group = $dbh->selectrow_array('SELECT group_id
                                             FROM namedquery_group_map
                                            WHERE namedquery_id = ?',
                                          undef, $id);
        if (!grep {$_ == $group} values(%{$user->groups()})) {
            ThrowUserError("missing_query", {'queryname' => $name,
                                             'sharer_id' => $sharer_id});
        }
    }
251 252 253 254
    
    $result
       || ThrowUserError("buglist_parameters_required", {'queryname' => $name});

255 256 257
    return $result;
}

258 259 260 261 262 263 264 265 266 267 268 269 270
# Inserts a Named Query (a "Saved Search") into the database, or
# updates a Named Query that already exists..
# Takes four arguments:
# userid - The userid who the Named Query will belong to.
# query_name - A string that names the new Named Query, or the name
#              of an old Named Query to update. If this is blank, we
#              will throw a UserError. Leading and trailing whitespace
#              will be stripped from this value before it is inserted
#              into the DB.
# query - The query part of the buglist.cgi URL, unencoded. Must not be 
#         empty, or we will throw a UserError.
# link_in_footer (optional) - 1 if the Named Query should be 
# displayed in the user's footer, 0 otherwise.
271 272
# query_type (optional) - 1 if the Named Query contains a list of
# bug IDs only, 0 otherwise (default).
273 274 275 276 277
#
# All parameters are validated before passing them into the database.
#
# Returns: A boolean true value if the query existed in the database 
# before, and we updated it. A boolean false value otherwise.
278
sub InsertNamedQuery {
279
    my ($query_name, $query, $link_in_footer, $query_type) = @_;
280
    my $dbh = Bugzilla->dbh;
281 282 283 284 285 286 287 288

    $query_name = trim($query_name);
    my ($query_obj) = grep {$_->name eq $query_name} @{Bugzilla->user->queries};

    if ($query_obj) {
        $query_obj->set_url($query);
        $query_obj->set_query_type($query_type);
        $query_obj->update();
289
    } else {
290 291 292 293 294 295
        Bugzilla::Search::Saved->create({
            name           => $query_name,
            query          => $query,
            query_type     => $query_type,
            link_in_footer => $link_in_footer
        });
296 297
    }

298
    return $query_obj ? 1 : 0;
299 300
}

301 302 303 304 305 306
sub LookupSeries {
    my ($series_id) = @_;
    detaint_natural($series_id) || ThrowCodeError("invalid_series_id");
    
    my $dbh = Bugzilla->dbh;
    my $result = $dbh->selectrow_array("SELECT query FROM series " .
307 308
                                       "WHERE series_id = ?"
                                       , undef, ($series_id));
309 310 311 312 313
    $result
           || ThrowCodeError("invalid_series_id", {'series_id' => $series_id});
    return $result;
}

314
sub GetQuip {
315
    my $dbh = Bugzilla->dbh;
316 317
    # COUNT is quick because it is cached for MySQL. We may want to revisit
    # this when we support other databases.
318 319
    my $count = $dbh->selectrow_array("SELECT COUNT(quip)"
                                    . " FROM quips WHERE approved = 1");
320
    my $random = int(rand($count));
321
    my $quip = 
322 323
        $dbh->selectrow_array("SELECT quip FROM quips WHERE approved = 1 " . 
                              $dbh->sql_limit(1, $random));
324
    return $quip;
325
}
326

327
sub GetGroups {
328
    my $dbh = Bugzilla->dbh;
329
    my $user = Bugzilla->user;
330

331 332 333
    # Create an array where each item is a hash. The hash contains 
    # as keys the name of the columns, which point to the value of 
    # the columns for that row.
334
    my $grouplist = $user->groups_as_string;
335
    my $groups = $dbh->selectall_arrayref(
336
                "SELECT  id, name, description, isactive
337
                   FROM  groups
338
                  WHERE  id IN ($grouplist)
339
                    AND  isbuggroup = 1
340
               ORDER BY  description "
341
               , {Slice => {}});
342

343
    return $groups;
344
}
345

346

347 348 349
################################################################################
# Command Execution
################################################################################
350

351 352
$cgi->param('cmdtype', "") if !defined $cgi->param('cmdtype');
$cgi->param('remaction', "") if !defined $cgi->param('remaction');
353

354 355
# Backwards-compatibility - the old interface had cmdtype="runnamed" to run
# a named command, and we can't break this because it's in bookmarks.
356 357 358
if ($cgi->param('cmdtype') eq "runnamed") {  
    $cgi->param('cmdtype', "dorem");
    $cgi->param('remaction', "run");
359 360
}

361 362 363 364 365 366
# Now we're going to be running, so ensure that the params object is set up,
# using ||= so that we only do so if someone hasn't overridden this 
# earlier, for example by setting up a named query search.

# This will be modified, so make a copy.
$params ||= new Bugzilla::CGI($cgi);
367

368 369 370 371 372 373 374 375
# Generate a reasonable filename for the user agent to suggest to the user
# when the user saves the bug list.  Uses the name of the remembered query
# if available.  We have to do this now, even though we return HTTP headers 
# at the end, because the fact that there is a remembered query gets 
# forgotten in the process of retrieving it.
my @time = localtime(time());
my $date = sprintf "%04d-%02d-%02d", 1900+$time[5],$time[4]+1,$time[3];
my $filename = "bugs-$date.$format->{extension}";
376 377
if ($cgi->param('cmdtype') eq "dorem" && $cgi->param('remaction') =~ /^run/) {
    $filename = $cgi->param('namedcmd') . "-$date.$format->{extension}";
378 379 380 381 382
    # Remove white-space from the filename so the user cannot tamper
    # with the HTTP headers.
    $filename =~ s/\s/_/g;
}

383
# Take appropriate action based on user's request.
384 385
if ($cgi->param('cmdtype') eq "dorem") {  
    if ($cgi->param('remaction') eq "run") {
386 387 388 389 390 391 392 393 394
        $buffer = LookupNamedQuery(scalar $cgi->param("namedcmd"),
                                   scalar $cgi->param('sharer_id'));
        # If this is the user's own query, remember information about it
        # so that it can be modified easily.
        if (!$cgi->param('sharer_id') ||
            $cgi->param('sharer_id') == Bugzilla->user->id) {
            $vars->{'searchname'} = $cgi->param('namedcmd');
            $vars->{'searchtype'} = "saved";
        }
395
        $params = new Bugzilla::CGI($buffer);
396
        $order = $params->param('order') || $order;
397

398
    }
399
    elsif ($cgi->param('remaction') eq "runseries") {
400
        $buffer = LookupSeries(scalar $cgi->param("series_id"));
401
        $vars->{'searchname'} = $cgi->param('namedcmd');
402
        $vars->{'searchtype'} = "series";
403
        $params = new Bugzilla::CGI($buffer);
404 405
        $order = $params->param('order') || $order;
    }
406
    elsif ($cgi->param('remaction') eq "forget") {
407
        my $user = Bugzilla->login(LOGIN_REQUIRED);
408 409 410
        # Copy the name into a variable, so that we can trick_taint it for
        # the DB. We know it's safe, because we're using placeholders in 
        # the SQL, and the SQL is only a DELETE.
411
        my $qname = $cgi->param('namedcmd');
412
        trick_taint($qname);
413 414 415 416 417 418 419 420 421 422 423 424

        # Do not forget the saved search if it is being used in a whine
        my $whines_in_use = 
            $dbh->selectcol_arrayref('SELECT DISTINCT whine_events.subject
                                                 FROM whine_events
                                           INNER JOIN whine_queries
                                                   ON whine_queries.eventid
                                                      = whine_events.id
                                                WHERE whine_events.owner_userid
                                                      = ?
                                                  AND whine_queries.query_name
                                                      = ?
425
                                      ', undef, $user->id, $qname);
426 427 428 429 430 431 432 433
        if (scalar(@$whines_in_use)) {
            ThrowUserError('saved_search_used_by_whines', 
                           { subjects    => join(',', @$whines_in_use),
                             search_name => $qname                      }
            );
        }

        # If we are here, then we can safely remove the saved search
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
        my ($query_id) = $dbh->selectrow_array('SELECT id FROM namedqueries
                                                    WHERE userid = ?
                                                      AND name   = ?',
                                                  undef, ($user->id, $qname));
        if (!$query_id) {
            # The user has no query of this name. Play along.
        }
        else {
            $dbh->do('DELETE FROM namedqueries
                            WHERE id = ?',
                     undef, $query_id);
            $dbh->do('DELETE FROM namedqueries_link_in_footer
                            WHERE namedquery_id = ?',
                     undef, $query_id);
            $dbh->do('DELETE FROM namedquery_group_map
                            WHERE namedquery_id = ?',
                     undef, $query_id);
        }
452 453

        # Now reset the cached queries
454
        $user->flush_queries_cache();
455

456
        print $cgi->header();
457
        # Generate and return the UI (HTML page) from the appropriate template.
458
        $vars->{'message'} = "buglist_query_gone";
459
        $vars->{'namedcmd'} = $qname;
460 461
        $vars->{'url'} = "query.cgi";
        $template->process("global/message.html.tmpl", $vars)
462
          || ThrowTemplateError($template->error());
463
        exit;
464 465
    }
}
466 467
elsif (($cgi->param('cmdtype') eq "doit") && defined $cgi->param('remtype')) {
    if ($cgi->param('remtype') eq "asdefault") {
468
        my $user = Bugzilla->login(LOGIN_REQUIRED);
469
        InsertNamedQuery(DEFAULT_QUERY_NAME, $buffer);
470
        $vars->{'message'} = "buglist_new_default_query";
471
    }
472
    elsif ($cgi->param('remtype') eq "asnamed") {
473
        my $user = Bugzilla->login(LOGIN_REQUIRED);
474
        my $query_name = $cgi->param('newqueryname');
475 476
        my $new_query = $cgi->param('newquery');
        my $query_type = QUERY_LIST;
477 478 479 480 481 482 483 484 485 486 487 488 489
        # If list_of_bugs is true, we are adding/removing individual bugs
        # to a saved search. We get the existing list of bug IDs (if any)
        # and add/remove the passed ones.
        if ($cgi->param('list_of_bugs')) {
            # We add or remove bugs based on the action choosen.
            my $action = trim($cgi->param('action') || '');
            $action =~ /^(add|remove)$/
              || ThrowCodeError('unknown_action', {'action' => $action});

            # If we are removing bugs, then we must have an existing
            # saved search selected.
            if ($action eq 'remove') {
                $query_name && ThrowUserError('no_bugs_to_remove');
490 491
            }

492 493 494 495
            my %bug_ids;
            unless ($query_name) {
                # No new query name has been given. We retrieve bug IDs
                # currently set in the selected saved search.
496 497 498 499 500 501
                $query_name = $cgi->param('oldqueryname');
                my $old_query = LookupNamedQuery($query_name);
                foreach my $bug_id (split(/[\s,=]+/, $old_query)) {
                    $bug_ids{$bug_id} = 1 if detaint_natural($bug_id);
                }
            }
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519

            my $keep_bug = ($action eq 'add') ? 1 : 0;
            my $changes = 0;
            foreach my $bug_id (split(/[\s,]+/, $cgi->param('bug_ids'))) {
                next unless $bug_id;
                ValidateBugID($bug_id);
                $bug_ids{$bug_id} = $keep_bug;
                $changes = 1;
            }
            ThrowUserError('no_bug_ids', {'action' => $action}) unless $changes;

            # Only keep bug IDs we want to add/keep. Disregard deleted ones.
            my @bug_ids = grep { $bug_ids{$_} == 1 } keys %bug_ids;
            # If the list is now empty, we could as well delete it completely.
            ThrowUserError('no_bugs_in_list', {'saved_search' => $query_name})
              unless scalar(@bug_ids);

            $new_query = "bug_id=" . join(',', sort {$a <=> $b} @bug_ids);
520 521
            $query_type = LIST_OF_BUGS;
        }
522
        my $tofooter = 1;
523
        my $existed_before = InsertNamedQuery($query_name, $new_query,
524
                                              $tofooter, $query_type);
525
        if ($existed_before) {
526 527
            $vars->{'message'} = "buglist_updated_named_query";
        }
528
        else {
529
            $vars->{'message'} = "buglist_new_named_query";
530
        }
531 532 533

        # Make sure to invalidate any cached query data, so that the footer is
        # correctly displayed
534
        $user->flush_queries_cache();
535

536
        $vars->{'queryname'} = $query_name;
537
        
538
        print $cgi->header();
539 540 541
        $template->process("global/message.html.tmpl", $vars)
          || ThrowTemplateError($template->error());
        exit;
542
    }
terry%netscape.com's avatar
terry%netscape.com committed
543 544
}

545 546 547 548 549
# backward compatibility hack: if the saved query doesn't say which
# form was used to create it, assume it was on the advanced query
# form - see bug 252295
if (!$params->param('query_format')) {
    $params->param('query_format', 'advanced');
550
    $buffer = $params->query_string;
551
}
terry%netscape.com's avatar
terry%netscape.com committed
552

553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
################################################################################
# Column Definition
################################################################################

# Define the columns that can be selected in a query and/or displayed in a bug
# list.  Column records include the following fields:
#
# 1. ID: a unique identifier by which the column is referred in code;
#
# 2. Name: The name of the column in the database (may also be an expression
#          that returns the value of the column);
#
# 3. Title: The title of the column as displayed to users.
# 
# Note: There are a few hacks in the code that deviate from these definitions.
#       In particular, when the list is sorted by the "votes" field the word 
#       "DESC" is added to the end of the field to sort in descending order, 
570
#       and the redundant short_desc column is removed when the client
571
#       requests "all" columns.
572 573
# Note: For column names using aliasing (SQL "<field> AS <alias>"), the column
#       ID needs to be identical to the field ID for list ordering to work.
574

575
local our $columns = {};
576 577 578
sub DefineColumn {
    my ($id, $name, $title) = @_;
    $columns->{$id} = { 'name' => $name , 'title' => $title };
579
}
580

581
# Column:     ID                    Name                           Title
582
DefineColumn("bug_id"            , "bugs.bug_id"                , "ID"               );
583
DefineColumn("alias"             , "bugs.alias"                 , "Alias"            );
584 585
DefineColumn("opendate"          , "bugs.creation_ts"           , "Opened"           );
DefineColumn("changeddate"       , "bugs.delta_ts"              , "Changed"          );
586
DefineColumn("bug_severity"      , "bugs.bug_severity"          , "Severity"         );
587
DefineColumn("priority"          , "bugs.priority"              , "Priority"         );
588 589
DefineColumn("rep_platform"      , "bugs.rep_platform"          , "Hardware"         );
DefineColumn("assigned_to"       , "map_assigned_to.login_name" , "Assignee"         );
590 591
DefineColumn("reporter"          , "map_reporter.login_name"    , "Reporter"         );
DefineColumn("qa_contact"        , "map_qa_contact.login_name"  , "QA Contact"       );
592
if ($format->{'extension'} eq 'html') {
593 594 595
    DefineColumn("assigned_to_realname", "CASE WHEN map_assigned_to.realname = '' THEN map_assigned_to.login_name ELSE map_assigned_to.realname END AS assigned_to_realname", "Assignee"  );
    DefineColumn("reporter_realname"   , "CASE WHEN map_reporter.realname    = '' THEN map_reporter.login_name    ELSE map_reporter.realname    END AS reporter_realname"   , "Reporter"  );
    DefineColumn("qa_contact_realname" , "CASE WHEN map_qa_contact.realname  = '' THEN map_qa_contact.login_name  ELSE map_qa_contact.realname  END AS qa_contact_realname" , "QA Contact");
596
} else {
597 598 599
    DefineColumn("assigned_to_realname", "map_assigned_to.realname AS assigned_to_realname", "Assignee"  );
    DefineColumn("reporter_realname"   , "map_reporter.realname AS reporter_realname"      , "Reporter"  );
    DefineColumn("qa_contact_realname" , "map_qa_contact.realname AS qa_contact_realname"  , "QA Contact");
600
}
601
DefineColumn("bug_status"        , "bugs.bug_status"            , "Status"           );
602
DefineColumn("resolution"        , "bugs.resolution"            , "Resolution"       );
603 604
DefineColumn("short_short_desc"  , "bugs.short_desc"            , "Summary"          );
DefineColumn("short_desc"        , "bugs.short_desc"            , "Summary"          );
605
DefineColumn("status_whiteboard" , "bugs.status_whiteboard"     , "Whiteboard"       );
606 607
DefineColumn("component"         , "map_components.name"        , "Component"        );
DefineColumn("product"           , "map_products.name"          , "Product"          );
608
DefineColumn("classification"    , "map_classifications.name"   , "Classification"   );
609
DefineColumn("version"           , "bugs.version"               , "Version"          );
610
DefineColumn("op_sys"            , "bugs.op_sys"                , "OS"               );
611 612 613
DefineColumn("target_milestone"  , "bugs.target_milestone"      , "Target Milestone" );
DefineColumn("votes"             , "bugs.votes"                 , "Votes"            );
DefineColumn("keywords"          , "bugs.keywords"              , "Keywords"         );
614 615 616
DefineColumn("estimated_time"    , "bugs.estimated_time"        , "Estimated Hours"  );
DefineColumn("remaining_time"    , "bugs.remaining_time"        , "Remaining Hours"  );
DefineColumn("actual_time"       , "(SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id)) AS actual_time", "Actual Hours");
617 618 619 620 621 622 623
DefineColumn("percentage_complete",
    "(CASE WHEN (SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id)) " .
    "            + bugs.remaining_time = 0.0 " .
    "THEN 0.0 " .
    "ELSE 100*((SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id)) " .
    "     /((SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id)) + bugs.remaining_time)) " .
    "END) AS percentage_complete"                               , "% Complete"); 
624
DefineColumn("relevance"         , "relevance"                  , "Relevance"        );
625
DefineColumn("deadline"          , $dbh->sql_date_format('bugs.deadline', '%Y-%m-%d') . " AS deadline", "Deadline");
626

627 628 629 630
foreach my $field (Bugzilla->get_fields({ custom => 1, obsolete => 0})) {
    DefineColumn($field->name, 'bugs.' . $field->name, $field->description);
}

631 632 633 634 635 636 637
################################################################################
# Display Column Determination
################################################################################

# Determine the columns that will be displayed in the bug list via the 
# columnlist CGI parameter, the user's preferences, or the default.
my @displaycolumns = ();
638 639
if (defined $params->param('columnlist')) {
    if ($params->param('columnlist') eq "all") {
640
        # If the value of the CGI parameter is "all", display all columns,
641 642
        # but remove the redundant "short_desc" column.
        @displaycolumns = grep($_ ne 'short_desc', keys(%$columns));
terry%netscape.com's avatar
terry%netscape.com committed
643
    }
644
    else {
645
        @displaycolumns = split(/[ ,]+/, $params->param('columnlist'));
646
    }
terry%netscape.com's avatar
terry%netscape.com committed
647
}
648
elsif (defined $cgi->cookie('COLUMNLIST')) {
649
    # 2002-10-31 Rename column names (see bug 176461)
650
    my $columnlist = $cgi->cookie('COLUMNLIST');
651 652 653 654 655 656 657
    $columnlist =~ s/\bowner\b/assigned_to/;
    $columnlist =~ s/\bowner_realname\b/assigned_to_realname/;
    $columnlist =~ s/\bplatform\b/rep_platform/;
    $columnlist =~ s/\bseverity\b/bug_severity/;
    $columnlist =~ s/\bstatus\b/bug_status/;
    $columnlist =~ s/\bsummaryfull\b/short_desc/;
    $columnlist =~ s/\bsummary\b/short_short_desc/;
658

659
    # Use the columns listed in the user's preferences.
660
    @displaycolumns = split(/ /, $columnlist);
terry%netscape.com's avatar
terry%netscape.com committed
661
}
662 663
else {
    # Use the default list of columns.
664
    @displaycolumns = DEFAULT_COLUMN_LIST;
665 666
}

667 668 669 670
# Weed out columns that don't actually exist to prevent the user 
# from hacking their column list cookie to grab data to which they 
# should not have access.  Detaint the data along the way.
@displaycolumns = grep($columns->{$_} && trick_taint($_), @displaycolumns);
671

672 673
# Remove the "ID" column from the list because bug IDs are always displayed
# and are hard-coded into the display templates.
674
@displaycolumns = grep($_ ne 'bug_id', @displaycolumns);
terry%netscape.com's avatar
terry%netscape.com committed
675

676 677 678
# Add the votes column to the list of columns to be displayed
# in the bug list if the user is searching for bugs with a certain
# number of votes and the votes column is not already on the list.
679 680

# Some versions of perl will taint 'votes' if this is done as a single
681 682 683 684
# statement, because the votes param is tainted at this point
my $votes = $params->param('votes');
$votes ||= "";
if (trim($votes) && !grep($_ eq 'votes', @displaycolumns)) {
685 686
    push(@displaycolumns, 'votes');
}
terry%netscape.com's avatar
terry%netscape.com committed
687

688 689
# Remove the timetracking columns if they are not a part of the group
# (happens if a user had access to time tracking and it was revoked/disabled)
690
if (!Bugzilla->user->in_group(Bugzilla->params->{"timetrackinggroup"})) {
691 692 693 694
   @displaycolumns = grep($_ ne 'estimated_time', @displaycolumns);
   @displaycolumns = grep($_ ne 'remaining_time', @displaycolumns);
   @displaycolumns = grep($_ ne 'actual_time', @displaycolumns);
   @displaycolumns = grep($_ ne 'percentage_complete', @displaycolumns);
695
   @displaycolumns = grep($_ ne 'deadline', @displaycolumns);
696
}
terry%netscape.com's avatar
terry%netscape.com committed
697

698 699 700 701 702 703
# Remove the relevance column if the user is not doing a fulltext search.
if (grep('relevance', @displaycolumns) && !$fulltext) {
    @displaycolumns = grep($_ ne 'relevance', @displaycolumns);
}


704 705 706
################################################################################
# Select Column Determination
################################################################################
terry%netscape.com's avatar
terry%netscape.com committed
707

708
# Generate the list of columns that will be selected in the SQL query.
terry%netscape.com's avatar
terry%netscape.com committed
709

710
# The bug ID is always selected because bug IDs are always displayed.
711 712 713 714
# Severity, priority, resolution and status are required for buglist
# CSS classes.
my @selectcolumns = ("bug_id", "bug_severity", "priority", "bug_status",
                     "resolution");
715

716
# if using classification, we also need to look in product.classification_id
717
if (Bugzilla->params->{"useclassification"}) {
718 719 720
    push (@selectcolumns,"product");
}

721
# remaining and actual_time are required for percentage_complete calculation:
722
if (lsearch(\@displaycolumns, "percentage_complete") >= 0) {
723 724 725 726
    push (@selectcolumns, "remaining_time");
    push (@selectcolumns, "actual_time");
}

727 728
# Display columns are selected because otherwise we could not display them.
push (@selectcolumns, @displaycolumns);
terry%netscape.com's avatar
terry%netscape.com committed
729

730 731 732 733 734
# If the user is editing multiple bugs, we also make sure to select the product
# and status because the values of those fields determine what options the user
# has for modifying the bugs.
if ($dotweak) {
    push(@selectcolumns, "product") if !grep($_ eq 'product', @selectcolumns);
735
    push(@selectcolumns, "bug_status") if !grep($_ eq 'bug_status', @selectcolumns);
736 737
}

738 739 740
if ($format->{'extension'} eq 'ics') {
    push(@selectcolumns, "opendate") if !grep($_ eq 'opendate', @selectcolumns);
}
741

742 743
if ($format->{'extension'} eq 'atom') {
    # The title of the Atom feed will be the same one as for the bug list.
744 745
    $vars->{'title'} = $cgi->param('title');

746 747
    # This is the list of fields that are needed by the Atom filter.
    my @required_atom_columns = (
748 749 750 751 752 753 754 755 756 757
      'short_desc',
      'opendate',
      'changeddate',
      'reporter_realname',
      'priority',
      'bug_severity',
      'assigned_to_realname',
      'bug_status'
    );

758
    foreach my $required (@required_atom_columns) {
759 760 761 762
        push(@selectcolumns, $required) if !grep($_ eq $required,@selectcolumns);
    }
}

763 764 765
################################################################################
# Query Generation
################################################################################
terry%netscape.com's avatar
terry%netscape.com committed
766

767 768
# Convert the list of columns being selected into a list of column names.
my @selectnames = map($columns->{$_}->{'name'}, @selectcolumns);
769

770 771 772 773
# Remove columns with no names, such as percentage_complete
#  (or a removed *_time column due to permissions)
@selectnames = grep($_ ne '', @selectnames);

774 775 776
################################################################################
# Sort Order Determination
################################################################################
777

778
# Add to the query some instructions for sorting the bug list.
779 780 781 782 783 784

# First check if we'll want to reuse the last sorting order; that happens if
# the order is not defined or its value is "reuse last sort"
if (!$order || $order =~ /^reuse/i) {
    if ($cgi->cookie('LASTORDER')) {
        $order = $cgi->cookie('LASTORDER');
785 786 787 788 789
       
        # Cookies from early versions of Specific Search included this text,
        # which is now invalid.
        $order =~ s/ LIMIT 200//;
        
790 791 792 793 794
        $order_from_cookie = 1;
    }
    else {
        $order = '';  # Remove possible "reuse" identifier as unnecessary
    }
795
}
796

797
my $db_order = "";  # Modified version of $order for use with SQL query
798 799 800 801
if ($order) {
    # Convert the value of the "order" form field into a list of columns
    # by which to sort the results.
    ORDER: for ($order) {
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
        /^Bug Number$/ && do {
            $order = "bugs.bug_id";
            last ORDER;
        };
        /^Importance$/ && do {
            $order = "bugs.priority, bugs.bug_severity";
            last ORDER;
        };
        /^Assignee$/ && do {
            $order = "map_assigned_to.login_name, bugs.bug_status, bugs.priority, bugs.bug_id";
            last ORDER;
        };
        /^Last Changed$/ && do {
            $order = "bugs.delta_ts, bugs.bug_status, bugs.priority, map_assigned_to.login_name, bugs.bug_id";
            last ORDER;
        };
        do {
            my @order;
820
            my @columnnames = map($columns->{lc($_)}->{'name'}, keys(%$columns));
821
            # A custom list of columns.  Make sure each column is valid.
822 823 824 825
            foreach my $fragment (split(/,/, $order)) {
                $fragment = trim($fragment);
                # Accept an order fragment matching a column name, with
                # asc|desc optionally following (to specify the direction)
826
                if (grep($fragment =~ /^\Q$_\E(\s+(asc|desc))?$/, @columnnames, keys(%$columns))) {
827 828 829 830
                    next if $fragment =~ /\brelevance\b/ && !$fulltext;
                    push(@order, $fragment);
                }
                else {
831
                    my $vars = { fragment => $fragment };
832
                    if ($order_from_cookie) {
833
                        $cgi->remove_cookie('LASTORDER');
834
                        ThrowCodeError("invalid_column_name_cookie", $vars);
835 836
                    }
                    else {
837
                        ThrowCodeError("invalid_column_name_form", $vars);
838
                    }
839 840
                }
            }
841
            $order = join(",", @order);
842 843 844
            # Now that we have checked that all columns in the order are valid,
            # detaint the order string.
            trick_taint($order);
845
        };
terry%netscape.com's avatar
terry%netscape.com committed
846
    }
847 848 849 850 851
}
else {
    # DEFAULT
    $order = "bugs.bug_status, bugs.priority, map_assigned_to.login_name, bugs.bug_id";
}
852

853
# Make sure ORDER BY columns are included in the field list.
854 855 856 857 858 859
foreach my $fragment (split(/,/, $order)) {
    $fragment = trim($fragment);
    if (!grep($fragment =~ /^\Q$_\E(\s+(asc|desc))?$/, @selectnames)) {
        # Add order columns to selectnames
        # The fragment has already been validated
        $fragment =~ s/\s+(asc|desc)$//;
860 861 862 863

        # While newer fragments contain IDs for aliased columns, older
        # LASTORDER cookies (or bookmarks) may contain full names.
        # Convert them to an ID here.
864
        if ($fragment =~ / AS (\w+)/) {
865
            $fragment = $1;
866
        }
867 868 869 870 871 872 873

        $fragment =~ tr/a-zA-Z\.0-9\-_//cd;

        # If the order fragment is an ID, we need its corresponding name
        # to be in the field list.
        if (exists($columns->{$fragment})) {
            $fragment = $columns->{$fragment}->{'name'};
874
        }
875

876 877 878
        push @selectnames, $fragment;
    }
}
879

880
$db_order = $order;  # Copy $order into $db_order for use with SQL query
881

882 883 884 885 886 887 888 889
# If we are sorting by votes, sort in descending order if no explicit
# sort order was given
$db_order =~ s/bugs.votes\s*(,|$)/bugs.votes desc$1/i;
                             
# the 'actual_time' field is defined as an aggregate function, but 
# for order we just need the column name 'actual_time'
my $aggregate_search = quotemeta($columns->{'actual_time'}->{'name'});
$db_order =~ s/$aggregate_search/actual_time/g;
890

891 892 893
# the 'percentage_complete' field is defined as an aggregate too
$aggregate_search = quotemeta($columns->{'percentage_complete'}->{'name'});
$db_order =~ s/$aggregate_search/percentage_complete/g;
894

895 896 897 898 899
# Now put $db_order into a format that Bugzilla::Search can use.
# (We create $db_order as a string first because that's the way
# we did it before Bugzilla::Search took an "order" argument.)
my @orderstrings = split(',', $db_order);

900 901
# Generate the basic SQL query that will be used to generate the bug list.
my $search = new Bugzilla::Search('fields' => \@selectnames, 
902 903
                                  'params' => $params,
                                  'order' => \@orderstrings);
904 905
my $query = $search->getSQL();

906 907 908 909 910
if (defined $cgi->param('limit')) {
    my $limit = $cgi->param('limit');
    if (detaint_natural($limit)) {
        $query .= " " . $dbh->sql_limit($limit);
    }
911 912
}
elsif ($fulltext) {
913
    $query .= " " . $dbh->sql_limit(FULLTEXT_BUGLIST_LIMIT);
914
    $vars->{'sorted_by_relevance'} = 1;
915 916
}

917

918 919 920
################################################################################
# Query Execution
################################################################################
921

922
if ($cgi->param('debug')) {
923 924
    $vars->{'debug'} = 1;
    $vars->{'query'} = $query;
925
    $vars->{'debugdata'} = $search->getDebugData();
926 927
}

928 929
# Time to use server push to display an interim message to the user until
# the query completes and we can display the bug list.
930
my $disposition = '';
931
if ($serverpush) {
932 933 934
    $filename =~ s/\\/\\\\/g; # escape backslashes
    $filename =~ s/"/\\"/g; # escape quotes
    $disposition = qq#inline; filename="$filename"#;
935

936
    print $cgi->multipart_init(-content_disposition => $disposition);
937
    print $cgi->multipart_start();
938

939
    # Generate and return the UI (HTML page) from the appropriate template.
940 941
    $template->process("list/server-push.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
942

943 944 945 946 947 948
    # Under mod_perl, flush stdout so that the page actually shows up.
    if ($ENV{MOD_PERL}) {
        require Apache2::RequestUtil;
        Apache2::RequestUtil->request->rflush();
    }

949 950 951
    # Don't do multipart_end() until we're ready to display the replacement
    # page, otherwise any errors that happen before then (like SQL errors)
    # will result in a blank page being shown to the user instead of the error.
terry%netscape.com's avatar
terry%netscape.com committed
952 953
}

954 955
# Connect to the shadow database if this installation is using one to improve
# query performance.
956
$dbh = Bugzilla->switch_to_shadow_db();
terry%netscape.com's avatar
terry%netscape.com committed
957

958
# Normally, we ignore SIGTERM and SIGPIPE, but we need to
959 960 961 962 963
# respond to them here to prevent someone DOSing us by reloading a query
# a large number of times.
$::SIG{TERM} = 'DEFAULT';
$::SIG{PIPE} = 'DEFAULT';

964
# Execute the query.
965 966
my $buglist_sth = $dbh->prepare($query);
$buglist_sth->execute();
967

terry%netscape.com's avatar
terry%netscape.com committed
968

969 970 971
################################################################################
# Results Retrieval
################################################################################
terry%netscape.com's avatar
terry%netscape.com committed
972

973 974
# Retrieve the query results one row at a time and write the data into a list
# of Perl records.
terry%netscape.com's avatar
terry%netscape.com committed
975

976 977 978
my $bugowners = {};
my $bugproducts = {};
my $bugstatuses = {};
979
my @bugidlist;
terry%netscape.com's avatar
terry%netscape.com committed
980

981
my @bugs; # the list of records
982

983
while (my @row = $buglist_sth->fetchrow_array()) {
984
    my $bug = {}; # a record
985

986
    # Slurp the row of data into the record.
987 988
    # The second from last column in the record is the number of groups
    # to which the bug is restricted.
989
    foreach my $column (@selectcolumns) {
990
        $bug->{$column} = shift @row;
991
    }
terry%netscape.com's avatar
terry%netscape.com committed
992

993 994 995
    # Process certain values further (i.e. date format conversion).
    if ($bug->{'changeddate'}) {
        $bug->{'changeddate'} =~ 
996
            s/^(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})$/$1-$2-$3 $4:$5:$6/;
997 998

        # Put in the change date as a time, so that the template date plugin
999
        # can format the date in any way needed by the template. ICS and Atom
1000 1001 1002
        # have specific, and different, date and time formatting.
        $bug->{'changedtime'} = str2time($bug->{'changeddate'});
        $bug->{'changeddate'} = DiffDate($bug->{'changeddate'});        
1003 1004 1005
    }

    if ($bug->{'opendate'}) {
1006 1007 1008
        # Put in the open date as a time for the template date plugin.
        $bug->{'opentime'} = str2time($bug->{'opendate'});
        $bug->{'opendate'} = DiffDate($bug->{'opendate'});
1009
    }
terry%netscape.com's avatar
terry%netscape.com committed
1010

1011
    # Record the assignee, product, and status in the big hashes of those things.
1012
    $bugowners->{$bug->{'assigned_to'}} = 1 if $bug->{'assigned_to'};
1013
    $bugproducts->{$bug->{'product'}} = 1 if $bug->{'product'};
1014
    $bugstatuses->{$bug->{'bug_status'}} = 1 if $bug->{'bug_status'};
terry%netscape.com's avatar
terry%netscape.com committed
1015

1016
    $bug->{'secure_mode'} = undef;
1017

1018 1019
    # Add the record to the list.
    push(@bugs, $bug);
1020 1021

    # Add id to list for checking for bug privacy later
1022
    push(@bugidlist, $bug->{'bug_id'});
1023 1024
}

1025 1026 1027 1028
# Check for bug privacy and set $bug->{'secure_mode'} to 'implied' or 'manual'
# based on whether the privacy is simply product implied (by mandatory groups)
# or because of human choice
my %min_membercontrol;
1029
if (@bugidlist) {
1030
    my $sth = $dbh->prepare(
1031 1032 1033 1034 1035 1036 1037 1038
        "SELECT DISTINCT bugs.bug_id, MIN(group_control_map.membercontrol) " .
          "FROM bugs " .
    "INNER JOIN bug_group_map " .
            "ON bugs.bug_id = bug_group_map.bug_id " .
     "LEFT JOIN group_control_map " .
            "ON group_control_map.product_id = bugs.product_id " .
           "AND group_control_map.group_id = bug_group_map.group_id " .
         "WHERE bugs.bug_id IN (" . join(',',@bugidlist) . ") " .
1039
            $dbh->sql_group_by('bugs.bug_id'));
1040 1041
    $sth->execute();
    while (my ($bug_id, $min_membercontrol) = $sth->fetchrow_array()) {
1042
        $min_membercontrol{$bug_id} = $min_membercontrol || CONTROLMAPNA;
1043 1044
    }
    foreach my $bug (@bugs) {
1045
        next unless defined($min_membercontrol{$bug->{'bug_id'}});
1046
        if ($min_membercontrol{$bug->{'bug_id'}} == CONTROLMAPMANDATORY) {
1047
            $bug->{'secure_mode'} = 'implied';
1048
        }
1049 1050 1051
        else {
            $bug->{'secure_mode'} = 'manual';
        }
1052 1053
    }
}
1054

1055 1056 1057
################################################################################
# Template Variable Definition
################################################################################
1058

1059
# Define the variables and functions that will be passed to the UI template.
1060

1061
$vars->{'bugs'} = \@bugs;
1062
$vars->{'buglist'} = \@bugidlist;
1063
$vars->{'buglist_joined'} = join(',', @bugidlist);
1064 1065
$vars->{'columns'} = $columns;
$vars->{'displaycolumns'} = \@displaycolumns;
1066

1067
my @openstates = BUG_STATE_OPEN;
1068 1069
$vars->{'openstates'} = \@openstates;
$vars->{'closedstates'} = ['CLOSED', 'VERIFIED', 'RESOLVED'];
1070

1071 1072 1073
# The list of query fields in URL query string format, used when creating
# URLs to the same query results page with different parameters (such as
# a different sort order or when taking some action on the set of query
1074 1075 1076 1077 1078
# results).  To get this string, we call the Bugzilla::CGI::canoncalise_query
# function with a list of elements to be removed from the URL.
$vars->{'urlquerypart'} = $params->canonicalise_query('order',
                                                      'cmdtype',
                                                      'query_based_on');
1079
$vars->{'order'} = $order;
1080
$vars->{'caneditbugs'} = Bugzilla->user->in_group('editbugs');
terry%netscape.com's avatar
terry%netscape.com committed
1081

1082
my @bugowners = keys %$bugowners;
1083
if (scalar(@bugowners) > 1 && Bugzilla->user->in_group('editbugs')) {
1084
    my $suffix = Bugzilla->params->{'emailsuffix'};
1085 1086 1087
    map(s/$/$suffix/, @bugowners) if $suffix;
    my $bugowners = join(",", @bugowners);
    $vars->{'bugowners'} = $bugowners;
terry%netscape.com's avatar
terry%netscape.com committed
1088 1089
}

1090 1091
# Whether or not to split the column titles across two rows to make
# the list more compact.
1092
$vars->{'splitheader'} = $cgi->cookie('SPLITHEADER') ? 1 : 0;
terry%netscape.com's avatar
terry%netscape.com committed
1093

1094
$vars->{'quip'} = GetQuip();
1095
$vars->{'currenttime'} = time();
1096 1097

# The following variables are used when the user is making changes to multiple bugs.
1098
if ($dotweak) {
1099
    $vars->{'dotweak'} = 1;
1100
    $vars->{'use_keywords'} = 1 if Bugzilla::Keyword::keyword_count();
1101

1102
    $vars->{'products'} = Bugzilla->user->get_enterable_products;
1103 1104 1105 1106 1107
    $vars->{'platforms'} = get_legal_field_values('rep_platform');
    $vars->{'op_sys'} = get_legal_field_values('op_sys');
    $vars->{'priorities'} = get_legal_field_values('priority');
    $vars->{'severities'} = get_legal_field_values('bug_severity');
    $vars->{'resolutions'} = Bugzilla::Bug->settable_resolutions;
1108

1109
    $vars->{'unconfirmedstate'} = 'UNCONFIRMED';
1110 1111 1112 1113

    $vars->{'bugstatuses'} = [ keys %$bugstatuses ];

    # The groups to which the user belongs.
1114
    $vars->{'groups'} = GetGroups();
1115 1116 1117 1118 1119 1120 1121

    # If all bugs being changed are in the same product, the user can change
    # their version and component, so generate a list of products, a list of
    # versions for the product (if there is only one product on the list of
    # products), and a list of components for the product.
    $vars->{'bugproducts'} = [ keys %$bugproducts ];
    if (scalar(@{$vars->{'bugproducts'}}) == 1) {
1122 1123 1124 1125 1126
        my $product = new Bugzilla::Product(
            {name => $vars->{'bugproducts'}->[0]});
        $vars->{'versions'} = [map($_->name ,@{$product->versions})];
        $vars->{'components'} = [map($_->name, @{$product->components})];
        $vars->{'targetmilestones'} = [map($_->name, @{$product->milestones})]
1127
            if Bugzilla->params->{'usetargetmilestone'};
terry%netscape.com's avatar
terry%netscape.com committed
1128 1129
    }
}
1130

1131 1132 1133 1134
# If we're editing a stored query, use the existing query name as default for
# the "Remember search as" field.
$vars->{'defaultsavename'} = $cgi->param('query_based_on');

1135

1136 1137 1138
################################################################################
# HTTP Header Generation
################################################################################
1139

1140
# Generate HTTP headers
terry%netscape.com's avatar
terry%netscape.com committed
1141

1142
my $contenttype;
1143
my $disp = "inline";
terry%netscape.com's avatar
terry%netscape.com committed
1144

1145
if ($format->{'extension'} eq "html" && !$agent) {
1146
    if ($order) {
1147
        $cgi->send_cookie(-name => 'LASTORDER',
1148
                          -value => $order,
1149
                          -expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
1150
    }
1151
    my $bugids = join(":", @bugidlist);
1152
    # See also Bug 111999
1153 1154 1155 1156
    if (length($bugids) == 0) {
        $cgi->remove_cookie('BUGLIST');
    }
    elsif (length($bugids) < 4000) {
1157 1158 1159
        $cgi->send_cookie(-name => 'BUGLIST',
                          -value => $bugids,
                          -expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
1160
    }
1161
    else {
1162
        $cgi->remove_cookie('BUGLIST');
1163
        $vars->{'toolong'} = 1;
terry%netscape.com's avatar
terry%netscape.com committed
1164
    }
1165 1166

    $contenttype = "text/html";
1167 1168
}
else {
1169
    $contenttype = $format->{'ctype'};
terry%netscape.com's avatar
terry%netscape.com committed
1170 1171
}

1172 1173 1174 1175 1176 1177
if ($format->{'extension'} eq "csv") {
    # We set CSV files to be downloaded, as they are designed for importing
    # into other programs.
    $disp = "attachment";
}

1178
if ($serverpush) {
1179 1180
    # close the "please wait" page, then open the buglist page
    print $cgi->multipart_end();
1181
    my @extra;
1182
    push @extra, (-charset => "utf8") if Bugzilla->params->{"utf8"};
1183 1184 1185
    print $cgi->multipart_start(-type => $contenttype, 
                                -content_disposition => $disposition, 
                                @extra);
1186 1187 1188 1189 1190
} else {
    # Suggest a name for the bug list if the user wants to save it as a file.
    # If we are doing server push, then we did this already in the HTTP headers
    # that started the server push, so we don't have to do it again here.
    print $cgi->header(-type => $contenttype,
1191
                       -content_disposition => "$disp; filename=$filename");
1192
}
terry%netscape.com's avatar
terry%netscape.com committed
1193

1194

1195 1196 1197
################################################################################
# Content Generation
################################################################################
1198

1199
# Generate and return the UI (HTML page) from the appropriate template.
1200
$template->process($format->{'template'}, $vars)
1201
  || ThrowTemplateError($template->error());
1202

1203

1204 1205 1206 1207
################################################################################
# Script Conclusion
################################################################################

1208
print $cgi->multipart_final() if $serverpush;