From 2230afc9fb94b3dc36fab966f7621ca1deea24ab Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" <> Date: Sun, 10 Nov 2002 10:50:34 +0000 Subject: Bug 176599, Improve performance of duplicates.cgi original patch iteration by gerv, change to use Bugzilla:Search by me r=myk, a=justdave --- duplicates.cgi | 78 ++++++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 57 insertions(+), 21 deletions(-) (limited to 'duplicates.cgi') diff --git a/duplicates.cgi b/duplicates.cgi index 233022eca..5687cefec 100755 --- a/duplicates.cgi +++ b/duplicates.cgi @@ -34,6 +34,9 @@ require "CGI.pl"; use vars qw($buffer); +use Bugzilla::Search; +use Bugzilla::CGI; + # Go directly to the XUL version of the duplicates report (duplicates.xul) # if the user specified ctype=xul. Adds params if they exist, and directs # the user to a signed copy of the script in duplicates.jar if it exists. @@ -152,27 +155,64 @@ if (!tie(%before, 'AnyDBM_File', "data/duplicates/dupes$whenever", $dobefore = 1; } +detaint_natural($maxrows) + || ThrowUserError("invalid_maxrows", { maxrows => $maxrows}); + my @bugs; my @bug_ids; if (scalar(%count)) { - # Don't add CLOSED, and don't add VERIFIED unless they are INVALID or - # WONTFIX. We want to see VERIFIED INVALID and WONTFIX because common - # "bugs" which aren't bugs end up in this state. - my $query = " - SELECT bugs.bug_id, components.name, bug_severity, op_sys, - target_milestone, short_desc, bug_status, resolution - FROM bugs, components - WHERE (bugs.component_id = components.id) - AND (bug_status != 'CLOSED') - AND ((bug_status = 'VERIFIED' AND resolution IN ('INVALID', 'WONTFIX')) - OR (bug_status != 'VERIFIED')) - AND bugs.bug_id IN (" . join(", ", keys %count) . ")"; - - # Limit to a single product if requested - $query .= (" AND bugs.product_id = " . $product_id) if $product_id; - - SendSQL($query); + # use Bugzilla::Search so that we get the security checking + my $params = new Bugzilla::CGI({ 'bug_id' => [keys %count] }); + + if ($openonly) { + $params->param('resolution', '---'); + } else { + # We want to show bugs which: + # a) Aren't CLOSED; and + # b) i) Aren't VERIFIED; OR + # ii) Were resolved INVALID/WONTFIX + + # The rationale behind this is that people will eventually stop + # reporting fixed bugs when they get newer versions of the software, + # but if the bug is determined to be erroneous, people will still + # keep reporting it, so we do need to show it here. + + # a) + $params->param('field0-0-0', 'bug_status'); + $params->param('type0-0-0', 'notequals'); + $params->param('value0-0-0', 'CLOSED'); + + # b) i) + $params->param('field0-1-0', 'bug_status'); + $params->param('type0-1-0', 'notequals'); + $params->param('value0-1-0', 'VERIFIED'); + + # b) ii) + $params->param('field0-1-1', 'resolution'); + $params->param('type0-1-1', 'anyexact'); + $params->param('value0-1-1', 'INVALID,WONTFIX'); + } + + # Restrict to product if requested + if ($::FORM{'product'}) { + $params->param('product', $::FORM{'product'}); + } + + my $query = new Bugzilla::Search('fields' => [qw(bugs.bug_id + map_components.name + bugs.bug_severity + bugs.op_sys + bugs.target_milestone + bugs.short_desc + bugs.bug_status + bugs.resolution + ) + ], + 'params' => $params, + ); + + SendSQL($query->getSQL()); while (MoreSQLData()) { # Note: maximum row count is dealt with in the template. @@ -180,10 +220,6 @@ if (scalar(%count)) { my ($id, $component, $bug_severity, $op_sys, $target_milestone, $short_desc, $bug_status, $resolution) = FetchSQLData(); - next if (!CanSeeBug($id, $::userid)); - # Limit to open bugs only if requested - next if $openonly && ($resolution ne ""); - push (@bugs, { id => $id, count => $count{$id}, delta => $delta{$id}, -- cgit v1.2.3-24-g4f1b