duplicates.cgi 8.88 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
# -*- 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): Gervase Markham <gerv@gerv.net>
#
# Generates mostfreq list from data collected by collectstats.pl.

25

26
use strict;
27

28
use AnyDBM_File;
29

30
use lib qw(. lib);
31

32
use Bugzilla;
33
use Bugzilla::Constants;
34 35 36
use Bugzilla::Util;
use Bugzilla::Error;
use Bugzilla::Search;
37
use Bugzilla::Product;
38 39

my $cgi = Bugzilla->cgi;
40 41
my $template = Bugzilla->template;
my $vars = {};
42

43 44 45 46 47 48 49
# collectstats.pl uses duplicates.cgi to generate the RDF duplicates stats.
# However, this conflicts with requirelogin if it's enabled; so we make
# logging-in optional if we are running from the command line.
if ($::ENV{'GATEWAY_INTERFACE'} eq "cmdline") {
    Bugzilla->login(LOGIN_OPTIONAL);
}
else {
50
    Bugzilla->login();
51
}
52

53
my $dbh = Bugzilla->switch_to_shadow_db();
54

55
my %dbmcount;
56 57 58
my %count;
my %before;

59
# Get params from URL
60 61
sub formvalue {
    my ($name, $default) = (@_);
62
    return Bugzilla->cgi->param($name) || $default || "";
63
}
64

65 66 67 68
my $sortby = formvalue("sortby");
my $changedsince = formvalue("changedsince", 7);
my $maxrows = formvalue("maxrows", 100);
my $openonly = formvalue("openonly");
69
my $reverse = formvalue("reverse") ? 1 : 0;
70
my @query_products = $cgi->param('product');
71 72
my $sortvisible = formvalue("sortvisible");
my @buglist = (split(/[:,]/, formvalue("bug_id")));
73

74
# Make sure all products are valid.
75
foreach my $p (@query_products) {
76
    Bugzilla::Product::check_product($p);
77 78
}

79 80
# Small backwards-compatibility hack, dated 2002-04-10.
$sortby = "count" if $sortby eq "dup_count";
81

82
# Open today's record of dupes
83 84
my $today = days_ago(0);
my $yesterday = days_ago(1);
85

86
# We don't know the exact file name, because the extension depends on the
87 88 89 90 91 92 93 94
# underlying dbm library, which could be anything. We can't glob, because
# perl < 5.6 considers if (<*>) { ... } to be tainted
# Instead, just check the return value for today's data and yesterday's,
# and ignore file not found errors

use Errno;
use Fcntl;

95 96
my $datadir = bz_locations()->{'datadir'};

97
if (!tie(%dbmcount, 'AnyDBM_File', "$datadir/duplicates/dupes$today",
98 99
         O_RDONLY, 0644)) {
    if ($!{ENOENT}) {
100
        if (!tie(%dbmcount, 'AnyDBM_File', "$datadir/duplicates/dupes$yesterday",
101
                 O_RDONLY, 0644)) {
102
            my $vars = { today => $today };
103
            if ($!{ENOENT}) {
104
                ThrowUserError("no_dupe_stats", $vars);
105
            } else {
106
                $vars->{'error_msg'} = $!;
107
                ThrowUserError("no_dupe_stats_error_yesterday", $vars);
108 109 110
            }
        }
    } else {
111 112
        ThrowUserError("no_dupe_stats_error_today",
                       { error_msg => $! });
113
    }
114 115 116 117
}

# Copy hash (so we don't mess up the on-disk file when we remove entries)
%count = %dbmcount;
118 119 120

# Remove all those dupes under the threshold parameter. 
# We do this, before the sorting, for performance reasons.
121
my $threshold = Bugzilla->params->{"mostfreqthreshold"};
122

123 124
while (my ($key, $value) = each %count) {
    delete $count{$key} if ($value < $threshold);
125 126 127
    
    # If there's a buglist, restrict the bugs to that list.
    delete $count{$key} if $sortvisible && (lsearch(\@buglist, $key) == -1);
128 129
}

130 131 132 133 134 135 136 137 138
my $origmaxrows = $maxrows;
detaint_natural($maxrows)
  || ThrowUserError("invalid_maxrows", { maxrows => $origmaxrows});

my $origchangedsince = $changedsince;
detaint_natural($changedsince)
  || ThrowUserError("invalid_changedsince", 
                    { changedsince => $origchangedsince });

139
# Try and open the database from "changedsince" days ago
140
my $dobefore = 0;
141
my %delta;
142 143
my $whenever = days_ago($changedsince);    

144
if (!tie(%before, 'AnyDBM_File', "$datadir/duplicates/dupes$whenever",
145 146 147
         O_RDONLY, 0644)) {
    # Ignore file not found errors
    if (!$!{ENOENT}) {
148 149 150 151 152
        ThrowUserError("no_dupe_stats_error_whenever",
                       { error_msg => $!,
                         changedsince => $changedsince,
                         whenever => $whenever,
                       });
153 154
    }
} else {
155
    # Calculate the deltas
156
    ($delta{$_} = $count{$_} - ($before{$_} || 0)) foreach (keys(%count));
157 158 159 160 161 162 163

    $dobefore = 1;
}

my @bugs;
my @bug_ids; 

164
if (scalar(%count)) {
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
    # 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
198
    if ($cgi->param('product')) {
199
        $params->param('product', join(',', @query_products));
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
    }

    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,
                                    );

215
    my $results = $dbh->selectall_arrayref($query->getSQL());
216

217
    foreach my $result (@$results) {
218 219 220
        # Note: maximum row count is dealt with in the template.

        my ($id, $component, $bug_severity, $op_sys, $target_milestone, 
221
            $short_desc, $bug_status, $resolution) = @$result;
222 223 224 225 226 227 228 229 230 231 232 233 234

        push (@bugs, { id => $id,
                       count => $count{$id},
                       delta => $delta{$id}, 
                       component => $component,
                       bug_severity => $bug_severity,
                       op_sys => $op_sys,
                       target_milestone => $target_milestone,
                       short_desc => $short_desc,
                       bug_status => $bug_status, 
                       resolution => $resolution });
        push (@bug_ids, $id); 
    }
235 236 237 238 239 240 241 242 243 244 245 246
}

$vars->{'bugs'} = \@bugs;
$vars->{'bug_ids'} = \@bug_ids;

$vars->{'dobefore'} = $dobefore;
$vars->{'sortby'} = $sortby;
$vars->{'sortvisible'} = $sortvisible;
$vars->{'changedsince'} = $changedsince;
$vars->{'maxrows'} = $maxrows;
$vars->{'openonly'} = $openonly;
$vars->{'reverse'} = $reverse;
247
$vars->{'format'} = $cgi->param('format');
248
$vars->{'query_products'} = \@query_products;
249
$vars->{'products'} = Bugzilla->user->get_selectable_products;
250

251

252 253 254
my $format = $template->get_format("reports/duplicates",
                                   scalar($cgi->param('format')),
                                   scalar($cgi->param('ctype')));
255

256 257 258 259 260 261 262
# We set the charset in Bugzilla::CGI, but CGI.pm ignores it unless the
# Content-Type is a text type. In some cases, such as when we are
# generating RDF, it isn't, so we specify the charset again here.
print $cgi->header(
    -type => $format->{'ctype'},
    (Bugzilla->params->{'utf8'} ? ('charset', 'utf8') : () )
);
263 264

# Generate and return the UI (HTML page) from the appropriate template.
265
$template->process($format->{'template'}, $vars)
266
  || ThrowTemplateError($template->error());
267 268 269 270 271


sub days_ago {
    my ($dom, $mon, $year) = (localtime(time - ($_[0]*24*60*60)))[3, 4, 5];
    return sprintf "%04d-%02d-%02d", 1900 + $year, ++$mon, $dom;
272
}