#!/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 use strict; use lib "."; use Bugzilla; use Bugzilla::Config; use Bugzilla::Error; use Bugzilla::Constants; use Bugzilla::Util; use Bugzilla::Testopia::Util; use Bugzilla::Testopia::Search; use Bugzilla::Testopia::Table; my $vars = {}; my $cgi = Bugzilla->cgi; my $template = Bugzilla->template; my $query_limit = 5000; Bugzilla->login(LOGIN_REQUIRED); my $serverpush = support_server_push($cgi); if ($serverpush) { print $cgi->multipart_init; print $cgi->multipart_start; # Under mod_perl, flush stdout so that the page actually shows up. if ($ENV{MOD_PERL}) { require Apache2::RequestUtil; Apache2::RequestUtil->request->rflush(); } $template->process("list/server-push.html.tmpl", $vars) || ThrowTemplateError($template->error()); } else { print $cgi->header; } # prevent DOS attacks from multiple refreshes of large data $::SIG{TERM} = 'DEFAULT'; $::SIG{PIPE} = 'DEFAULT'; my $action = $cgi->param('action') || ''; if ($action eq 'Commit'){ # Get the list of checked items. This way we don't have to cycle through # every test case, only the ones that are checked. my $reg = qr/p_([\d]+)/; my $params = join(" ", $cgi->param()); my @params = $cgi->param(); unless ($params =~ $reg){ print $cgi->multipart_end if $serverpush; ThrowUserError('testopia-none-selected', {'object' => 'plan'}); } my $progress_interval = 250; my $i = 0; my $total = scalar @params; my @uneditable; foreach my $p ($cgi->param()){ my $plan = Bugzilla::Testopia::TestPlan->new($1) if $p =~ $reg; next unless $plan; $i++; if ($i % $progress_interval == 0 && $serverpush){ print $cgi->multipart_end; print $cgi->multipart_start; $vars->{'complete'} = $i; $vars->{'total'} = $total; $template->process("testopia/progress.html.tmpl", $vars) || ThrowTemplateError($template->error()); } unless ($plan->canedit){ push @uneditable, $p; next; } my $plan_type = $cgi->param('plan_type') == -1 ? $plan->type_id : $cgi->param('plan_type'); my $product = $cgi->param('product_id') == -1 ? $plan->product_id : $cgi->param('product_id'); my $prodver = $cgi->param('prod_version') == -1 ? $plan->product_version : $cgi->param('prod_version'); # We use placeholders so trick_taint is ok. trick_taint($prodver) if $prodver; detaint_natural($product); detaint_natural($plan_type); my %newvalues = ( 'type_id' => $plan_type, 'product_id' => $product, 'default_product_version' => $prodver, ); $plan->update(\%newvalues); $plan->toggle_archive if $cgi->param('togglearch'); if ($cgi->param('addtags')){ foreach my $name (split(/[,]+/, $cgi->param('addtags'))){ trick_taint($name); my $tag = Bugzilla::Testopia::TestTag->new({'tag_name' => $name}); my $tag_id = $tag->store; if ($cgi->param('tag_action') eq 'add'){ $plan->add_tag($tag_id); } else { $plan->remove_tag($tag_id); } } } } if ($serverpush && !$cgi->param('debug')) { print $cgi->multipart_end; print $cgi->multipart_start; } my $plan = Bugzilla::Testopia::TestPlan->new({}); my $updated = $i - scalar @uneditable; $vars->{'plan'} = $plan; $vars->{'title'} = "Update Successful"; $vars->{'tr_error'} = "You did not have rights to edit ". scalar @uneditable . "plans" if scalar @uneditable > 0; $vars->{'tr_message'} = "$i Test Plan(s) Updated" if $i; $vars->{'current_tab'} = 'plan'; $template->process("testopia/search/advanced.html.tmpl", $vars) || ThrowTemplateError($template->error()); print $cgi->multipart_final if $serverpush; exit; } else { $vars->{'qname'} = $cgi->param('qname') if $cgi->param('qname'); $cgi->param('current_tab', 'plan'); my $search = Bugzilla::Testopia::Search->new($cgi); my $table = Bugzilla::Testopia::Table->new('plan', 'tr_list_plans.cgi', $cgi, undef, $search->query); if ($table->view_count > $query_limit){ print $cgi->multipart_end if $serverpush; ThrowUserError('testopia-query-too-large', {'limit' => $query_limit}); } my $p = Bugzilla::Testopia::TestPlan->new({}); my $product_list = Bugzilla->user->get_selectable_products; my $prodver_list = []; my $type_list = $p->get_plan_types; unshift @{$product_list}, {'id' => -1, 'name' => "--Do Not Change--"}; unshift @{$prodver_list}, {'id' => -1, 'name' => "--Do Not Change--"}; unshift @{$type_list}, {'id' => -1, 'name' => "--Do Not Change--"}; $vars->{'product_list'} = $product_list; $vars->{'prodver_list'} = $prodver_list; $vars->{'type_list'} = $type_list; $vars->{'fullwidth'} = 1; #novellonly $vars->{'dotweak'} = Bugzilla->user->in_group('Testers'); $vars->{'table'} = $table; if ($serverpush && !$cgi->param('debug')) { print $cgi->multipart_end; print $cgi->multipart_start; } $template->process("testopia/plan/list.html.tmpl", $vars) || ThrowTemplateError($template->error()); print $cgi->multipart_final if $serverpush; }