Version.pm 6.07 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# -*- 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>
16
#                 Max Kanat-Alexander <mkanat@bugzilla.org>
17
#                 Frédéric Buclin <LpSolit@gmail.com>
18 19 20 21 22

use strict;

package Bugzilla::Version;

23 24
use base qw(Bugzilla::Object);

25
use Bugzilla::Install::Util qw(vers_cmp);
26 27 28
use Bugzilla::Util;
use Bugzilla::Error;

29 30
use Scalar::Util qw(blessed);

31 32 33 34 35 36
################################
#####   Initialization     #####
################################

use constant DEFAULT_VERSION => 'unspecified';

37
use constant DB_TABLE => 'versions';
38 39 40 41
use constant NAME_FIELD => 'value';
# This is "id" because it has to be filled in and id is probably the fastest.
# We do a custom sort in new_from_list below.
use constant LIST_ORDER => 'id';
42

43
use constant DB_COLUMNS => qw(
44 45 46
    id
    value
    product_id
47 48
);

49 50 51
use constant REQUIRED_FIELD_MAP => {
    product_id => 'product',
};
52 53 54 55 56 57 58

use constant UPDATE_COLUMNS => qw(
    value
);

use constant VALIDATORS => {
    product => \&_check_product,
59
    value   => \&_check_value,
60 61
};

62 63
use constant VALIDATOR_DEPENDENCIES => {
    value => ['product'],
64 65 66 67 68
};

################################
# Methods
################################
69 70

sub new {
71 72
    my $class = shift;
    my $param = shift;
73 74
    my $dbh = Bugzilla->dbh;

75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
    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 };
93 94
    }

95 96
    unshift @_, $param;
    return $class->SUPER::new(@_);
97 98
}

99 100 101 102 103 104
sub new_from_list {
    my $self = shift;
    my $list = $self->SUPER::new_from_list(@_);
    return [sort { vers_cmp(lc($a->name), lc($b->name)) } @$list];
}

105 106 107 108 109 110 111 112
sub run_create_validators {
    my $class  = shift;
    my $params = $class->SUPER::run_create_validators(@_);
    my $product = delete $params->{product};
    $params->{product_id} = $product->id;
    return $params;
}

113 114 115 116 117 118 119 120 121 122 123 124 125
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'};
}

126
sub update {
127
    my $self = shift;
128
    my ($changes, $old_self) = $self->SUPER::update(@_);
129

130 131 132 133 134
    if (exists $changes->{value}) {
        my $dbh = Bugzilla->dbh;
        $dbh->do('UPDATE bugs SET version = ?
                  WHERE version = ? AND product_id = ?',
                  undef, ($self->name, $old_self->name, $self->product_id));
135
    }
136
    return $changes;
137 138
}

139
sub remove_from_db {
140 141 142
    my $self = shift;
    my $dbh = Bugzilla->dbh;

143 144 145 146
    # The version cannot be removed if there are bugs
    # associated with it.
    if ($self->bug_count) {
        ThrowUserError("version_has_bugs", { nb => $self->bug_count });
147
    }
148
    $self->SUPER::remove_from_db();
149 150
}

151 152 153 154 155 156
###############################
#####     Accessors        ####
###############################

sub product_id { return $_[0]->{'product_id'}; }

157 158
sub product {
    my $self = shift;
159

160 161 162 163
    require Bugzilla::Product;
    $self->{'product'} ||= new Bugzilla::Product($self->product_id);
    return $self->{'product'};
}
164

165 166 167
################################
# Validators
################################
168

169 170 171
sub set_name { $_[0]->set('value', $_[1]); }

sub _check_value {
172 173
    my ($invocant, $name, undef, $params) = @_;
    my $product = blessed($invocant) ? $invocant->product : $params->{product};
174 175 176

    $name = trim($name);
    $name || ThrowUserError('version_blank_name');
177 178 179
    # Remove unprintable characters
    $name = clean_text($name);

180
    my $version = new Bugzilla::Version({ product => $product, name => $name });
181 182 183
    if ($version && (!ref $invocant || $version->id != $invocant->id)) {
        ThrowUserError('version_already_exists', { name    => $version->name,
                                                   product => $product->name });
184
    }
185 186
    return $name;
}
187

188 189
sub _check_product {
    my ($invocant, $product) = @_;
190 191
    $product || ThrowCodeError('param_required',
                    { function => "$invocant->create", param => 'product' });
192
    return Bugzilla->user->check_can_admin_product($product->name);
193 194
}

195 196 197 198 199 200 201 202 203 204 205 206
1;

__END__

=head1 NAME

Bugzilla::Version - Bugzilla product version class.

=head1 SYNOPSIS

    use Bugzilla::Version;

207
    my $version = new Bugzilla::Version({ name => $name, product => $product });
208

209
    my $value = $version->name;
210
    my $product_id = $version->product_id;
211
    my $product = $version->product;
212

213
    my $version = Bugzilla::Version->create(
214
        { value => $name, product => $product });
215

216 217
    $version->set_name($new_name);
    $version->update();
218

219
    $version->remove_from_db;
220

221 222
=head1 DESCRIPTION

223 224 225 226 227 228
Version.pm represents a Product Version object. It is an implementation
of L<Bugzilla::Object>, and thus provides all methods that
L<Bugzilla::Object> provides.

The methods that are specific to C<Bugzilla::Version> are listed
below.
229 230 231 232 233

=head1 METHODS

=over

234 235 236 237 238 239 240 241
=item C<bug_count()>

 Description: Returns the total of bugs that belong to the version.

 Params:      none.

 Returns:     Integer with the number of bugs.

242 243 244
=back

=cut