зеркало из https://github.com/mozilla/pjs.git
251 строка
7.6 KiB
Perl
Executable File
251 строка
7.6 KiB
Perl
Executable File
#!/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 mozilla.org code.
|
|
#
|
|
# The Initial Developer of the Original Code is Holger
|
|
# Schurig. Portions created by Holger Schurig are
|
|
# Copyright (C) 1999 Holger Schurig. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s): Holger Schurig <holgerschurig@nikocity.de>
|
|
# Terry Weissman <terry@mozilla.org>
|
|
# Frédéric Buclin <LpSolit@gmail.com>
|
|
# Akamai Technologies <bugzilla-dev@akamai.com>
|
|
|
|
use strict;
|
|
use lib qw(. lib);
|
|
|
|
use Bugzilla;
|
|
use Bugzilla::Constants;
|
|
use Bugzilla::Util;
|
|
use Bugzilla::Error;
|
|
use Bugzilla::User;
|
|
use Bugzilla::Component;
|
|
use Bugzilla::Token;
|
|
|
|
my $cgi = Bugzilla->cgi;
|
|
my $template = Bugzilla->template;
|
|
my $vars = {};
|
|
# There is only one section about components in the documentation,
|
|
# so all actions point to the same page.
|
|
$vars->{'doc_section'} = 'components.html';
|
|
|
|
#
|
|
# Preliminary checks:
|
|
#
|
|
|
|
my $user = Bugzilla->login(LOGIN_REQUIRED);
|
|
|
|
print $cgi->header();
|
|
|
|
$user->in_group('editcomponents')
|
|
|| scalar(@{$user->get_products_by_permission('editcomponents')})
|
|
|| ThrowUserError("auth_failure", {group => "editcomponents",
|
|
action => "edit",
|
|
object => "components"});
|
|
|
|
#
|
|
# often used variables
|
|
#
|
|
my $product_name = trim($cgi->param('product') || '');
|
|
my $comp_name = trim($cgi->param('component') || '');
|
|
my $action = trim($cgi->param('action') || '');
|
|
my $showbugcounts = (defined $cgi->param('showbugcounts'));
|
|
my $token = $cgi->param('token');
|
|
|
|
#
|
|
# product = '' -> Show nice list of products
|
|
#
|
|
|
|
unless ($product_name) {
|
|
my $selectable_products = $user->get_selectable_products;
|
|
# If the user has editcomponents privs for some products only,
|
|
# we have to restrict the list of products to display.
|
|
unless ($user->in_group('editcomponents')) {
|
|
$selectable_products = $user->get_products_by_permission('editcomponents');
|
|
}
|
|
$vars->{'products'} = $selectable_products;
|
|
$vars->{'showbugcounts'} = $showbugcounts;
|
|
|
|
$template->process("admin/components/select-product.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
exit;
|
|
}
|
|
|
|
my $product = $user->check_can_admin_product($product_name);
|
|
|
|
#
|
|
# action='' -> Show nice list of components
|
|
#
|
|
|
|
unless ($action) {
|
|
$vars->{'showbugcounts'} = $showbugcounts;
|
|
$vars->{'product'} = $product;
|
|
$template->process("admin/components/list.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
exit;
|
|
}
|
|
|
|
#
|
|
# action='add' -> present form for parameters for new component
|
|
#
|
|
# (next action will be 'new')
|
|
#
|
|
|
|
if ($action eq 'add') {
|
|
$vars->{'token'} = issue_session_token('add_component');
|
|
$vars->{'product'} = $product;
|
|
$template->process("admin/components/create.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
exit;
|
|
}
|
|
|
|
#
|
|
# action='new' -> add component entered in the 'action=add' screen
|
|
#
|
|
|
|
if ($action eq 'new') {
|
|
check_token_data($token, 'add_component');
|
|
# Do the user matching
|
|
Bugzilla::User::match_field ($cgi, {
|
|
'initialowner' => { 'type' => 'single' },
|
|
'initialqacontact' => { 'type' => 'single' },
|
|
'initialcc' => { 'type' => 'multi' },
|
|
});
|
|
|
|
my $default_assignee = trim($cgi->param('initialowner') || '');
|
|
my $default_qa_contact = trim($cgi->param('initialqacontact') || '');
|
|
my $description = trim($cgi->param('description') || '');
|
|
my @initial_cc = $cgi->param('initialcc');
|
|
|
|
my $component =
|
|
Bugzilla::Component->create({ name => $comp_name,
|
|
product => $product,
|
|
description => $description,
|
|
initialowner => $default_assignee,
|
|
initialqacontact => $default_qa_contact,
|
|
initial_cc => \@initial_cc });
|
|
|
|
$vars->{'comp'} = $component;
|
|
$vars->{'product'} = $product;
|
|
delete_token($token);
|
|
|
|
$template->process("admin/components/created.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
exit;
|
|
}
|
|
|
|
#
|
|
# action='del' -> ask if user really wants to delete
|
|
#
|
|
# (next action would be 'delete')
|
|
#
|
|
|
|
if ($action eq 'del') {
|
|
$vars->{'token'} = issue_session_token('delete_component');
|
|
$vars->{'comp'} =
|
|
Bugzilla::Component->check({ product => $product, name => $comp_name });
|
|
$vars->{'product'} = $product;
|
|
|
|
$template->process("admin/components/confirm-delete.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
exit;
|
|
}
|
|
|
|
#
|
|
# action='delete' -> really delete the component
|
|
#
|
|
|
|
if ($action eq 'delete') {
|
|
check_token_data($token, 'delete_component');
|
|
my $component =
|
|
Bugzilla::Component->check({ product => $product, name => $comp_name });
|
|
|
|
$component->remove_from_db;
|
|
|
|
$vars->{'comp'} = $component;
|
|
$vars->{'product'} = $product;
|
|
delete_token($token);
|
|
|
|
$template->process("admin/components/deleted.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
exit;
|
|
}
|
|
|
|
#
|
|
# action='edit' -> present the edit component form
|
|
#
|
|
# (next action would be 'update')
|
|
#
|
|
|
|
if ($action eq 'edit') {
|
|
$vars->{'token'} = issue_session_token('edit_component');
|
|
my $component =
|
|
Bugzilla::Component->check({ product => $product, name => $comp_name });
|
|
$vars->{'comp'} = $component;
|
|
|
|
$vars->{'initial_cc_names'} =
|
|
join(', ', map($_->login, @{$component->initial_cc}));
|
|
|
|
$vars->{'product'} = $product;
|
|
|
|
$template->process("admin/components/edit.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
exit;
|
|
}
|
|
|
|
#
|
|
# action='update' -> update the component
|
|
#
|
|
|
|
if ($action eq 'update') {
|
|
check_token_data($token, 'edit_component');
|
|
# Do the user matching
|
|
Bugzilla::User::match_field ($cgi, {
|
|
'initialowner' => { 'type' => 'single' },
|
|
'initialqacontact' => { 'type' => 'single' },
|
|
'initialcc' => { 'type' => 'multi' },
|
|
});
|
|
|
|
my $comp_old_name = trim($cgi->param('componentold') || '');
|
|
my $default_assignee = trim($cgi->param('initialowner') || '');
|
|
my $default_qa_contact = trim($cgi->param('initialqacontact') || '');
|
|
my $description = trim($cgi->param('description') || '');
|
|
my @initial_cc = $cgi->param('initialcc');
|
|
|
|
my $component =
|
|
Bugzilla::Component->check({ product => $product, name => $comp_old_name });
|
|
|
|
$component->set_name($comp_name);
|
|
$component->set_description($description);
|
|
$component->set_default_assignee($default_assignee);
|
|
$component->set_default_qa_contact($default_qa_contact);
|
|
$component->set_cc_list(\@initial_cc);
|
|
my $changes = $component->update();
|
|
|
|
$vars->{'comp'} = $component;
|
|
$vars->{'product'} = $product;
|
|
$vars->{'changes'} = $changes;
|
|
delete_token($token);
|
|
|
|
$template->process("admin/components/updated.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
exit;
|
|
}
|
|
|
|
#
|
|
# No valid action found
|
|
#
|
|
ThrowUserError('no_valid_action', {'field' => "component"});
|