colchange.cgi 5.47 KB
Newer Older
1
#!/usr/bin/perl -wT
2 3 4
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
terry%netscape.com's avatar
terry%netscape.com committed
5
#
6 7
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
terry%netscape.com's avatar
terry%netscape.com committed
8

9
use strict;
10
use lib qw(. lib);
11

12
use Bugzilla;
13
use Bugzilla::Constants;
14
use Bugzilla::Util;
15 16
use Bugzilla::CGI;
use Bugzilla::Search::Saved;
17
use Bugzilla::Error;
18
use Bugzilla::User;
19
use Bugzilla::Token;
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

use Storable qw(dclone);

# Maps parameters that control columns to the names of columns.
use constant COLUMN_PARAMS => {
    'useclassification'   => ['classification'],
    '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',
};
37

38
my $user = Bugzilla->login();
39

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

44
my $columns = dclone(Bugzilla::Search::COLUMNS);
45

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

49 50 51 52 53
foreach my $param (keys %{ COLUMN_PARAMS() }) {
    next if Bugzilla->params->{$param};
    foreach my $column (@{ COLUMN_PARAMS->{$param} }) {
        delete $columns->{$column};
    }
54 55
}

56 57 58 59 60
foreach my $class (keys %{ COLUMN_CLASSES() }) {
    eval("use $class; 1;") || die $@;
    my $column = COLUMN_CLASSES->{$class};
    delete $columns->{$column} if !$class->any_exist;
}
61

62
if (!$user->is_timetracker) {
63 64 65 66
    foreach my $column (TIMETRACKING_FIELDS) {
        delete $columns->{$column};
    }
}
67

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

70
my @collist;
71
if (defined $cgi->param('rememberedquery')) {
72 73 74 75 76 77 78 79 80 81 82 83 84
    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']);
    }

85
    my $splitheader = 0;
86
    if (defined $cgi->param('resetit')) {
87
        @collist = DEFAULT_COLUMN_LIST;
terry%netscape.com's avatar
terry%netscape.com committed
88
    } else {
89
        if (defined $cgi->param("selected_columns")) {
90 91
            @collist = grep { exists $columns->{$_} } 
                            $cgi->param("selected_columns");
terry%netscape.com's avatar
terry%netscape.com committed
92
        }
93
        if (defined $cgi->param('splitheader')) {
94
            $splitheader = $cgi->param('splitheader')? 1: 0;
95
        }
terry%netscape.com's avatar
terry%netscape.com committed
96
    }
97
    my $list = join(" ", @collist);
98

99
    if ($list) {
100 101 102 103 104 105 106
        # 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');
        }
107 108 109 110
    }
    else {
        $cgi->remove_cookie('COLUMNLIST');
    }
111 112 113 114 115 116 117 118
    if ($splitheader) {
        $cgi->send_cookie(-name => 'SPLITHEADER',
                          -value => $splitheader,
                          -expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
    }
    else {
        $cgi->remove_cookie('SPLITHEADER');
    }
119

120
    $vars->{'message'} = "change_columns";
121 122

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

131 132 133 134
    my $params = new Bugzilla::CGI($cgi->param('rememberedquery'));
    $params->param('columnlist', join(",", @collist));
    $vars->{'redirect_url'} = "buglist.cgi?".$params->query_string();

135

136 137 138 139 140 141 142
    # 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/
143 144
        || $ENV{'SERVER_SOFTWARE'} =~ /Sun ONE Web/)
    {
145 146
      print $cgi->header(-type => "text/html",
                         -refresh => "0; URL=$vars->{'redirect_url'}");
147 148
    }
    else {
149
      print $cgi->redirect($vars->{'redirect_url'});
150
      exit;
151 152
    }
    
153 154
    $template->process("global/message.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
155
    exit;
terry%netscape.com's avatar
terry%netscape.com committed
156 157
}

158 159 160
if (defined $cgi->param('columnlist')) {
    @collist = split(/[ ,]+/, $cgi->param('columnlist'));
} elsif (defined $cgi->cookie('COLUMNLIST')) {
161
    @collist = split(/ /, $cgi->cookie('COLUMNLIST'));
terry%netscape.com's avatar
terry%netscape.com committed
162
} else {
163
    @collist = DEFAULT_COLUMN_LIST;
terry%netscape.com's avatar
terry%netscape.com committed
164 165
}

166
$vars->{'collist'} = \@collist;
167
$vars->{'splitheader'} = $cgi->cookie('SPLITHEADER') ? 1 : 0;
168

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

171 172
my $search;
if (defined $cgi->param('query_based_on')) {
173
    my $searches = $user->queries;
174 175
    my ($search) = grep($_->name eq $cgi->param('query_based_on'), @$searches);

176
    if ($search) {
177 178 179 180
        $vars->{'saved_search'} = $search;
    }
}

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