mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
367 lines
9.6 KiB
Perl
Executable File
367 lines
9.6 KiB
Perl
Executable File
#!/usr/bin/perl -wT
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
|
|
#
|
|
# This is a script to edit the target milestones. It is largely a copy of
|
|
# the editversions.cgi script, since the two fields were set up in a
|
|
# very similar fashion.
|
|
#
|
|
# (basically replace each occurance of 'milestone' with 'version', and
|
|
# you'll have the original script)
|
|
#
|
|
# Matt Masson <matthew@zeroknowledge.com>
|
|
#
|
|
# Contributors : Gavin Shelley <bugzilla@chimpychompy.org>
|
|
# Frédéric Buclin <LpSolit@gmail.com>
|
|
#
|
|
|
|
|
|
use strict;
|
|
use lib ".";
|
|
|
|
require "CGI.pl";
|
|
require "globals.pl";
|
|
|
|
use Bugzilla::Constants;
|
|
use Bugzilla::Config qw(:DEFAULT $datadir);
|
|
use Bugzilla::User;
|
|
use Bugzilla::Product;
|
|
use Bugzilla::Milestone;
|
|
use Bugzilla::Bug;
|
|
|
|
use vars qw($template $vars);
|
|
|
|
my $cgi = Bugzilla->cgi;
|
|
my $dbh = Bugzilla->dbh;
|
|
|
|
#
|
|
# Preliminary checks:
|
|
#
|
|
|
|
my $user = Bugzilla->login(LOGIN_REQUIRED);
|
|
my $whoid = $user->id;
|
|
|
|
print $cgi->header();
|
|
|
|
UserInGroup("editcomponents")
|
|
|| ThrowUserError("auth_failure", {group => "editcomponents",
|
|
action => "edit",
|
|
object => "milestones"});
|
|
|
|
#
|
|
# often used variables
|
|
#
|
|
my $product_name = trim($cgi->param('product') || '');
|
|
my $milestone_name = trim($cgi->param('milestone') || '');
|
|
my $sortkey = trim($cgi->param('sortkey') || 0);
|
|
my $action = trim($cgi->param('action') || '');
|
|
|
|
#
|
|
# product = '' -> Show nice list of products
|
|
#
|
|
|
|
unless ($product_name) {
|
|
|
|
my @products = Bugzilla::Product::get_all_products();
|
|
|
|
$vars->{'products'} = \@products;
|
|
$template->process("admin/milestones/select-product.html.tmpl",
|
|
$vars)
|
|
|| ThrowTemplateError($template->error());
|
|
|
|
exit;
|
|
}
|
|
|
|
my $product = Bugzilla::Product::check_product($product_name);
|
|
|
|
#
|
|
# action='' -> Show nice list of milestones
|
|
#
|
|
|
|
unless ($action) {
|
|
|
|
my @milestones =
|
|
Bugzilla::Milestone::get_milestones_by_product($product->id);
|
|
|
|
$vars->{'product'} = $product->name;
|
|
$vars->{'milestones'} = \@milestones;
|
|
$template->process("admin/milestones/list.html.tmpl",
|
|
$vars)
|
|
|| ThrowTemplateError($template->error());
|
|
|
|
exit;
|
|
}
|
|
|
|
|
|
|
|
|
|
#
|
|
# action='add' -> present form for parameters for new milestone
|
|
#
|
|
# (next action will be 'new')
|
|
#
|
|
|
|
if ($action eq 'add') {
|
|
|
|
$vars->{'product'} = $product->name;
|
|
$template->process("admin/milestones/create.html.tmpl",
|
|
$vars)
|
|
|| ThrowTemplateError($template->error());
|
|
|
|
exit;
|
|
}
|
|
|
|
|
|
|
|
#
|
|
# action='new' -> add milestone entered in the 'action=add' screen
|
|
#
|
|
|
|
if ($action eq 'new') {
|
|
|
|
$milestone_name || ThrowUserError('milestone_blank_name');
|
|
|
|
if (length($milestone_name) > 20) {
|
|
ThrowUserError('milestone_name_too_long',
|
|
{'name' => $milestone_name});
|
|
}
|
|
|
|
$sortkey = Bugzilla::Milestone::check_sort_key($milestone_name,
|
|
$sortkey);
|
|
|
|
my $milestone = new Bugzilla::Milestone($product->id,
|
|
$milestone_name);
|
|
|
|
if ($milestone) {
|
|
ThrowUserError('milestone_already_exists',
|
|
{'name' => $milestone->name,
|
|
'product' => $product->name});
|
|
}
|
|
|
|
# Add the new milestone
|
|
trick_taint($milestone_name);
|
|
$dbh->do('INSERT INTO milestones ( value, product_id, sortkey )
|
|
VALUES ( ?, ?, ? )',
|
|
undef, $milestone_name, $product->id, $sortkey);
|
|
|
|
# Make versioncache flush
|
|
unlink "$datadir/versioncache";
|
|
|
|
$vars->{'name'} = $milestone_name;
|
|
$vars->{'product'} = $product->name;
|
|
$template->process("admin/milestones/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') {
|
|
my $milestone = Bugzilla::Milestone::check_milestone($product,
|
|
$milestone_name);
|
|
|
|
$vars->{'name'} = $milestone->name;
|
|
$vars->{'product'} = $product->name;
|
|
|
|
# The default milestone cannot be deleted.
|
|
if ($product->default_milestone eq $milestone->name) {
|
|
ThrowUserError("milestone_is_default", $vars);
|
|
}
|
|
|
|
$vars->{'bug_count'} = $milestone->bug_count;
|
|
|
|
$template->process("admin/milestones/confirm-delete.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
exit;
|
|
}
|
|
|
|
|
|
|
|
#
|
|
# action='delete' -> really delete the milestone
|
|
#
|
|
|
|
if ($action eq 'delete') {
|
|
|
|
my $milestone =
|
|
Bugzilla::Milestone::check_milestone($product,
|
|
$milestone_name);
|
|
$vars->{'name'} = $milestone->name;
|
|
$vars->{'product'} = $product->name;
|
|
|
|
# The default milestone cannot be deleted.
|
|
if ($milestone->name eq $product->default_milestone) {
|
|
ThrowUserError("milestone_is_default", $vars);
|
|
}
|
|
|
|
# We don't want to delete bugs when deleting a milestone.
|
|
# Bugs concerned are reassigned to the default milestone.
|
|
my $bug_ids =
|
|
$dbh->selectcol_arrayref("SELECT bug_id FROM bugs
|
|
WHERE product_id = ? AND target_milestone = ?",
|
|
undef, ($product->id, $milestone->name));
|
|
|
|
my $nb_bugs = scalar(@$bug_ids);
|
|
if ($nb_bugs) {
|
|
my $timestamp = $dbh->selectrow_array("SELECT NOW()");
|
|
foreach my $bug_id (@$bug_ids) {
|
|
$dbh->do("UPDATE bugs SET target_milestone = ?,
|
|
delta_ts = ? WHERE bug_id = ?",
|
|
undef, ($product->default_milestone, $timestamp,
|
|
$bug_id));
|
|
# We have to update the 'bugs_activity' table too.
|
|
LogActivityEntry($bug_id, 'target_milestone',
|
|
$milestone->name,
|
|
$product->default_milestone,
|
|
$whoid, $timestamp);
|
|
}
|
|
}
|
|
|
|
$vars->{'bug_count'} = $nb_bugs;
|
|
|
|
$dbh->do("DELETE FROM milestones WHERE product_id = ? AND value = ?",
|
|
undef, ($product->id, $milestone->name));
|
|
|
|
unlink "$datadir/versioncache";
|
|
|
|
$template->process("admin/milestones/deleted.html.tmpl", $vars)
|
|
|| ThrowTemplateError($template->error());
|
|
exit;
|
|
}
|
|
|
|
|
|
|
|
#
|
|
# action='edit' -> present the edit milestone form
|
|
#
|
|
# (next action would be 'update')
|
|
#
|
|
|
|
if ($action eq 'edit') {
|
|
|
|
my $milestone =
|
|
Bugzilla::Milestone::check_milestone($product,
|
|
$milestone_name);
|
|
|
|
$vars->{'sortkey'} = $milestone->sortkey;
|
|
$vars->{'name'} = $milestone->name;
|
|
$vars->{'product'} = $product->name;
|
|
|
|
$template->process("admin/milestones/edit.html.tmpl",
|
|
$vars)
|
|
|| ThrowTemplateError($template->error());
|
|
|
|
exit;
|
|
}
|
|
|
|
|
|
|
|
#
|
|
# action='update' -> update the milestone
|
|
#
|
|
|
|
if ($action eq 'update') {
|
|
|
|
my $milestone_old_name = trim($cgi->param('milestoneold') || '');
|
|
my $milestone_old =
|
|
Bugzilla::Milestone::check_milestone($product,
|
|
$milestone_old_name);
|
|
|
|
if (length($milestone_name) > 20) {
|
|
ThrowUserError('milestone_name_too_long',
|
|
{'name' => $milestone_name});
|
|
}
|
|
|
|
$dbh->bz_lock_tables('bugs WRITE',
|
|
'milestones WRITE',
|
|
'products WRITE');
|
|
|
|
if ($sortkey ne $milestone_old->sortkey) {
|
|
$sortkey = Bugzilla::Milestone::check_sort_key($milestone_name,
|
|
$sortkey);
|
|
|
|
$dbh->do('UPDATE milestones SET sortkey = ?
|
|
WHERE product_id = ?
|
|
AND value = ?',
|
|
undef,
|
|
$sortkey,
|
|
$product->id,
|
|
$milestone_old->name);
|
|
|
|
unlink "$datadir/versioncache";
|
|
$vars->{'updated_sortkey'} = 1;
|
|
$vars->{'sortkey'} = $sortkey;
|
|
}
|
|
|
|
if ($milestone_name ne $milestone_old->name) {
|
|
unless ($milestone_name) {
|
|
ThrowUserError('milestone_blank_name');
|
|
}
|
|
my $milestone =
|
|
new Bugzilla::Milestone($product->id, $milestone_name);
|
|
if ($milestone) {
|
|
ThrowUserError('milestone_already_exists',
|
|
{'name' => $milestone->name,
|
|
'product' => $product->name});
|
|
}
|
|
|
|
trick_taint($milestone_name);
|
|
|
|
$dbh->do('UPDATE bugs
|
|
SET target_milestone = ?
|
|
WHERE target_milestone = ?
|
|
AND product_id = ?',
|
|
undef,
|
|
$milestone_name,
|
|
$milestone_old->name,
|
|
$product->id);
|
|
|
|
$dbh->do("UPDATE milestones
|
|
SET value = ?
|
|
WHERE product_id = ?
|
|
AND value = ?",
|
|
undef,
|
|
$milestone_name,
|
|
$product->id,
|
|
$milestone_old->name);
|
|
|
|
$dbh->do("UPDATE products
|
|
SET defaultmilestone = ?
|
|
WHERE id = ?
|
|
AND defaultmilestone = ?",
|
|
undef,
|
|
$milestone_name,
|
|
$product->id,
|
|
$milestone_old->name);
|
|
|
|
unlink "$datadir/versioncache";
|
|
|
|
$vars->{'updated_name'} = 1;
|
|
}
|
|
|
|
$dbh->bz_unlock_tables();
|
|
|
|
$vars->{'name'} = $milestone_name;
|
|
$vars->{'product'} = $product->name;
|
|
$template->process("admin/milestones/updated.html.tmpl",
|
|
$vars)
|
|
|| ThrowTemplateError($template->error());
|
|
|
|
exit;
|
|
}
|
|
|
|
|
|
#
|
|
# No valid action found
|
|
#
|
|
ThrowUserError('no_valid_action', {'field' => "target_milestone"});
|