зеркало из https://github.com/mozilla/pjs.git
104 строки
3.4 KiB
Perl
Executable File
104 строки
3.4 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 the Bugzilla Testopia System.
|
|
#
|
|
# The Initial Developer of the Original Code is Greg Hendricks.
|
|
# Portions created by Greg Hendricks are Copyright (C) 2006
|
|
# Novell. All Rights Reserved.
|
|
#
|
|
# Contributor(s): Greg Hendricks <ghendricks@novell.com>
|
|
|
|
use strict;
|
|
use lib ".";
|
|
|
|
use Bugzilla;
|
|
use Bugzilla::Constants;
|
|
use Bugzilla::Error;
|
|
use Bugzilla::Util;
|
|
use Bugzilla::Testopia::TestPlan;
|
|
use Bugzilla::Testopia::Util;
|
|
|
|
local our $template = Bugzilla->template;
|
|
my $dbh = Bugzilla->dbh;
|
|
my $cgi = Bugzilla->cgi;
|
|
|
|
use vars qw($vars);
|
|
|
|
Bugzilla->login(LOGIN_REQUIRED);
|
|
|
|
print $cgi->header;
|
|
ThrowUserError("testopia-read-only") unless Bugzilla->user->in_group('admin');
|
|
|
|
local our $plan = Bugzilla::Testopia::TestPlan->new({});
|
|
my $action = $cgi->param('action') || '';
|
|
my $item = $cgi->param('item') || '';
|
|
|
|
if ($item eq 'plan_type'){
|
|
if( $action eq 'edit'){
|
|
my $type_id = $cgi->param('type_id');
|
|
detaint_natural($type_id);
|
|
$vars->{'type'} = $plan->plan_type_ref($type_id)
|
|
|| ThrowUserError("invalid-test-id-non-existent", {'id' => $type_id, 'type' => 'Plan Type'});
|
|
$template->process("testopia/admin/plantypes/edit.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
}
|
|
elsif ($action eq 'doedit'){
|
|
my $type_id = $cgi->param('type_id');
|
|
my $type_name = $cgi->param('name') || '';
|
|
my $type_desc = $cgi->param('description') || '';
|
|
|
|
ThrowUserError('testopia-missing-required-field', {'field' => 'name'}) if $type_name eq '';
|
|
detaint_natural($type_id);
|
|
ThrowUserError("invalid-test-id-non-existent",
|
|
{'id' => $type_id, 'type' => 'Plan Type'}) unless $plan->plan_type_ref($type_id);
|
|
trick_taint($type_name);
|
|
trick_taint($type_desc);
|
|
|
|
$plan->update_plan_type($type_id, $type_name, $type_desc);
|
|
display();
|
|
}
|
|
elsif ($action eq 'add'){
|
|
$template->process("testopia/admin/plantypes/add.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
}
|
|
elsif ($action eq 'doadd'){
|
|
my $type_name = $cgi->param('name') || '';
|
|
my $type_desc = $cgi->param('description') || '';
|
|
|
|
ThrowUserError('testopia-missing-required-field', {'field' => 'name'}) if $type_name eq '';
|
|
trick_taint($type_name);
|
|
trick_taint($type_desc);
|
|
ThrowUserError('testopia-name-not-unique',
|
|
{'object' => 'Plan Type', 'name' => $type_name}) if $plan->check_plan_type($type_name);
|
|
|
|
$plan->add_plan_type($type_name, $type_desc);
|
|
display();
|
|
}
|
|
else{
|
|
display();
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
$template->process("testopia/admin/show.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
}
|
|
|
|
sub display {
|
|
$vars->{'plan'} = $plan;
|
|
$template->process("testopia/admin/plantypes/show.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
}
|