From e18c6fd41b16c91ccb6fbca903b0716af37f27c2 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Wed, 13 Oct 1999 06:00:31 +0000 Subject: Patch by Holger Schurig -- rewriting and enhancing the ability to edit components, products, and versions. Yay! --- editproducts.cgi | 665 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 665 insertions(+) create mode 100755 editproducts.cgi (limited to 'editproducts.cgi') diff --git a/editproducts.cgi b/editproducts.cgi new file mode 100755 index 000000000..be492ce01 --- /dev/null +++ b/editproducts.cgi @@ -0,0 +1,665 @@ +#!/usr/bonsaitools/bin/perl -w +# -*- Mode: perl; indent-tabs-mode: nil -*- +# +# The contents of this file are subject to the Mozilla Public License +# Version 1.0 (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. +# +# +# Direct any questions on this source code to +# +# Holger Schurig + +use diagnostics; +use strict; + +require "CGI.pl"; +require "globals.pl"; + + + + +# TestProduct: just returns if the specified product does exists +# CheckProduct: same check, optionally emit an error text + +sub TestProduct ($) +{ + my $prod = shift; + + # does the product exist? + SendSQL("SELECT product + FROM products + WHERE product=" . SqlQuote($prod)); + return FetchOneColumn(); +} + +sub CheckProduct ($) +{ + my $prod = shift; + + # do we have a product? + unless ($prod) { + print "Sorry, you haven't specified a product."; + PutTrailer(); + exit; + } + + unless (TestProduct $prod) { + print "Sorry, product '$prod' does not exist."; + PutTrailer(); + exit; + } +} + + +# +# Displays the form to edit a products parameters +# + +sub EmitFormElements ($$$$) +{ + my ($product, $description, $milestoneurl, $disallownew) = @_; + + print " Product:\n"; + print " \n"; + print "\n"; + + print " Description:\n"; + print " \n"; + + if (Param('usetargetmilestone')) { + print "\n"; + print " Milestone URL:\n"; + print " \n"; + } + + print "\n"; + print " Closed for bug entry:\n"; + my $closed = $disallownew ? "CHECKED" : ""; + print " \n"; +} + + +# +# Displays a text like "a.", "a or b.", "a, b or c.", "a, b, c or d." +# + +sub PutTrailer (@) +{ + my (@links) = ("Back to the query page", @_); + + my $count = $#links; + my $num = 0; + print "

\n"; + foreach (@links) { + print $_; + if ($num == $count) { + print ".\n"; + } + elsif ($num == $count-1) { + print " or "; + } + else { + print ", "; + } + $num++; + } + print "\n\n"; +} + + + + + + + +# +# Preliminary checks: +# + +confirm_login(); + +print "Content-type: text/html\n\n"; + +unless (UserInGroup("editcomponents")) { + PutHeader("Not allowed"); + print "Sorry, you aren't a member of the 'editcomponents' group.\n"; + print "And so, you aren't allowed to add, modify or delete products.\n"; + PutTrailer(); + exit; +} + + + +# +# often used variables +# +my $product = trim($::FORM{product} || ''); +my $action = trim($::FORM{action} || ''); +my $localtrailer = "edit more products"; + + + +# +# action='' -> Show nice list of products +# + +unless ($action) { + PutHeader("Select product"); + + SendSQL("SELECT products.product,description,disallownew,COUNT(bug_id) + FROM products LEFT JOIN bugs + ON products.product=bugs.product + GROUP BY products.product + ORDER BY products.product"); + print "\n"; + print " \n"; + print " \n"; + print " \n"; + print " \n"; + print " \n"; + print ""; + while ( MoreSQLData() ) { + my ($product, $description, $disallownew, $bugs) = FetchSQLData(); + $description ||= "missing"; + $disallownew = $disallownew ? 'closed' : 'open'; + $bugs ||= 'none'; + print "\n"; + print " \n"; + print " \n"; + print " \n"; + print " \n"; + print " \n"; + print ""; + } + print "\n"; + print " \n"; + print " \n"; + print "
Edit product ...DescriptionStatusBugsAction
$product$description$disallownew$bugsDelete
Add a new productAdd
\n"; + + PutTrailer(); + exit; +} + + + + +# +# action='add' -> present form for parameters for new product +# +# (next action will be 'new') +# + +if ($action eq 'add') { + PutHeader("Add product"); + + #print "This page lets you add a new product to bugzilla.\n"; + + print "

\n"; + print "\n"; + + EmitFormElements('', '', '', 0); + + print "\n"; + print " \n"; + print " \n"; + + print "
Version:
\n
\n"; + print "\n"; + print "\n"; + print "
"; + + my $other = $localtrailer; + $other =~ s/more/other/; + PutTrailer($other); + exit; +} + + + +# +# action='new' -> add product entered in the 'action=add' screen +# + +if ($action eq 'new') { + PutHeader("Adding new product"); + + # Cleanups and valididy checks + + unless ($product) { + print "You must enter a name for the new product. Please press\n"; + print "Back and try again.\n"; + PutTrailer($localtrailer); + exit; + } + if (TestProduct($product)) { + print "The product '$product' already exists. Please press\n"; + print "Back and try again.\n"; + PutTrailer($localtrailer); + exit; + } + + my $version = trim($::FORM{version} || ''); + + if ($version eq '') { + print "You must enter a version for product '$product'. Please press\n"; + print "Back and try again.\n"; + PutTrailer($localtrailer); + exit; + } + + my $description = trim($::FORM{description} || ''); + my $milestoneurl = trim($::FORM{milestoneurl} || ''); + my $disallownew = 0; + $disallownew = 1 if $::FORM{disallownew}; + + # Add the new product. + SendSQL("INSERT INTO products ( " . + "product, description, milestoneurl, disallownew" . + " ) VALUES ( " . + SqlQuote($product) . "," . + SqlQuote($description) . "," . + SqlQuote($milestoneurl) . "," . + $disallownew . ")" ); + SendSQL("INSERT INTO versions ( " . + "value, program" . + " ) VALUES ( " . + SqlQuote($version) . "," . + SqlQuote($product) . ")" ); + + # Make versioncache flush + unlink "data/versioncache"; + + print "OK, done.

\n"; + PutTrailer($localtrailer, "add components to this new product."); + exit; +} + + + +# +# action='del' -> ask if user really wants to delete +# +# (next action would be 'delete') +# + +if ($action eq 'del') { + PutHeader("Delete product"); + CheckProduct($product); + + # display some data about the product + SendSQL("SELECT description, milestoneurl, disallownew + FROM products + WHERE product=" . SqlQuote($product)); + my ($description, $milestoneurl, $disallownew) = FetchSQLData(); + $description ||= "description missing"; + $disallownew = $disallownew ? 'closed' : 'open'; + + print "\n"; + print "\n"; + print " \n"; + print " \n"; + + print "\n"; + print " \n"; + print " \n"; + + print "\n"; + print " \n"; + print " \n"; + + if (Param('usetargetmilestone')) { + print "\n"; + print " \n"; + print " \n"; + } + + print "\n"; + print " \n"; + print " \n"; + + print "\n"; + print " \n"; + print " \n\n"; + print " \n"; + print " \n\n"; + print " \n"; + print " \n
PartValue
Product:$product
Description:$description
Milestone URL:$milestoneurl
Closed for bugs:$disallownew
Components:"; + SendSQL("SELECT value,description + FROM components + WHERE program=" . SqlQuote($product)); + if (MoreSQLData()) { + print ""; + while ( MoreSQLData() ) { + my ($component, $description) = FetchSQLData(); + $description ||= "description missing"; + print ""; + print "\n"; + } + print "
$component:$description
\n"; + } else { + print "missing"; + } + + print "
Versions:"; + SendSQL("SELECT value + FROM versions + WHERE program=" . SqlQuote($product) . " + ORDER BY value"); + if (MoreSQLData()) { + my $br = 0; + while ( MoreSQLData() ) { + my ($version) = FetchSQLData(); + print "
" if $br; + print $version; + $br = 1; + } + } else { + print "missing"; + } + + + print "
Bugs:"; + SendSQL("SELECT count(bug_id),product + FROM bugs + GROUP BY product + HAVING product=" . SqlQuote($product)); + my $bugs = FetchOneColumn(); + print $bugs || 'none'; + + + print "
"; + + print "

Confirmation

\n"; + + if ($bugs) { + if (!Param("allowbugdeletion")) { + print "Sorry, there are $bugs bugs outstanding for this product. +You must reassign those bugs to another product before you can delete this +one."; + PutTrailer($localtrailer); + exit; + } + print "
\n", + "There are bugs entered for this product! When you delete this ", + "product, all stored bugs will be deleted, too. ", + "You could not even see a bug history anymore!\n", + "
\n"; + } + + print "

Do you really want to delete this product?

\n"; + print "

\n"; + print "\n"; + print "\n"; + print "\n"; + print "
"; + + PutTrailer($localtrailer); + exit; +} + + + +# +# action='delete' -> really delete the product +# + +if ($action eq 'delete') { + PutHeader("Deleting product"); + CheckProduct($product); + + # lock the tables before we start to change everything: + + SendSQL("LOCK TABLES attachments WRITE, + bugs WRITE, + bugs_activity WRITE, + components WRITE, + dependencies WRITE, + versions WRITE, + products WRITE"); + + # According to MySQL doc I cannot do a DELETE x.* FROM x JOIN Y, + # so I have to iterate over bugs and delete all the indivial entries + # in bugs_activies and attachments. + + SendSQL("SELECT bug_id + FROM bugs + WHERE product=" . SqlQuote($product)); + while (MoreSQLData()) { + my $bugid = FetchOneColumn(); + + my $query = $::db->query("DELETE FROM attachments WHERE bug_id=$bugid") + or die "$::db_errstr"; + $query = $::db->query("DELETE FROM bugs_activity WHERE bug_id=$bugid") + or die "$::db_errstr"; + $query = $::db->query("DELETE FROM dependencies WHERE blocked=$bugid") + or die "$::db_errstr"; + } + print "Attachments, bug activity and dependencies deleted.
\n"; + + + # Deleting the rest is easier: + + SendSQL("DELETE FROM bugs + WHERE product=" . SqlQuote($product)); + print "Bugs deleted.
\n"; + + SendSQL("DELETE FROM components + WHERE program=" . SqlQuote($product)); + print "Components deleted.
\n"; + + SendSQL("DELETE FROM versions + WHERE program=" . SqlQuote($product)); + print "Versions deleted.

\n"; + + SendSQL("DELETE FROM products + WHERE product=" . SqlQuote($product)); + print "Product '$product' deleted.
\n"; + SendSQL("UNLOCK TABLES"); + + unlink "data/versioncache"; + PutTrailer($localtrailer); + exit; +} + + + +# +# action='edit' -> present the edit products from +# +# (next action would be 'update') +# + +if ($action eq 'edit') { + PutHeader("Edit product"); + CheckProduct($product); + + # get data of product + SendSQL("SELECT description,milestoneurl,disallownew + FROM products + WHERE product=" . SqlQuote($product)); + my ($description, $milestoneurl, $disallownew) = FetchSQLData(); + + print "

\n"; + print "\n"; + + EmitFormElements($product, $description, $milestoneurl, $disallownew); + + print "\n"; + print " \n"; + print " \n\n"; + print " \n"; + print " \n\n"; + print " \n"; + print " \n
Edit components:"; + SendSQL("SELECT value,description + FROM components + WHERE program=" . SqlQuote($product)); + if (MoreSQLData()) { + print ""; + while ( MoreSQLData() ) { + my ($component, $description) = FetchSQLData(); + $description ||= "description missing"; + print ""; + print "\n"; + } + print "
$component:$description
\n"; + } else { + print "missing"; + } + + + print "
Edit versions:"; + SendSQL("SELECT value + FROM versions + WHERE program=" . SqlQuote($product) . " + ORDER BY value"); + if (MoreSQLData()) { + my $br = 0; + while ( MoreSQLData() ) { + my ($version) = FetchSQLData(); + print "
" if $br; + print $version; + $br = 1; + } + } else { + print "missing"; + } + + + print "
Bugs:"; + SendSQL("SELECT count(bug_id),product + FROM bugs + GROUP BY product + HAVING product=" . SqlQuote($product)); + my $bugs = ''; + $bugs = FetchOneColumn() if MoreSQLData(); + print $bugs || 'none'; + + print "
\n"; + + print "\n"; + print "\n"; + print "\n"; + print "\n"; + print "\n"; + print "\n"; + + print "
"; + + my $x = $localtrailer; + $x =~ s/more/other/; + PutTrailer($x); + exit; +} + + + +# +# action='update' -> update the product +# + +if ($action eq 'update') { + PutHeader("Update product"); + + my $productold = trim($::FORM{productold} || ''); + my $description = trim($::FORM{description} || ''); + my $descriptionold = trim($::FORM{descriptionold} || ''); + my $disallownew = trim($::FORM{disallownew} || ''); + my $disallownewold = trim($::FORM{disallownewold} || ''); + my $milestoneurl = trim($::FORM{milestoneurl} || ''); + my $milestoneurlold = trim($::FORM{milestoneurlold} || ''); + + CheckProduct($productold); + + # Note that the order of this tests is important. If you change + # them, be sure to test for WHERE='$product' or WHERE='$productold' + + SendSQL("LOCK TABLES bugs WRITE, + components WRITE, + products WRITE, + versions WRITE"); + + if ($disallownew != $disallownewold) { + $disallownew ||= 0; + SendSQL("UPDATE products + SET disallownew=$disallownew + WHERE product=" . SqlQuote($productold)); + print "Updated bug submit status.
\n"; + } + + if ($description ne $descriptionold) { + unless ($description) { + print "Sorry, I can't delete the description."; + PutTrailer($localtrailer); + SendSQL("UNLOCK TABLES"); + exit; + } + SendSQL("UPDATE products + SET description=" . SqlQuote($description) . " + WHERE product=" . SqlQuote($productold)); + print "Updated description.
\n"; + } + + if (Param('usetargetmilestone') && $milestoneurl ne $milestoneurlold) { + SendSQL("UPDATE products + SET milestoneurl=" . SqlQuote($milestoneurl) . " + WHERE product=" . SqlQuote($productold)); + print "Updated mile stone URL.
\n"; + } + + + if ($product ne $productold) { + unless ($product) { + print "Sorry, I can't delete the product name."; + PutTrailer($localtrailer); + SendSQL("UNLOCK TABLES"); + exit; + } + if (TestProduct($product)) { + print "Sorry, product name '$product' is already in use."; + PutTrailer($localtrailer); + SendSQL("UNLOCK TABLES"); + exit; + } + + SendSQL("UPDATE bugs + SET product=" . SqlQuote($product) . " + WHERE product=" . SqlQuote($productold)); + SendSQL("UPDATE components + SET program=" . SqlQuote($product) . " + WHERE program=" . SqlQuote($productold)); + SendSQL("UPDATE products + SET product=" . SqlQuote($product) . " + WHERE product=" . SqlQuote($productold)); + SendSQL("UPDATE versions + SET program='$product' + WHERE program=" . SqlQuote($productold)); + + unlink "data/versioncache"; + print "Updated product name.
\n"; + } + SendSQL("UNLOCK TABLES"); + + PutTrailer($localtrailer); + exit; +} + + + +# +# No valid action found +# + +PutHeader("Error"); +print "I don't have a clue what you want.
\n"; + +foreach ( sort keys %::FORM) { + print "$_: $::FORM{$_}
\n"; +} -- cgit v1.2.3-24-g4f1b