Version.pm 6.44 KB
Newer Older
1 2 3
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
#
5 6
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
7 8 9

package Bugzilla::Version;

10 11 12
use 5.10.1;
use strict;

13
use parent qw(Bugzilla::Object);
14

15
use Bugzilla::Install::Util qw(vers_cmp);
16 17 18
use Bugzilla::Util;
use Bugzilla::Error;

19 20
use Scalar::Util qw(blessed);

21 22 23 24 25 26
################################
#####   Initialization     #####
################################

use constant DEFAULT_VERSION => 'unspecified';

27
use constant DB_TABLE => 'versions';
28 29 30 31
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';
32

33
use constant DB_COLUMNS => qw(
34 35 36
    id
    value
    product_id
37
    isactive
38 39
);

40 41 42
use constant REQUIRED_FIELD_MAP => {
    product_id => 'product',
};
43 44 45

use constant UPDATE_COLUMNS => qw(
    value
46
    isactive
47 48 49
);

use constant VALIDATORS => {
50 51 52
    product  => \&_check_product,
    value    => \&_check_value,
    isactive => \&Bugzilla::Object::check_boolean,
53 54
};

55 56
use constant VALIDATOR_DEPENDENCIES => {
    value => ['product'],
57 58 59 60 61
};

################################
# Methods
################################
62 63

sub new {
64 65
    my $class = shift;
    my $param = shift;
66 67
    my $dbh = Bugzilla->dbh;

68
    my $product;
69
    if (ref $param and !defined $param->{id}) {
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
        $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 };
86 87
    }

88 89
    unshift @_, $param;
    return $class->SUPER::new(@_);
90 91
}

92 93 94 95 96 97
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];
}

98 99 100 101 102 103 104 105
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;
}

106 107 108 109 110 111 112 113 114 115 116 117 118
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'};
}

119
sub update {
120
    my $self = shift;
121
    my ($changes, $old_self) = $self->SUPER::update(@_);
122

123 124 125 126 127
    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));
128
    }
129
    return $changes;
130 131
}

132
sub remove_from_db {
133 134 135
    my $self = shift;
    my $dbh = Bugzilla->dbh;

136 137 138 139 140 141 142
    $dbh->bz_start_transaction();

    # Products must have at least one version.
    if (scalar(@{$self->product->versions}) == 1) {
        ThrowUserError('version_is_last', { version => $self });
    }

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

    $dbh->bz_commit_transaction();
151 152
}

153 154 155 156 157
###############################
#####     Accessors        ####
###############################

sub product_id { return $_[0]->{'product_id'}; }
158
sub is_active  { return $_[0]->{'isactive'};   }
159

160 161
sub product {
    my $self = shift;
162

163 164 165 166
    require Bugzilla::Product;
    $self->{'product'} ||= new Bugzilla::Product($self->product_id);
    return $self->{'product'};
}
167

168 169 170
################################
# Validators
################################
171

172 173
sub set_name      { $_[0]->set('value', $_[1]);    }
sub set_is_active { $_[0]->set('isactive', $_[1]); }
174 175

sub _check_value {
176 177
    my ($invocant, $name, undef, $params) = @_;
    my $product = blessed($invocant) ? $invocant->product : $params->{product};
178 179 180

    $name = trim($name);
    $name || ThrowUserError('version_blank_name');
181 182 183
    # Remove unprintable characters
    $name = clean_text($name);

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

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

199 200 201 202 203 204 205 206 207 208 209 210
1;

__END__

=head1 NAME

Bugzilla::Version - Bugzilla product version class.

=head1 SYNOPSIS

    use Bugzilla::Version;

211 212 213
    my $version = new Bugzilla::Version({ name => $name, product => $product_obj });
    my $version = Bugzilla::Version->check({ name => $name, product => $product_obj });
    my $version = Bugzilla::Version->check({ id => $id });
214

215
    my $value = $version->name;
216
    my $product_id = $version->product_id;
217
    my $product = $version->product;
218

219
    my $version = Bugzilla::Version->create(
220
        { value => $name, product => $product_obj });
221

222 223
    $version->set_name($new_name);
    $version->update();
224

225
    $version->remove_from_db;
226

227 228
=head1 DESCRIPTION

229 230 231 232 233 234
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.
235 236 237 238 239

=head1 METHODS

=over

240 241 242 243 244 245 246 247
=item C<bug_count()>

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

 Params:      none.

 Returns:     Integer with the number of bugs.

248 249 250
=back

=cut
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272

=head1 B<Methods in need of POD>

=over

=item DEFAULT_VERSION

=item set_is_active

=item set_name

=item product_id

=item is_active

=item remove_from_db

=item product

=item update

=back