1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #!/usr/bin/env 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.
- #
- # Contributor(s): Shane H. W. Travis <travis@sedsystems.ca>
- # Frédéric Buclin <LpSolit@gmail.com>
- use strict;
- use lib qw(. lib);
- use Bugzilla;
- use Bugzilla::Constants;
- use Bugzilla::Util;
- use Bugzilla::Error;
- use Bugzilla::User::Setting;
- use Bugzilla::Token;
- my $template = Bugzilla->template;
- my $user = Bugzilla->login(LOGIN_REQUIRED);
- my $cgi = Bugzilla->cgi;
- my $vars = {};
- print $cgi->header;
- $user->in_group('tweakparams')
- || ThrowUserError("auth_failure", {group => "tweakparams",
- action => "modify",
- object => "settings"});
- my $action = trim($cgi->param('action') || '');
- my $token = $cgi->param('token');
- if ($action eq 'update') {
- check_token_data($token, 'edit_settings');
- my $settings = Bugzilla::User::Setting::get_defaults();
- my $changed = 0;
- foreach my $name (keys %$settings) {
- my $old_enabled = $settings->{$name}->{'is_enabled'};
- my $old_value = $settings->{$name}->{'default_value'};
- my $enabled = defined $cgi->param("${name}-enabled") || 0;
- my $value = $cgi->param("${name}");
- my $setting = new Bugzilla::User::Setting($name);
- $setting->validate_value($value);
- if ($old_enabled != $enabled || $old_value ne $value) {
- Bugzilla::User::Setting::set_default($name, $value, $enabled);
- $changed = 1;
- }
- }
- $vars->{'message'} = 'default_settings_updated';
- $vars->{'changes_saved'} = $changed;
- delete_token($token);
- }
- # Don't use $settings as defaults may have changed.
- $vars->{'settings'} = Bugzilla::User::Setting::get_defaults();
- $vars->{'token'} = issue_session_token('edit_settings');
- $template->process("admin/settings/edit.html.tmpl", $vars)
- || ThrowTemplateError($template->error());
|