2005-07-13 02:02:10 +04:00
|
|
|
# -*- 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 Bug Tracking System.
|
|
|
|
#
|
|
|
|
# Contributor(s): Tiago R. Mello <timello@async.com.br>
|
2006-12-19 09:41:46 +03:00
|
|
|
# Max Kanat-Alexander <mkanat@bugzilla.org>
|
2005-07-13 02:02:10 +04:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
package Bugzilla::Version;
|
|
|
|
|
2006-12-19 09:41:46 +03:00
|
|
|
use base qw(Bugzilla::Object);
|
|
|
|
|
2005-07-13 02:02:10 +04:00
|
|
|
use Bugzilla::Util;
|
|
|
|
use Bugzilla::Error;
|
|
|
|
|
|
|
|
################################
|
|
|
|
##### Initialization #####
|
|
|
|
################################
|
|
|
|
|
|
|
|
use constant DEFAULT_VERSION => 'unspecified';
|
|
|
|
|
2006-12-19 09:41:46 +03:00
|
|
|
use constant DB_TABLE => 'versions';
|
|
|
|
|
2005-07-13 02:02:10 +04:00
|
|
|
use constant DB_COLUMNS => qw(
|
2006-12-19 09:41:46 +03:00
|
|
|
id
|
|
|
|
value
|
|
|
|
product_id
|
2005-07-13 02:02:10 +04:00
|
|
|
);
|
|
|
|
|
2006-12-19 09:41:46 +03:00
|
|
|
use constant NAME_FIELD => 'value';
|
|
|
|
use constant LIST_ORDER => NAME_FIELD;
|
2005-07-13 02:02:10 +04:00
|
|
|
|
|
|
|
sub new {
|
2006-12-19 09:41:46 +03:00
|
|
|
my $class = shift;
|
|
|
|
my $param = shift;
|
2005-07-13 02:02:10 +04:00
|
|
|
my $dbh = Bugzilla->dbh;
|
|
|
|
|
2006-12-19 09:41:46 +03:00
|
|
|
my $product;
|
|
|
|
if (ref $param) {
|
|
|
|
$product = $param->{product};
|
|
|
|
my $name = $param->{name};
|
|
|
|
if (!defined $product) {
|
|
|
|
ThrowCodeError('bad_arg',
|
|
|
|
{argument => 'product',
|
|
|
|
function => "${class}::new"});
|
|
|
|
}
|
|
|
|
if (!defined $name) {
|
|
|
|
ThrowCodeError('bad_arg',
|
|
|
|
{argument => 'name',
|
|
|
|
function => "${class}::new"});
|
|
|
|
}
|
|
|
|
|
|
|
|
my $condition = 'product_id = ? AND value = ?';
|
|
|
|
my @values = ($product->id, $name);
|
|
|
|
$param = { condition => $condition, values => \@values };
|
2005-07-13 02:02:10 +04:00
|
|
|
}
|
|
|
|
|
2006-12-19 09:41:46 +03:00
|
|
|
unshift @_, $param;
|
|
|
|
return $class->SUPER::new(@_);
|
2005-07-13 02:02:10 +04:00
|
|
|
}
|
|
|
|
|
2005-07-19 04:05:11 +04:00
|
|
|
sub bug_count {
|
|
|
|
my $self = shift;
|
|
|
|
my $dbh = Bugzilla->dbh;
|
|
|
|
|
|
|
|
if (!defined $self->{'bug_count'}) {
|
|
|
|
$self->{'bug_count'} = $dbh->selectrow_array(qq{
|
|
|
|
SELECT COUNT(*) FROM bugs
|
|
|
|
WHERE product_id = ? AND version = ?}, undef,
|
|
|
|
($self->product_id, $self->name)) || 0;
|
|
|
|
}
|
|
|
|
return $self->{'bug_count'};
|
|
|
|
}
|
|
|
|
|
2006-07-19 03:50:32 +04:00
|
|
|
sub remove_from_db {
|
|
|
|
my $self = shift;
|
|
|
|
my $dbh = Bugzilla->dbh;
|
|
|
|
|
|
|
|
# The version cannot be removed if there are bugs
|
|
|
|
# associated with it.
|
|
|
|
if ($self->bug_count) {
|
|
|
|
ThrowUserError("version_has_bugs", { nb => $self->bug_count });
|
|
|
|
}
|
|
|
|
|
|
|
|
$dbh->do(q{DELETE FROM versions WHERE product_id = ? AND value = ?},
|
|
|
|
undef, ($self->product_id, $self->name));
|
|
|
|
}
|
|
|
|
|
|
|
|
sub update {
|
|
|
|
my $self = shift;
|
|
|
|
my ($name, $product) = @_;
|
|
|
|
my $dbh = Bugzilla->dbh;
|
|
|
|
|
|
|
|
$name || ThrowUserError('version_not_specified');
|
|
|
|
|
|
|
|
# Remove unprintable characters
|
|
|
|
$name = clean_text($name);
|
|
|
|
|
|
|
|
return 0 if ($name eq $self->name);
|
2006-12-19 09:41:46 +03:00
|
|
|
my $version = new Bugzilla::Version({ product => $product, name => $name });
|
2006-07-19 03:50:32 +04:00
|
|
|
|
|
|
|
if ($version) {
|
|
|
|
ThrowUserError('version_already_exists',
|
|
|
|
{'name' => $version->name,
|
|
|
|
'product' => $product->name});
|
|
|
|
}
|
|
|
|
|
|
|
|
trick_taint($name);
|
|
|
|
$dbh->do("UPDATE bugs SET version = ?
|
|
|
|
WHERE version = ? AND product_id = ?", undef,
|
|
|
|
($name, $self->name, $self->product_id));
|
|
|
|
|
|
|
|
$dbh->do("UPDATE versions SET value = ?
|
|
|
|
WHERE product_id = ? AND value = ?", undef,
|
|
|
|
($name, $self->product_id, $self->name));
|
|
|
|
|
|
|
|
$self->{'value'} = $name;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-07-13 02:02:10 +04:00
|
|
|
###############################
|
|
|
|
##### Accessors ####
|
|
|
|
###############################
|
|
|
|
|
2005-07-19 04:05:11 +04:00
|
|
|
sub name { return $_[0]->{'value'}; }
|
2005-07-13 02:02:10 +04:00
|
|
|
sub product_id { return $_[0]->{'product_id'}; }
|
|
|
|
|
|
|
|
###############################
|
|
|
|
##### Subroutines ###
|
|
|
|
###############################
|
|
|
|
|
2005-08-13 16:27:04 +04:00
|
|
|
sub check_version {
|
2005-07-19 04:05:11 +04:00
|
|
|
my ($product, $version_name) = @_;
|
|
|
|
|
|
|
|
$version_name || ThrowUserError('version_not_specified');
|
2006-12-19 09:41:46 +03:00
|
|
|
my $version = new Bugzilla::Version(
|
|
|
|
{ product => $product, name => $version_name });
|
2005-07-19 04:05:11 +04:00
|
|
|
unless ($version) {
|
|
|
|
ThrowUserError('version_not_valid',
|
|
|
|
{'product' => $product->name,
|
|
|
|
'version' => $version_name});
|
2005-07-13 02:02:10 +04:00
|
|
|
}
|
2005-07-19 04:05:11 +04:00
|
|
|
return $version;
|
2005-07-13 02:02:10 +04:00
|
|
|
}
|
|
|
|
|
2006-07-19 03:50:32 +04:00
|
|
|
sub create {
|
|
|
|
my ($name, $product) = @_;
|
|
|
|
my $dbh = Bugzilla->dbh;
|
|
|
|
|
|
|
|
# Cleanups and validity checks
|
|
|
|
$name || ThrowUserError('version_blank_name');
|
|
|
|
|
|
|
|
# Remove unprintable characters
|
|
|
|
$name = clean_text($name);
|
|
|
|
|
2006-12-19 09:41:46 +03:00
|
|
|
my $version = new Bugzilla::Version({ product => $product, name => $name });
|
2006-07-19 03:50:32 +04:00
|
|
|
if ($version) {
|
|
|
|
ThrowUserError('version_already_exists',
|
|
|
|
{'name' => $version->name,
|
|
|
|
'product' => $product->name});
|
|
|
|
}
|
|
|
|
|
|
|
|
# Add the new version
|
|
|
|
trick_taint($name);
|
|
|
|
$dbh->do(q{INSERT INTO versions (value, product_id)
|
|
|
|
VALUES (?, ?)}, undef, ($name, $product->id));
|
|
|
|
|
2006-12-19 09:41:46 +03:00
|
|
|
return new Bugzilla::Version($dbh->bz_last_key('versions', 'id'));
|
2006-07-19 03:50:32 +04:00
|
|
|
}
|
|
|
|
|
2005-07-13 02:02:10 +04:00
|
|
|
1;
|
|
|
|
|
|
|
|
__END__
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
Bugzilla::Version - Bugzilla product version class.
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
use Bugzilla::Version;
|
|
|
|
|
|
|
|
my $version = new Bugzilla::Version(1, 'version_value');
|
|
|
|
|
|
|
|
my $product_id = $version->product_id;
|
|
|
|
my $value = $version->value;
|
|
|
|
|
2006-07-19 03:50:32 +04:00
|
|
|
$version->remove_from_db;
|
|
|
|
|
|
|
|
my $updated = $version->update($version_name, $product);
|
|
|
|
|
2005-07-13 02:02:10 +04:00
|
|
|
my $version = $hash_ref->{'version_value'};
|
|
|
|
|
2005-07-19 04:05:11 +04:00
|
|
|
my $version = Bugzilla::Version::check_version($product_obj,
|
|
|
|
'acme_version');
|
|
|
|
|
2006-07-19 03:50:32 +04:00
|
|
|
my $version = Bugzilla::Version::create($version_name, $product);
|
|
|
|
|
2005-07-13 02:02:10 +04:00
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
Version.pm represents a Product Version object.
|
|
|
|
|
|
|
|
=head1 METHODS
|
|
|
|
|
|
|
|
=over
|
|
|
|
|
|
|
|
=item C<new($product_id, $value)>
|
|
|
|
|
|
|
|
Description: The constructor is used to load an existing version
|
|
|
|
by passing a product id and a version value.
|
|
|
|
|
2005-07-19 04:05:11 +04:00
|
|
|
Params: $product_id - Integer with a product id.
|
2005-07-13 02:02:10 +04:00
|
|
|
$value - String with a version value.
|
|
|
|
|
|
|
|
Returns: A Bugzilla::Version object.
|
|
|
|
|
2005-07-19 04:05:11 +04:00
|
|
|
=item C<bug_count()>
|
|
|
|
|
|
|
|
Description: Returns the total of bugs that belong to the version.
|
|
|
|
|
|
|
|
Params: none.
|
|
|
|
|
|
|
|
Returns: Integer with the number of bugs.
|
|
|
|
|
2006-07-19 03:50:32 +04:00
|
|
|
=item C<remove_from_db()>
|
|
|
|
|
|
|
|
Description: Removes the version from the database.
|
|
|
|
|
|
|
|
Params: none.
|
|
|
|
|
|
|
|
Retruns: none.
|
|
|
|
|
|
|
|
=item C<update($name, $product)>
|
|
|
|
|
|
|
|
Description: Update the value of the version.
|
|
|
|
|
|
|
|
Params: $name - String with the new version value.
|
|
|
|
$product - Bugzilla::Product object the version belongs to.
|
|
|
|
|
|
|
|
Returns: An integer - 1 if the version has been updated, else 0.
|
|
|
|
|
2005-07-13 02:02:10 +04:00
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 SUBROUTINES
|
|
|
|
|
|
|
|
=over
|
|
|
|
|
2005-07-19 04:05:11 +04:00
|
|
|
=item C<check_version($product, $version_name)>
|
|
|
|
|
|
|
|
Description: Checks if the version name exists for the product name.
|
|
|
|
|
|
|
|
Params: $product - A Bugzilla::Product object.
|
|
|
|
$version_name - String with a version name.
|
2005-07-13 02:02:10 +04:00
|
|
|
|
2005-07-19 04:05:11 +04:00
|
|
|
Returns: Bugzilla::Version object.
|
2005-07-13 02:02:10 +04:00
|
|
|
|
2006-07-19 03:50:32 +04:00
|
|
|
=item C<create($version_name, $product)>
|
|
|
|
|
|
|
|
Description: Create a new version for the given product.
|
|
|
|
|
|
|
|
Params: $version_name - String with a version value.
|
|
|
|
$product - A Bugzilla::Product object.
|
|
|
|
|
|
|
|
Returns: A Bugzilla::Version object.
|
|
|
|
|
2005-07-13 02:02:10 +04:00
|
|
|
=back
|
|
|
|
|
|
|
|
=cut
|