request.cgi 12.7 KB
Newer Older
1
#!/usr/bin/perl -wT
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# 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.
#
# The Original Code is the Bugzilla Bug Tracking System.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): Myk Melez <myk@mozilla.org>

################################################################################
# Script Initialization
################################################################################

# Make it harder for us to do dangerous things in Perl.
use strict;

# Include the Bugzilla CGI and general utility library.
use lib qw(.);
require "CGI.pl";

# Use Bugzilla's Request module which contains utilities for handling requests.
use Bugzilla::Flag;
use Bugzilla::FlagType;

# use Bugzilla's User module which contains utilities for handling users.
use Bugzilla::User;

use vars qw($template $vars @legal_product @legal_components %components);

# Make sure the user is logged in.
44
Bugzilla->login();
45 46 47 48 49 50 51 52 53 54 55 56 57

################################################################################
# Main Body Execution
################################################################################

queue();
exit;

################################################################################
# Functions
################################################################################

sub queue {
58 59 60 61
    my $cgi = Bugzilla->cgi;
    
    validateStatus($cgi->param('status'));
    validateGroup($cgi->param('group'));
62 63 64
    
    my $attach_join_clause = "flags.attach_id = attachments.attach_id";
    if (Param("insidergroup") && !UserInGroup(Param("insidergroup"))) {
65
        $attach_join_clause .= " AND attachments.isprivate < 1";
66 67 68 69 70 71 72 73 74 75 76 77
    }

    my $query = 
    # Select columns describing each flag, the bug/attachment on which
    # it has been set, who set it, and of whom they are requesting it.
    " SELECT    flags.id, flagtypes.name,
                flags.status,
                flags.bug_id, bugs.short_desc,
                products.name, components.name,
                flags.attach_id, attachments.description,
                requesters.realname, requesters.login_name,
                requestees.realname, requestees.login_name,
78
                DATE_FORMAT(flags.creation_date,'%Y.%m.%d %H:%i'),
79 80 81 82 83
    " . 
    # Select columns that help us weed out secure bugs to which the user
    # should not have access.
    "            COUNT(DISTINCT ugmap.group_id) AS cntuseringroups, 
                COUNT(DISTINCT bgmap.group_id) AS cntbugingroups, 
84
                ((COUNT(DISTINCT ccmap.who) > 0 AND cclist_accessible = 1) 
85
                  OR ((bugs.reporter = $::userid) AND bugs.reporter_accessible = 1) 
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
                  OR bugs.assigned_to = $::userid ) AS canseeanyway 
    " . 
    # Use the flags and flagtypes tables for information about the flags,
    # the bugs and attachments tables for target info, the profiles tables
    # for setter and requestee info, the products/components tables
    # so we can display product and component names, and the bug_group_map
    # and user_group_map tables to help us weed out secure bugs to which
    # the user should not have access.
    " FROM      flags 
                LEFT JOIN attachments ON ($attach_join_clause), 
                flagtypes, 
                profiles AS requesters
                LEFT JOIN profiles AS requestees 
                  ON flags.requestee_id  = requestees.userid, 
                bugs 
                LEFT JOIN products ON bugs.product_id = products.id
                LEFT JOIN components ON bugs.component_id = components.id
                LEFT JOIN bug_group_map AS bgmap 
                  ON bgmap.bug_id = bugs.bug_id 
                LEFT JOIN user_group_map AS ugmap 
                  ON bgmap.group_id = ugmap.group_id 
                  AND ugmap.user_id = $::userid 
                  AND ugmap.isbless = 0
                LEFT JOIN cc AS ccmap 
                ON ccmap.who = $::userid AND ccmap.bug_id = bugs.bug_id 
    " . 
    # All of these are inner join clauses.  Actual match criteria are added
    # in the code below.
    " WHERE     flags.type_id       = flagtypes.id
      AND       flags.setter_id     = requesters.userid
      AND       flags.bug_id        = bugs.bug_id
    ";
    
119 120 121
    # Non-deleted flags only
    $query .= " AND flags.is_active = 1 ";
    
122
    # Limit query to pending requests.
123
    $query .= " AND flags.status = '?' " unless $cgi->param('status');
124 125 126 127

    # The set of criteria by which we filter records to display in the queue.
    my @criteria = ();
    
128 129 130 131 132 133 134 135 136
    # A list of columns to exclude from the report because the report conditions
    # limit the data being displayed to exact matches for those columns.
    # In other words, if we are only displaying "pending" , we don't
    # need to display a "status" column in the report because the value for that
    # column will always be the same.
    my @excluded_columns = ();
    
    # Filter requests by status: "pending", "granted", "denied", "all" 
    # (which means any), or "fulfilled" (which means "granted" or "denied").
137 138
    if ($cgi->param('status')) {
        if ($cgi->param('status') eq "+-") {
139
            push(@criteria, "flags.status IN ('+', '-')");
140
            push(@excluded_columns, 'status') unless $cgi->param('do_union');
141
        }
142 143 144
        elsif ($cgi->param('status') ne "all") {
            push(@criteria, "flags.status = '" . $cgi->param('status') . "'");
            push(@excluded_columns, 'status') unless $cgi->param('do_union');
145
        }
146 147 148
    }
    
    # Filter results by exact email address of requester or requestee.
149 150 151
    if (defined $cgi->param('requester') && $cgi->param('requester') ne "") {
        push(@criteria, "requesters.login_name = " . SqlQuote($cgi->param('requester')));
        push(@excluded_columns, 'requester') unless $cgi->param('do_union');
152
    }
153
    if (defined $cgi->param('requestee') && $cgi->param('requestee') ne "") {
154 155 156 157
        if ($cgi->param('requestee') ne "-") {
            push(@criteria, "requestees.login_name = " . SqlQuote($cgi->param('requestee')));
        }
        else { push(@criteria, "flags.requestee_id IS NULL") }
158
        push(@excluded_columns, 'requestee') unless $cgi->param('do_union');
159 160 161
    }
    
    # Filter results by exact product or component.
162 163
    if (defined $cgi->param('product') && $cgi->param('product') ne "") {
        my $product_id = get_product_id($cgi->param('product'));
164
        if ($product_id) {
165
            push(@criteria, "bugs.product_id = $product_id");
166 167 168
            push(@excluded_columns, 'product') unless $cgi->param('do_union');
            if (defined $cgi->param('component') && $cgi->param('component') ne "") {
                my $component_id = get_component_id($product_id, $cgi->param('component'));
169
                if ($component_id) {
170
                    push(@criteria, "bugs.component_id = $component_id");
171
                    push(@excluded_columns, 'component') unless $cgi->param('do_union');
172
                }
173 174
                else { ThrowUserError("component_not_valid", { 'product' => $cgi->param('product'),
                                                               'name' => $cgi->param('component') }) }
175 176
            }
        }
177
        else { ThrowUserError("product_doesnt_exist", { 'product' => $cgi->param('product') }) }
178 179 180
    }
    
    # Filter results by flag types.
181 182
    my $form_type = $cgi->param('type');
    if (defined $form_type && !grep($form_type eq $_, ("", "all"))) {
183 184
        # Check if any matching types are for attachments.  If not, don't show
        # the attachment column in the report.
185
        my $types = Bugzilla::FlagType::match({ 'name' => $form_type });
186 187 188 189 190 191 192 193 194
        my $has_attachment_type = 0;
        foreach my $type (@$types) {
            if ($type->{'target_type'} eq "attachment") {
                $has_attachment_type = 1;
                last;
            }
        }
        if (!$has_attachment_type) { push(@excluded_columns, 'attachment') }
        
195 196
        push(@criteria, "flagtypes.name = " . SqlQuote($form_type));
        push(@excluded_columns, 'type') unless $cgi->param('do_union');
197 198
    }
    
199 200 201
    # Add the criteria to the query.  We do an intersection by default 
    # but do a union if the "do_union" URL parameter (for which there is no UI 
    # because it's an advanced feature that people won't usually want) is true.
202
    my $and_or = $cgi->param('do_union') ? " OR " : " AND ";
203 204
    $query .= " AND (" . join($and_or, @criteria) . ") " if scalar(@criteria);
    
205 206 207 208 209 210 211 212 213
    # Group the records by flag ID so we don't get multiple rows of data
    # for each flag.  This is only necessary because of the code that
    # removes flags on bugs the user is unauthorized to access.
    $query .= " GROUP BY flags.id " . 
              "HAVING cntuseringroups = cntbugingroups OR canseeanyway ";

    # Group the records, in other words order them by the group column
    # so the loop in the display template can break them up into separate
    # tables every time the value in the group column changes.
214 215 216 217

    my $form_group = $cgi->param('group');
    $form_group ||= "requestee";
    if ($form_group eq "requester") {
218 219
        $query .= " ORDER BY requesters.realname, requesters.login_name";
    }
220
    elsif ($form_group eq "requestee") {
221 222
        $query .= " ORDER BY requestees.realname, requestees.login_name";
    }
223
    elsif ($form_group eq "category") {
224 225
        $query .= " ORDER BY products.name, components.name";
    }
226
    elsif ($form_group eq "type") {
227 228 229 230 231 232 233 234
        $query .= " ORDER BY flagtypes.name";
    }

    # Order the records (within each group).
    $query .= " , flags.creation_date";
    
    # Pass the query to the template for use when debugging this script.
    $vars->{'query'} = $query;
235
    $vars->{'debug'} = $cgi->param('debug') ? 1 : 0;
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
    
    SendSQL($query);
    my @requests = ();
    while (MoreSQLData()) {
        my @data = FetchSQLData();
        my $request = {
          'id'              => $data[0] , 
          'type'            => $data[1] , 
          'status'          => $data[2] , 
          'bug_id'          => $data[3] , 
          'bug_summary'     => $data[4] , 
          'category'        => "$data[5]: $data[6]" , 
          'attach_id'       => $data[7] , 
          'attach_summary'  => $data[8] ,
          'requester'       => ($data[9] ? "$data[9] <$data[10]>" : $data[10]) , 
          'requestee'       => ($data[11] ? "$data[11] <$data[12]>" : $data[12]) , 
          'created'         => $data[13]
        };
        push(@requests, $request);
    }

    # Get a list of request type names to use in the filter form.
    my @types = ("all");
    SendSQL("SELECT DISTINCT(name) FROM flagtypes ORDER BY name");
    push(@types, FetchOneColumn()) while MoreSQLData();
    
    # products and components and the function used to modify the components
    # menu when the products menu changes; used by the template to populate
    # the menus and keep the components menu consistent with the products menu
    GetVersionTable();
266 267 268
    my $selectable = GetSelectableProductHash();
    $vars->{'products'} = $selectable->{legal_products};
    $vars->{'components'} = $selectable->{legal_components};
269
    $vars->{'components_by_product'} = $selectable->{components_by_product};
270 271
    
    $vars->{'excluded_columns'} = \@excluded_columns;
272
    $vars->{'group_field'} = $form_group;
273 274 275 276
    $vars->{'requests'} = \@requests;
    $vars->{'types'} = \@types;

    # Return the appropriate HTTP response headers.
277
    print Bugzilla->cgi->header();
278 279 280 281 282 283 284 285 286 287 288

    # Generate and return the UI (HTML page) from the appropriate template.
    $template->process("request/queue.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
}

################################################################################
# Data Validation / Security Authorization
################################################################################

sub validateStatus {
289 290
    my $status = $_[0];
    return if !defined $status;
291
    
292
    grep($status eq $_, qw(? +- + - all))
293
      || ThrowCodeError("flag_status_invalid",
294
                        { status => $status });
295 296 297
}

sub validateGroup {
298 299
    my $group = $_[0];
    return if !defined $group;
300
    
301
    grep($group eq $_, qw(requester requestee category type))
302
      || ThrowCodeError("request_queue_group_invalid", 
303
                        { group => $group });
304 305
}