colchange.cgi 6.19 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
#                 Gervase Markham <gerv@gerv.net>
23
#                 Max Kanat-Alexander <mkanat@bugzilla.org>
24
#                 Pascal Held <paheld@gmail.com>
terry%netscape.com's avatar
terry%netscape.com committed
25

26
use strict;
27
use lib qw(. lib);
28

29
use Bugzilla;
30
use Bugzilla::Constants;
31
use Bugzilla::Util;
32 33
use Bugzilla::CGI;
use Bugzilla::Search::Saved;
34
use Bugzilla::Error;
35
use Bugzilla::User;
36
use Bugzilla::Token;
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

use Storable qw(dclone);

# Maps parameters that control columns to the names of columns.
use constant COLUMN_PARAMS => {
    'useclassification'   => ['classification'],
    'usebugaliases'       => ['alias'],
    'usetargetmilestone'  => ['target_milestone'],
    'useqacontact'        => ['qa_contact', 'qa_contact_realname'],
    'usestatuswhiteboard' => ['status_whiteboard'],
};

# We only show these columns if an object of this type exists in the
# database.
use constant COLUMN_CLASSES => {
    'Bugzilla::Flag'    => 'flagtypes.name',
    'Bugzilla::Keyword' => 'keywords',
};
55

56
Bugzilla->login();
57

58
my $cgi = Bugzilla->cgi;
59 60
my $template = Bugzilla->template;
my $vars = {};
61

62
my $columns = dclone(Bugzilla::Search::COLUMNS);
63

64 65
# You can't manually select "relevance" as a column you want to see.
delete $columns->{'relevance'};
66

67 68 69 70 71
foreach my $param (keys %{ COLUMN_PARAMS() }) {
    next if Bugzilla->params->{$param};
    foreach my $column (@{ COLUMN_PARAMS->{$param} }) {
        delete $columns->{$column};
    }
72 73
}

74 75 76 77 78
foreach my $class (keys %{ COLUMN_CLASSES() }) {
    eval("use $class; 1;") || die $@;
    my $column = COLUMN_CLASSES->{$class};
    delete $columns->{$column} if !$class->any_exist;
}
79

80 81 82 83 84
if (!Bugzilla->user->is_timetracker) {
    foreach my $column (TIMETRACKING_FIELDS) {
        delete $columns->{$column};
    }
}
85

86
$vars->{'columns'} = $columns;
terry%netscape.com's avatar
terry%netscape.com committed
87

88
my @collist;
89
if (defined $cgi->param('rememberedquery')) {
90 91 92 93 94 95 96 97 98 99 100 101 102
    my $search;
    if (defined $cgi->param('saved_search')) {
        $search = new Bugzilla::Search::Saved($cgi->param('saved_search'));
    }

    my $token = $cgi->param('token');
    if ($search) {
        check_hash_token($token, [$search->id, $search->name]);
    }
    else {
        check_hash_token($token, ['default-list']);
    }

103
    my $splitheader = 0;
104
    if (defined $cgi->param('resetit')) {
105
        @collist = DEFAULT_COLUMN_LIST;
terry%netscape.com's avatar
terry%netscape.com committed
106
    } else {
107
        if (defined $cgi->param("selected_columns")) {
108 109
            @collist = grep { exists $columns->{$_} } 
                            $cgi->param("selected_columns");
terry%netscape.com's avatar
terry%netscape.com committed
110
        }
111
        if (defined $cgi->param('splitheader')) {
112
            $splitheader = $cgi->param('splitheader')? 1: 0;
113
        }
terry%netscape.com's avatar
terry%netscape.com committed
114
    }
115
    my $list = join(" ", @collist);
116

117
    if ($list) {
118 119 120 121 122 123 124
        # Only set the cookie if this is not a saved search.
        # Saved searches have their own column list
        if (!$cgi->param('save_columns_for_search')) {
            $cgi->send_cookie(-name => 'COLUMNLIST',
                              -value => $list,
                              -expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
        }
125 126 127 128
    }
    else {
        $cgi->remove_cookie('COLUMNLIST');
    }
129 130 131 132 133 134 135 136
    if ($splitheader) {
        $cgi->send_cookie(-name => 'SPLITHEADER',
                          -value => $splitheader,
                          -expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
    }
    else {
        $cgi->remove_cookie('SPLITHEADER');
    }
137

138
    $vars->{'message'} = "change_columns";
139 140 141 142 143 144 145 146 147 148

    if ($cgi->param('save_columns_for_search')
        && defined $search && $search->user->id == Bugzilla->user->id) 
    {
        my $params = new Bugzilla::CGI($search->url);
        $params->param('columnlist', join(",", @collist));
        $search->set_url($params->query_string());
        $search->update();
    }

149 150 151 152
    my $params = new Bugzilla::CGI($cgi->param('rememberedquery'));
    $params->param('columnlist', join(",", @collist));
    $vars->{'redirect_url'} = "buglist.cgi?".$params->query_string();

153

154 155 156 157 158 159 160
    # If we're running on Microsoft IIS, $cgi->redirect discards
    # the Set-Cookie lines. In mod_perl, $cgi->redirect with cookies
    # causes the page to be rendered as text/plain.
    # Workaround is to use the old-fashioned  redirection mechanism. 
    # See bug 214466 and bug 376044 for details.
    if ($ENV{'MOD_PERL'} 
        || $ENV{'SERVER_SOFTWARE'} =~ /Microsoft-IIS/
161 162
        || $ENV{'SERVER_SOFTWARE'} =~ /Sun ONE Web/)
    {
163 164
      print $cgi->header(-type => "text/html",
                         -refresh => "0; URL=$vars->{'redirect_url'}");
165 166
    }
    else {
167
      print $cgi->redirect($vars->{'redirect_url'});
168
      exit;
169 170
    }
    
171 172
    $template->process("global/message.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
173
    exit;
terry%netscape.com's avatar
terry%netscape.com committed
174 175
}

176 177 178
if (defined $cgi->param('columnlist')) {
    @collist = split(/[ ,]+/, $cgi->param('columnlist'));
} elsif (defined $cgi->cookie('COLUMNLIST')) {
179
    @collist = split(/ /, $cgi->cookie('COLUMNLIST'));
terry%netscape.com's avatar
terry%netscape.com committed
180
} else {
181
    @collist = DEFAULT_COLUMN_LIST;
terry%netscape.com's avatar
terry%netscape.com committed
182 183
}

184
$vars->{'collist'} = \@collist;
185
$vars->{'splitheader'} = $cgi->cookie('SPLITHEADER') ? 1 : 0;
186

187
$vars->{'buffer'} = $cgi->query_string();
terry%netscape.com's avatar
terry%netscape.com committed
188

189 190 191 192 193
my $search;
if (defined $cgi->param('query_based_on')) {
    my $searches = Bugzilla->user->queries;
    my ($search) = grep($_->name eq $cgi->param('query_based_on'), @$searches);

194
    if ($search) {
195 196 197 198
        $vars->{'saved_search'} = $search;
    }
}

199
# Generate and return the UI (HTML page) from the appropriate template.
200
print $cgi->header();
201 202
$template->process("list/change-columns.html.tmpl", $vars)
  || ThrowTemplateError($template->error());