colchange.cgi 5.98 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

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',
};
54

55
Bugzilla->login();
56

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

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

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

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

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

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

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

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

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

124
    $vars->{'message'} = "change_columns";
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139

    my $search;
    if (defined $cgi->param('saved_search')) {
        $search = new Bugzilla::Search::Saved($cgi->param('saved_search'));
    }

    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();
    }

140 141 142 143
    my $params = new Bugzilla::CGI($cgi->param('rememberedquery'));
    $params->param('columnlist', join(",", @collist));
    $vars->{'redirect_url'} = "buglist.cgi?".$params->query_string();

144

145 146 147 148 149 150 151
    # 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/
152 153
        || $ENV{'SERVER_SOFTWARE'} =~ /Sun ONE Web/)
    {
154 155
      print $cgi->header(-type => "text/html",
                         -refresh => "0; URL=$vars->{'redirect_url'}");
156 157
    }
    else {
158
      print $cgi->redirect($vars->{'redirect_url'});
159
      exit;
160 161
    }
    
162 163
    $template->process("global/message.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
164
    exit;
terry%netscape.com's avatar
terry%netscape.com committed
165 166
}

167 168 169
if (defined $cgi->param('columnlist')) {
    @collist = split(/[ ,]+/, $cgi->param('columnlist'));
} elsif (defined $cgi->cookie('COLUMNLIST')) {
170
    @collist = split(/ /, $cgi->cookie('COLUMNLIST'));
terry%netscape.com's avatar
terry%netscape.com committed
171
} else {
172
    @collist = DEFAULT_COLUMN_LIST;
terry%netscape.com's avatar
terry%netscape.com committed
173 174
}

175
$vars->{'collist'} = \@collist;
176
$vars->{'splitheader'} = $cgi->cookie('SPLITHEADER') ? 1 : 0;
177

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

180 181 182 183 184
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);

185
    if ($search) {
186 187 188 189
        $vars->{'saved_search'} = $search;
    }
}

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