doeditparams.cgi 3.53 KB
Newer Older
1
#!/usr/bin/perl -wT
2
# -*- Mode: perl; indent-tabs-mode: nil -*-
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.
#
14
# The Original Code is the Bugzilla Bug Tracking System.
15
#
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.
#
21
# Contributor(s): Terry Weissman <terry@mozilla.org>
22
#                 J. Paul Reed <preed@sigkill.com>
23

24
use strict;
25

26 27
use lib qw(.);

28
use Bugzilla;
29
use Bugzilla::Constants;
30
use Bugzilla::Config qw(:DEFAULT :admin $datadir);
31
use Bugzilla::User;
32

33
require "CGI.pl";
34

35
Bugzilla->login(LOGIN_REQUIRED);
36

37 38 39
my $cgi = Bugzilla->cgi;

print $cgi->header();
40

41 42 43 44
UserInGroup("tweakparams")
  || ThrowUserError("auth_failure", {group  => "tweakparams",
                                     action => "modify",
                                     object => "parameters"});
45

46
PutHeader("Saving new parameters");
47

48 49
my $howto = "";

50 51
foreach my $i (GetParamList()) {
    my $name = $i->{'name'};
52 53
    my $value = $cgi->param($name);
    if (defined $cgi->param("reset-$name")) {
54 55 56 57
        $value = $i->{'default'};
    } else {
        if ($i->{'type'} eq 'm') {
            # This simplifies the code below
58
            $value = [ $cgi->param($name) ];
59 60 61 62 63 64
        } else {
            # Get rid of windows/mac-style line endings.
            $value =~ s/\r\n?/\n/g;

            # assume single linefeed is an empty string
            $value =~ s/^\n$//;
65
        }
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
    }
    my $changed;
    if ($i->{'type'} eq 'm') {
        my @old = sort @{Param($name)};
        my @new = sort @$value;
        if (scalar(@old) != scalar(@new)) {
            $changed = 1;
        } else {
            $changed = 0; # Assume not changed...
            for (my $cnt = 0; $cnt < scalar(@old); ++$cnt) {
                if ($old[$cnt] ne $new[$cnt]) {
                    # entry is different, therefore changed
                    $changed = 1;
                    last;
                }
81 82
            }
        }
83 84
    } else {
        $changed = ($value eq Param($name) ? 0 : 1);
85
    }
86 87 88
    if ($changed) {
        if (exists $i->{'checker'}) {
            my $ok = $i->{'checker'}->($value, $i);
89
            if ($ok ne "") {
90 91
                print "New value for " . html_quote($name) .
                  " is invalid: $ok<p>\n";
92
                print "Please hit <b>Back</b> and try again.\n";
93
                PutFooter();
94
                exit;
95 96
            }
        }
97
        print "Changed " . html_quote($name) . ".<br>\n";
98
        SetParam($name, $value);
99 100 101 102 103 104
        if (($name eq "shutdownhtml") && ($value ne "")) {
            # The system is down, inform the user how to restore it
            $howto = "<p>Bugzilla has now been shut down, to re-enable ".
                    "the system, please return to ".
                    "<a href=\"editparams.cgi\">editparams.cgi</a>.</p>";
        }
105 106 107 108
    }
}


109
WriteParams();
110

111
unlink "$datadir/versioncache";
112

113 114
print "<p>OK, done.</p>\n";
print $howto;
115 116
print "<a href=\"editparams.cgi\">Edit the params some more.</a><p>\n";
print "<a href=\"query.cgi\">Go back to the query page.</a>\n";
117
    
118
PutFooter();