Classification.pm 5.59 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
#                 Frédéric Buclin <LpSolit@gmail.com>
17 18 19 20 21

use strict;

package Bugzilla::Classification;

22
use Bugzilla::Constants;
23
use Bugzilla::Field;
24
use Bugzilla::Util;
25
use Bugzilla::Error;
26
use Bugzilla::Product;
27

28
use base qw(Bugzilla::Field::ChoiceInterface Bugzilla::Object);
29

30 31 32 33
###############################
####    Initialization     ####
###############################

34
use constant DB_TABLE => 'classifications';
35
use constant LIST_ORDER => 'sortkey, name';
36

37
use constant DB_COLUMNS => qw(
38 39 40 41 42 43 44 45 46 47
    id
    name
    description
    sortkey
);

use constant UPDATE_COLUMNS => qw(
    name
    description
    sortkey
48 49
);

50 51 52 53 54
use constant VALIDATORS => {
    name        => \&_check_name,
    description => \&_check_description,
    sortkey     => \&_check_sortkey,
};
55

56 57 58 59 60 61 62 63 64 65 66 67 68 69
###############################
####     Constructors     #####
###############################
sub remove_from_db {
    my $self = shift;
    my $dbh = Bugzilla->dbh;

    ThrowUserError("classification_not_deletable") if ($self->id == 1);

    $dbh->bz_start_transaction();
    # Reclassify products to the default classification, if needed.
    $dbh->do("UPDATE products SET classification_id = 1
              WHERE classification_id = ?", undef, $self->id);

70
    $self->SUPER::remove_from_db();
71 72 73 74 75

    $dbh->bz_commit_transaction();

}

76
###############################
77
####      Validators       ####
78 79
###############################

80 81
sub _check_name {
    my ($invocant, $name) = @_;
82

83 84
    $name = trim($name);
    $name || ThrowUserError('classification_not_specified');
85

86 87 88 89
    if (length($name) > MAX_CLASSIFICATION_SIZE) {
        ThrowUserError('classification_name_too_long', {'name' => $name});
    }

90 91 92 93 94 95
    my $classification = new Bugzilla::Classification({name => $name});
    if ($classification && (!ref $invocant || $classification->id != $invocant->id)) {
        ThrowUserError("classification_already_exists", { name => $classification->name });
    }
    return $name;
}
96

97 98
sub _check_description {
    my ($invocant, $description) = @_;
99

100 101 102
    $description  = trim($description || '');
    return $description;
}
103

104 105
sub _check_sortkey {
    my ($invocant, $sortkey) = @_;
106

107 108
    $sortkey ||= 0;
    my $stored_sortkey = $sortkey;
109 110 111
    if (!detaint_natural($sortkey) || $sortkey > MAX_SMALLINT) {
        ThrowUserError('classification_invalid_sortkey', { 'sortkey' => $stored_sortkey });
    }
112
    return $sortkey;
113 114
}

115 116 117 118 119 120 121 122
#####################################
# Implement Bugzilla::Field::Choice #
#####################################

use constant FIELD_NAME => 'classification';
use constant is_default => 0;
use constant is_active => 1;

123 124 125 126
###############################
####       Methods         ####
###############################

127 128 129 130
sub set_name        { $_[0]->set('name', $_[1]); }
sub set_description { $_[0]->set('description', $_[1]); }
sub set_sortkey     { $_[0]->set('sortkey', $_[1]); }

131 132 133 134 135 136 137
sub product_count {
    my $self = shift;
    my $dbh = Bugzilla->dbh;

    if (!defined $self->{'product_count'}) {
        $self->{'product_count'} = $dbh->selectrow_array(q{
            SELECT COUNT(*) FROM products
138
            WHERE classification_id = ?}, undef, $self->id) || 0;
139 140 141 142
    }
    return $self->{'product_count'};
}

143 144 145 146 147 148 149
sub products {
    my $self = shift;
    my $dbh = Bugzilla->dbh;

    if (!$self->{'products'}) {
        my $product_ids = $dbh->selectcol_arrayref(q{
            SELECT id FROM products
150 151
            WHERE classification_id = ?
            ORDER BY name}, undef, $self->id);
152 153

        $self->{'products'} = Bugzilla::Product->new_from_list($product_ids);
154 155 156 157
    }
    return $self->{'products'};
}

158 159 160 161 162
###############################
####      Accessors        ####
###############################

sub description { return $_[0]->{'description'}; }
163
sub sortkey     { return $_[0]->{'sortkey'};     }
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182

1;

__END__

=head1 NAME

Bugzilla::Classification - Bugzilla classification class.

=head1 SYNOPSIS

    use Bugzilla::Classification;

    my $classification = new Bugzilla::Classification(1);
    my $classification = new Bugzilla::Classification({name => 'Acme'});

    my $id = $classification->id;
    my $name = $classification->name;
    my $description = $classification->description;
183
    my $sortkey = $classification->sortkey;
184
    my $product_count = $classification->product_count;
185
    my $products = $classification->products;
186 187 188

=head1 DESCRIPTION

189 190 191 192 193 194
Classification.pm represents a classification 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::Classification> are listed
below.
195

196
A Classification is a higher-level grouping of Products.
197 198 199 200 201 202 203 204 205 206 207 208 209 210

=head1 METHODS

=over

=item C<product_count()>

 Description: Returns the total number of products that belong to
              the classification.

 Params:      none.

 Returns:     Integer - The total of products inside the classification.

211 212 213 214 215 216 217 218
=item C<products>

 Description: Returns all products of the classification.

 Params:      none.

 Returns:     A reference to an array of Bugzilla::Product objects.

219 220 221
=back

=cut