chart.cgi 10.1 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
# -*- 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>
22
#                 Lance Larsh <lance.larsh@oracle.com>
23 24

# Glossary:
25 26 27 28 29 30
# series:   An individual, defined set of data plotted over time.
# data set: What a series is called in the UI.
# line:     A set of one or more series, to be summed and drawn as a single
#           line when the series is plotted.
# chart:    A set of lines
#
31 32 33 34 35 36 37
# So when you select rows in the UI, you are selecting one or more lines, not
# series.

# Generic Charting TODO:
#
# JS-less chart creation - hard.
# Broken image on error or no data - need to do much better.
38 39
# Centralise permission checking, so Bugzilla->user->in_group('editbugs')
#   not scattered everywhere.
40 41 42 43 44 45
# User documentation :-)
#
# Bonus:
# Offer subscription when you get a "series already exists" error?

use strict;
46
use lib qw(. lib);
47

48
use Bugzilla;
49
use Bugzilla::Constants;
50 51
use Bugzilla::Error;
use Bugzilla::Util;
52 53
use Bugzilla::Chart;
use Bugzilla::Series;
54
use Bugzilla::User;
55

56 57 58 59 60 61 62
# For most scripts we don't make $cgi and $template global variables. But
# when preparing Bugzilla for mod_perl, this script used these
# variables in so many subroutines that it was easier to just
# make them globals.
local our $cgi = Bugzilla->cgi;
local our $template = Bugzilla->template;
local our $vars = {};
63 64 65 66 67 68 69 70 71 72 73

# Go back to query.cgi if we are adding a boolean chart parameter.
if (grep(/^cmd-/, $cgi->param())) {
    my $params = $cgi->canonicalise_query("format", "ctype", "action");
    print "Location: query.cgi?format=" . $cgi->param('query_format') .
                                          ($params ? "&$params" : "") . "\n\n";
    exit;
}

my $action = $cgi->param('action');
my $series_id = $cgi->param('series_id');
74
$vars->{'doc_section'} = 'reporting.html#charts';
75 76

# Because some actions are chosen by buttons, we can't encode them as the value
77
# of the action param, because that value is localization-dependent. So, we
78
# encode it in the name, as "action-<action>". Some params even contain the
79
# series_id they apply to (e.g. subscribe, unsubscribe).
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
my @actions = grep(/^action-/, $cgi->param());
if ($actions[0] && $actions[0] =~ /^action-([^\d]+)(\d*)$/) {
    $action = $1;
    $series_id = $2 if $2;
}

$action ||= "assemble";

# Go to buglist.cgi if we are doing a search.
if ($action eq "search") {
    my $params = $cgi->canonicalise_query("format", "ctype", "action");
    print "Location: buglist.cgi" . ($params ? "?$params" : "") . "\n\n";
    exit;
}

95
my $user = Bugzilla->login(LOGIN_REQUIRED);
96

97
Bugzilla->user->in_group(Bugzilla->params->{"chartgroup"})
98
  || ThrowUserError("auth_failure", {group  => Bugzilla->params->{"chartgroup"},
99 100
                                     action => "use",
                                     object => "charts"});
101

102
# Only admins may create public queries
103
Bugzilla->user->in_group('admin') || $cgi->delete('public');
104

105 106 107 108 109
# All these actions relate to chart construction.
if ($action =~ /^(assemble|add|remove|sum|subscribe|unsubscribe)$/) {
    # These two need to be done before the creation of the Chart object, so
    # that the changes they make will be reflected in it.
    if ($action =~ /^subscribe|unsubscribe$/) {
110
        detaint_natural($series_id) || ThrowCodeError("invalid_series_id");
111
        my $series = new Bugzilla::Series($series_id);
112
        $series->$action($user->id);
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
    }

    my $chart = new Bugzilla::Chart($cgi);

    if ($action =~ /^remove|sum$/) {
        $chart->$action(getSelectedLines());
    }
    elsif ($action eq "add") {
        my @series_ids = getAndValidateSeriesIDs();
        $chart->add(@series_ids);
    }

    view($chart);
}
elsif ($action eq "plot") {
    plot();
}
elsif ($action eq "wrap") {
    # For CSV "wrap", we go straight to "plot".
    if ($cgi->param('ctype') && $cgi->param('ctype') eq "csv") {
        plot();
    }
    else {
        wrap();
    }
}
elsif ($action eq "create") {
    assertCanCreate($cgi);
141
    
142 143
    my $series = new Bugzilla::Series($cgi);

144 145
    if (!$series->existsInDatabase()) {
        $series->writeToDatabase();
146 147 148
        $vars->{'message'} = "series_created";
    }
    else {
149
        ThrowUserError("series_already_exists", {'series' => $series});
150 151 152 153
    }

    $vars->{'series'} = $series;

154
    print $cgi->header();
155 156 157 158
    $template->process("global/message.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
}
elsif ($action eq "edit") {
159
    detaint_natural($series_id) || ThrowCodeError("invalid_series_id");
160 161 162
    assertCanEdit($series_id);

    my $series = new Bugzilla::Series($series_id);
163
    
164 165 166
    edit($series);
}
elsif ($action eq "alter") {
167 168
    # This is the "commit" action for editing a series
    detaint_natural($series_id) || ThrowCodeError("invalid_series_id");
169 170
    assertCanEdit($series_id);

171
    my $series = new Bugzilla::Series($cgi);
172 173 174 175 176 177 178 179 180 181 182 183

    # We need to check if there is _another_ series in the database with
    # our (potentially new) name. So we call existsInDatabase() to see if
    # the return value is us or some other series we need to avoid stomping
    # on.
    my $id_of_series_in_db = $series->existsInDatabase();
    if (defined($id_of_series_in_db) && 
        $id_of_series_in_db != $series->{'series_id'}) 
    {
        ThrowUserError("series_already_exists", {'series' => $series});
    }
    
184
    $series->writeToDatabase();
185
    $vars->{'changes_saved'} = 1;
186
    
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
    edit($series);
}
else {
    ThrowCodeError("unknown_action");
}

exit;

# Find any selected series and return either the first or all of them.
sub getAndValidateSeriesIDs {
    my @series_ids = grep(/^\d+$/, $cgi->param("name"));

    return wantarray ? @series_ids : $series_ids[0];
}

# Return a list of IDs of all the lines selected in the UI.
sub getSelectedLines {
    my @ids = map { /^select(\d+)$/ ? $1 : () } $cgi->param();

    return @ids;
}

# Check if the user is the owner of series_id or is an admin. 
sub assertCanEdit {
    my ($series_id) = @_;
212 213 214
    my $user = Bugzilla->user;

    return if $user->in_group('admin');
215 216

    my $dbh = Bugzilla->dbh;
217 218
    my $iscreator = $dbh->selectrow_array("SELECT CASE WHEN creator = ? " .
                                          "THEN 1 ELSE 0 END FROM series " .
219
                                          "WHERE series_id = ?", undef,
220
                                          $user->id, $series_id);
221 222 223 224 225 226 227
    $iscreator || ThrowUserError("illegal_series_edit");
}

# Check if the user is permitted to create this series with these parameters.
sub assertCanCreate {
    my ($cgi) = shift;
    
228
    Bugzilla->user->in_group("editbugs") || ThrowUserError("illegal_series_creation");
229 230 231

    # Check permission for frequency
    my $min_freq = 7;
232
    if ($cgi->param('frequency') < $min_freq && !Bugzilla->user->in_group("admin")) {
233 234 235 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
        ThrowUserError("illegal_frequency", { 'minimum' => $min_freq });
    }    
}

sub validateWidthAndHeight {
    $vars->{'width'} = $cgi->param('width');
    $vars->{'height'} = $cgi->param('height');

    if (defined($vars->{'width'})) {
       (detaint_natural($vars->{'width'}) && $vars->{'width'} > 0)
         || ThrowCodeError("invalid_dimensions");
    }

    if (defined($vars->{'height'})) {
       (detaint_natural($vars->{'height'}) && $vars->{'height'} > 0)
         || ThrowCodeError("invalid_dimensions");
    }

    # The equivalent of 2000 square seems like a very reasonable maximum size.
    # This is merely meant to prevent accidental or deliberate DOS, and should
    # have no effect in practice.
    if ($vars->{'width'} && $vars->{'height'}) {
       (($vars->{'width'} * $vars->{'height'}) <= 4000000)
         || ThrowUserError("chart_too_large");
    }
}

sub edit {
    my $series = shift;

    $vars->{'category'} = Bugzilla::Chart::getVisibleSeries();
    $vars->{'creator'} = new Bugzilla::User($series->{'creator'});
265
    $vars->{'default'} = $series;
266

267
    print $cgi->header();
268 269 270 271 272 273 274 275
    $template->process("reports/edit-series.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
}

sub plot {
    validateWidthAndHeight();
    $vars->{'chart'} = new Bugzilla::Chart($cgi);

276
    my $format = $template->get_format("reports/chart", "", scalar($cgi->param('ctype')));
277 278 279

    # Debugging PNGs is a pain; we need to be able to see the error messages
    if ($cgi->param('debug')) {
280
        print $cgi->header();
281 282 283
        $vars->{'chart'}->dump();
    }

284
    print $cgi->header($format->{'ctype'});
285 286 287 288 289 290 291 292 293 294 295 296 297
    $template->process($format->{'template'}, $vars)
      || ThrowTemplateError($template->error());
}

sub wrap {
    validateWidthAndHeight();
    
    # We create a Chart object so we can validate the parameters
    my $chart = new Bugzilla::Chart($cgi);
    
    $vars->{'time'} = time();

    $vars->{'imagebase'} = $cgi->canonicalise_query(
298
                "action", "action-wrap", "ctype", "format", "width", "height");
299

300
    print $cgi->header();
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
    $template->process("reports/chart.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
}

sub view {
    my $chart = shift;

    # Set defaults
    foreach my $field ('category', 'subcategory', 'name', 'ctype') {
        $vars->{'default'}{$field} = $cgi->param($field) || 0;
    }

    # Pass the state object to the display UI.
    $vars->{'chart'} = $chart;
    $vars->{'category'} = Bugzilla::Chart::getVisibleSeries();

317
    print $cgi->header();
318 319 320 321 322 323 324 325

    # If we have having problems with bad data, we can set debug=1 to dump
    # the data structure.
    $chart->dump() if $cgi->param('debug');

    $template->process("reports/create-chart.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
}