Object.pm 15.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# -*- 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.
#
15 16 17 18
# The Initial Developer of the Original Code is Everything Solved.
# Portions created by Everything Solved are Copyright (C) 2006 
# Everything Solved. All Rights Reserved.
#
19
# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
20
#                 Frédéric Buclin <LpSolit@gmail.com>
21 22 23 24 25 26 27 28

use strict;

package Bugzilla::Object;

use Bugzilla::Util;
use Bugzilla::Error;

29 30 31
use constant NAME_FIELD => 'name';
use constant ID_FIELD   => 'id';
use constant LIST_ORDER => NAME_FIELD;
32 33 34 35 36 37 38 39 40 41 42 43 44

###############################
####    Initialization     ####
###############################

sub new {
    my $invocant = shift;
    my $class    = ref($invocant) || $invocant;
    my $object   = $class->_init(@_);
    bless($object, $class) if $object;
    return $object;
}

45 46 47 48 49

# Note: Because this uses sql_istrcmp, if you make a new object use
# Bugzilla::Object, make sure that you modify bz_setup_database
# in Bugzilla::DB::Pg appropriately, to add the right LOWER
# index. You can see examples already there.
50 51 52 53 54 55
sub _init {
    my $class = shift;
    my ($param) = @_;
    my $dbh = Bugzilla->dbh;
    my $columns = join(',', $class->DB_COLUMNS);
    my $table   = $class->DB_TABLE;
56 57
    my $name_field = $class->NAME_FIELD;
    my $id_field   = $class->ID_FIELD;
58 59 60 61 62 63 64 65 66 67 68

    my $id = $param unless (ref $param eq 'HASH');
    my $object;

    if (defined $id) {
        detaint_natural($id)
          || ThrowCodeError('param_must_be_numeric',
                            {function => $class . '::_init'});

        $object = $dbh->selectrow_hashref(qq{
            SELECT $columns FROM $table
69
             WHERE $id_field = ?}, undef, $id);
70 71 72 73
    } elsif (defined $param->{'name'}) {
        trick_taint($param->{'name'});
        $object = $dbh->selectrow_hashref(qq{
            SELECT $columns FROM $table
74 75
             WHERE } . $dbh->sql_istrcmp($name_field, '?'), 
            undef, $param->{'name'});
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
    } else {
        ThrowCodeError('bad_arg',
            {argument => 'param',
             function => $class . '::_init'});
    }

    return $object;
}

sub new_from_list {
    my $class = shift;
    my ($id_list) = @_;
    my $dbh = Bugzilla->dbh;
    my $columns = join(',', $class->DB_COLUMNS);
    my $table   = $class->DB_TABLE;
    my $order   = $class->LIST_ORDER;
92
    my $id_field = $class->ID_FIELD;
93 94 95 96 97 98 99 100 101 102 103

    my $objects;
    if (@$id_list) {
        my @detainted_ids;
        foreach my $id (@$id_list) {
            detaint_natural($id) ||
                ThrowCodeError('param_must_be_numeric',
                              {function => $class . '::new_from_list'});
            push(@detainted_ids, $id);
        }
        $objects = $dbh->selectall_arrayref(
104
            "SELECT $columns FROM $table WHERE $id_field IN (" 
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
            . join(',', @detainted_ids) . ") ORDER BY $order", {Slice=>{}});
    } else {
        return [];
    }

    foreach my $object (@$objects) {
        bless($object, $class);
    }
    return $objects;
}

###############################
####      Accessors      ######
###############################

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

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
###############################
####        Methods        ####
###############################

sub set {
    my ($self, $field, $value) = @_;

    # This method is protected. It's used to help implement set_ functions.
    caller->isa('Bugzilla::Object')
        || ThrowCodeError('protection_violation', 
                          { caller     => caller,
                            superclass => __PACKAGE__,
                            function   => 'Bugzilla::Object->set' });

    my $validators = $self->VALIDATORS;
    if (exists $validators->{$field}) {
        my $validator = $validators->{$field};
140
        $value = $self->$validator($value, $field);
141 142 143 144 145 146 147 148 149 150 151
    }

    $self->{$field} = $value;
}

sub update {
    my $self = shift;

    my $dbh      = Bugzilla->dbh;
    my $table    = $self->DB_TABLE;
    my $id_field = $self->ID_FIELD;
152 153

    my $old_self = $self->new($self->id);
154
    
155
    my (@update_columns, @values, %changes);
156
    foreach my $column ($self->UPDATE_COLUMNS) {
157 158 159 160 161 162 163 164 165
        if ($old_self->{$column} ne $self->{$column}) {
            my $value = $self->{$column};
            trick_taint($value) if defined $value;
            push(@values, $value);
            push(@update_columns, $column);
            # We don't use $value because we don't want to detaint this for
            # the caller.
            $changes{$column} = [$old_self->{$column}, $self->{$column}];
        }
166 167
    }

168 169
    my $columns = join(', ', map {"$_ = ?"} @update_columns);

170
    $dbh->do("UPDATE $table SET $columns WHERE $id_field = ?", undef, 
171 172 173
             @values, $self->id) if @values;

    return \%changes;
174 175
}

176 177 178 179
###############################
####      Subroutines    ######
###############################

180 181 182 183
sub create {
    my ($class, $params) = @_;
    my $dbh = Bugzilla->dbh;

184 185 186 187 188 189 190 191
    $class->check_required_create_fields($params);
    my $field_values = $class->run_create_validators($params);
    return $class->insert_create_data($field_values);
}

sub check_required_create_fields {
    my ($class, $params) = @_;

192
    foreach my $field ($class->REQUIRED_CREATE_FIELDS) {
193
        ThrowCodeError('param_required',
194 195 196
            { function => "${class}->create", param => $field })
            if !exists $params->{$field};
    }
197 198 199 200 201 202 203
}

sub run_create_validators {
    my ($class, $params) = @_;

    my $validators = $class->VALIDATORS;

204
    my %field_values;
205 206 207 208 209
    # We do the sort just to make sure that validation always
    # happens in a consistent order.
    foreach my $field (sort keys %$params) {
        my $value;
        if (exists $validators->{$field}) {
210
            my $validator = $validators->{$field};
211
            $value = $class->$validator($params->{$field}, $field);
212 213 214 215
        }
        else {
            $value = $params->{$field};
        }
216 217
        # We want people to be able to explicitly set fields to NULL,
        # and that means they can be set to undef.
218 219 220 221 222 223 224 225 226 227 228 229 230
        trick_taint($value) if defined $value && !ref($value);
        $field_values{$field} = $value;
    }

    return \%field_values;
}

sub insert_create_data {
    my ($class, $field_values) = @_;
    my $dbh = Bugzilla->dbh;

    my (@field_names, @values);
    while (my ($field, $value) = each %$field_values) {
231 232 233 234
        push(@field_names, $field);
        push(@values, $value);
    }

235 236 237 238 239 240 241
    my $qmarks = '?,' x @field_names;
    chop($qmarks);
    my $table = $class->DB_TABLE;
    $dbh->do("INSERT INTO $table (" . join(', ', @field_names)
             . ") VALUES ($qmarks)", undef, @values);
    my $id = $dbh->bz_last_key($table, $class->ID_FIELD);
    return $class->new($id);
242 243
}

244 245 246 247 248
sub get_all {
    my $class = shift;
    my $dbh = Bugzilla->dbh;
    my $table = $class->DB_TABLE;
    my $order = $class->LIST_ORDER;
249
    my $id_field = $class->ID_FIELD;
250 251

    my $ids = $dbh->selectcol_arrayref(qq{
252
        SELECT $id_field FROM $table ORDER BY $order});
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303

    my $objects = $class->new_from_list($ids);
    return @$objects;
}

1;

__END__

=head1 NAME

Bugzilla::Object - A base class for objects in Bugzilla.

=head1 SYNOPSIS

 my $object = new Bugzilla::Object(1);
 my $object = new Bugzilla::Object({name => 'TestProduct'});

 my $id          = $object->id;
 my $name        = $object->name;

=head1 DESCRIPTION

Bugzilla::Object is a base class for Bugzilla objects. You never actually
create a Bugzilla::Object directly, you only make subclasses of it.

Basically, Bugzilla::Object exists to allow developers to create objects
more easily. All you have to do is define C<DB_TABLE>, C<DB_COLUMNS>,
and sometimes C<LIST_ORDER> and you have a whole new object.

You should also define accessors for any columns other than C<name>
or C<id>.

=head1 CONSTANTS

Frequently, these will be the only things you have to define in your
subclass in order to have a fully-functioning object. C<DB_TABLE>
and C<DB_COLUMNS> are required.

=over

=item C<DB_TABLE>

The name of the table that these objects are stored in. For example,
for C<Bugzilla::Keyword> this would be C<keyworddefs>.

=item C<DB_COLUMNS>

The names of the columns that you want to read out of the database
and into this object. This should be an array.

304 305 306 307 308 309 310 311 312 313 314 315 316
=item C<NAME_FIELD>

The name of the column that should be considered to be the unique
"name" of this object. The 'name' is a B<string> that uniquely identifies
this Object in the database. Defaults to 'name'. When you specify 
C<{name => $name}> to C<new()>, this is the column that will be 
matched against in the DB.

=item C<ID_FIELD>

The name of the column that represents the unique B<integer> ID
of this object in the database. Defaults to 'id'.

317 318 319 320
=item C<LIST_ORDER>

The order that C<new_from_list> and C<get_all> should return objects
in. This should be the name of a database column. Defaults to
321
L</NAME_FIELD>.
322

323 324 325 326 327 328 329 330
=item C<REQUIRED_CREATE_FIELDS>

The list of fields that B<must> be specified when the user calls
C<create()>. This should be an array.

=item C<VALIDATORS>

A hashref that points to a function that will validate each param to
331 332 333 334 335 336 337 338 339 340 341 342
L</create>. 

Validators are called both by L</create> and L</set>. When
they are called by L</create>, the first argument will be the name
of the class (what we normally call C<$class>).

When they are called by L</set>, the first argument will be
a reference to the current object (what we normally call C<$self>).

The second argument will be the value passed to L</create> or 
L</set>for that field. 

343 344 345
The third argument will be the name of the field being validated.
This may be required by validators which validate several distinct fields.

346 347 348 349 350 351 352 353 354
These functions should call L<Bugzilla::Error/ThrowUserError> if they fail.

The validator must return the validated value.

=item C<UPDATE_COLUMNS>

A list of columns to update when L</update> is called.
If a field can't be changed, it shouldn't be listed here. (For example,
the L</ID_FIELD> usually can't be updated.)
355

356 357 358 359
=back

=head1 METHODS

360 361
=head2 Constructors

362 363 364 365 366 367 368 369 370 371 372
=over

=item C<new($param)>

 Description: The constructor is used to load an existing object
              from the database, by id or by name.

 Params:      $param - If you pass an integer, the integer is the
                       id of the object, from the database, that we 
                       want to read in. If you pass in a hash with 
                       C<name> key, then the value of the name key 
373 374
                       is the case-insensitive name of the object from 
                       the DB.
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391

 Returns:     A fully-initialized object.

=item C<new_from_list(\@id_list)>

 Description: Creates an array of objects, given an array of ids.

 Params:      \@id_list - A reference to an array of numbers, database ids.
                          If any of these are not numeric, the function
                          will throw an error. If any of these are not
                          valid ids in the database, they will simply 
                          be skipped.

 Returns:     A reference to an array of objects.

=back

392
=head2 Database Manipulation
393 394 395

=over

396
=item C<create>
397 398 399 400 401 402 403 404 405 406 407 408 409 410

Description: Creates a new item in the database.
             Throws a User Error if any of the passed-in params
             are invalid.

Params:      C<$params> - hashref - A value to put in each database
               field for this object. Certain values must be set (the 
               ones specified in L</REQUIRED_CREATE_FIELDS>), and
               the function will throw a Code Error if you don't set
               them.

Returns:     The Object just created in the database.

Notes:       In order for this function to work in your subclass,
411
             your subclass's L</ID_FIELD> must be of C<SERIAL>
412 413 414
             type in the database. Your subclass also must
             define L</REQUIRED_CREATE_FIELDS> and L</VALIDATORS>.

415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
             Subclass Implementors: This function basically just
             calls L</check_required_create_fields>, then
             L</run_create_validators>, and then finally
             L</insert_create_data>. So if you have a complex system that
             you need to implement, you can do it by calling these
             three functions instead of C<SUPER::create>.

=item C<check_required_create_fields>

=over

=item B<Description>

Part of L</create>. Throws an error if any of the L</REQUIRED_CREATE_FIELDS>
have not been specified in C<$params>

=item B<Params>

=over

=item C<$params> - The same as C<$params> from L</create>.

=back

=item B<Returns> (nothing)

=back

=item C<run_create_validators>
444 445 446 447 448 449 450 451 452

Description: Runs the validation of input parameters for L</create>.
             This subroutine exists so that it can be overridden
             by subclasses who need to do special validations
             of their input parameters. This method is B<only> called
             by L</create>.

Params:      The same as L</create>.

453 454 455 456 457 458 459 460 461 462
Returns:     A hash, in a similar format as C<$params>, except that
             these are the values to be inserted into the database,
             not the values that were input to L</create>.

=item C<insert_create_data>

Part of L</create>.

Takes the return value from L</run_create_validators> and inserts the
data into the database. Returns a newly created object. 
463

464 465
=item C<update>

466 467 468 469
=over

=item B<Description>

470 471
Saves the values currently in this object to the database.
Only the fields specified in L</UPDATE_COLUMNS> will be
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
updated, and they will only be updated if their values have changed.

=item B<Params> (none)

=item B<Returns>

A hashref showing what changed during the update. The keys are the column
names from L</UPDATE_COLUMNS>. If a field was not changed, it will not be
in the hash at all. If the field was changed, the key will point to an arrayref.
The first item of the arrayref will be the old value, and the second item
will be the new value.

If there were no changes, we return a reference to an empty hash.

=back
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531

=back

=head2 Subclass Helpers

These functions are intended only for use by subclasses. If
you call them from anywhere else, they will throw a C<CodeError>.

=over

=item C<set>

=over

=item B<Description>

Sets a certain hash member of this class to a certain value.
Used for updating fields. Calls the validator for this field,
if it exists. Subclasses should use this function
to implement the various C<set_> mutators for their different
fields.

See L</VALIDATORS> for more information.

=item B<Params>

=over

=item C<$field> - The name of the hash member to update. This should
be the same as the name of the field in L</VALIDATORS>, if it exists there.

=item C<$value> - The value that you're setting the field to.

=back

=item B<Returns> (nothing)

=back

=back

=head1 CLASS FUNCTIONS

=over

532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
=item C<get_all>

 Description: Returns all objects in this table from the database.

 Params:      none.

 Returns:     A list of objects, or an empty list if there are none.

 Notes:       Note that you must call this as C<$class->get_all>. For 
              example, C<Bugzilla::Keyword->get_all>. 
              C<Bugzilla::Keyword::get_all> will not work.

=back

=cut