#!/usr/bin/perl -wT # -*- 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): Terry Weissman # Gervase Markham # Max Kanat-Alexander # Pascal Held use strict; use lib qw(. lib); use Bugzilla; use Bugzilla::Constants; use Bugzilla::Util; use Bugzilla::CGI; use Bugzilla::Search; use Bugzilla::Search::Saved; use Bugzilla::Error; use Bugzilla::User; use Bugzilla::Keyword; Bugzilla->login(); my $cgi = Bugzilla->cgi; my $template = Bugzilla->template; my $vars = {}; my @masterlist = map { $_->{id} } sort { $a->{title} cmp $b->{title} } grep { !$_->{nobuglist} } values %{ Bugzilla::Search->COLUMNS }; Bugzilla::Hook::process('colchange_columns', {'columns' => \@masterlist} ); $vars->{masterlist} = \@masterlist; $vars->{COLUMNS} = Bugzilla::Search->COLUMNS; my @collist; if (defined $cgi->param('rememberedquery')) { my $splitheader = 0; if (defined $cgi->param('resetit')) { @collist = DEFAULT_COLUMN_LIST; } else { if (defined $cgi->param("selected_columns")) { my %legal_list = map { $_ => 1 } @masterlist; @collist = grep { exists $legal_list{$_} } $cgi->param("selected_columns"); } if (defined $cgi->param('splitheader')) { $splitheader = $cgi->param('splitheader')? 1: 0; } } my $list = join(" ", @collist); if ($list) { # 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'); } } else { $cgi->remove_cookie('COLUMNLIST'); } if ($splitheader) { $cgi->send_cookie(-name => 'SPLITHEADER', -value => $splitheader, -expires => 'Fri, 01-Jan-2038 00:00:00 GMT'); } else { $cgi->remove_cookie('SPLITHEADER'); } $vars->{'message'} = "change_columns"; 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 = http_decode_query($search->query); $params->{columnlist} = join(",", @collist); $search->set_query(http_build_query($params)); $search->update(); } my $params = http_decode_query($cgi->param('rememberedquery')); $params->{columnlist} = join(",", @collist); $vars->{redirect_url} = "buglist.cgi?".http_build_query($params); # 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/ || $ENV{'SERVER_SOFTWARE'} =~ /Sun ONE Web/) { $cgi->send_header(-type => "text/html", -refresh => "0; URL=$vars->{'redirect_url'}"); } else { print $cgi->redirect($vars->{'redirect_url'}); exit; } $template->process("global/message.html.tmpl", $vars) || ThrowTemplateError($template->error()); exit; } if (defined $cgi->param('columnlist')) { @collist = split(/[ ,]+/, $cgi->param('columnlist')); } elsif (defined $cgi->cookie('COLUMNLIST')) { @collist = split(/ /, $cgi->cookie('COLUMNLIST')); } else { @collist = DEFAULT_COLUMN_LIST; } # Respect aliases { my $a = Bugzilla::Search->COLUMN_ALIASES; $_ = $a->{$_} || $_ for @collist; } $vars->{'collist'} = \@collist; $vars->{'splitheader'} = $cgi->cookie('SPLITHEADER') ? 1 : 0; $vars->{'buffer'} = $cgi->query_string(); 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); if ($search) { $vars->{'saved_search'} = $search; } } # Generate and return the UI (HTML page) from the appropriate template. $template->process("list/change-columns.html.tmpl", $vars) || ThrowTemplateError($template->error());