Object.pm 22.7 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

use strict;

package Bugzilla::Object;

26
use Bugzilla::Constants;
27 28 29
use Bugzilla::Util;
use Bugzilla::Error;

30 31
use Date::Parse;

32 33 34
use constant NAME_FIELD => 'name';
use constant ID_FIELD   => 'id';
use constant LIST_ORDER => NAME_FIELD;
35

36
use constant UPDATE_VALIDATORS => {};
37
use constant NUMERIC_COLUMNS   => ();
38
use constant DATE_COLUMNS      => ();
39

40 41 42 43 44 45 46 47 48 49 50 51
###############################
####    Initialization     ####
###############################

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

52 53 54 55 56

# 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.
57 58 59 60 61 62
sub _init {
    my $class = shift;
    my ($param) = @_;
    my $dbh = Bugzilla->dbh;
    my $columns = join(',', $class->DB_COLUMNS);
    my $table   = $class->DB_TABLE;
63 64
    my $name_field = $class->NAME_FIELD;
    my $id_field   = $class->ID_FIELD;
65 66 67 68 69

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

    if (defined $id) {
70 71
        # We special-case if somebody specifies an ID, so that we can
        # validate it as numeric.
72 73 74 75 76 77
        detaint_natural($id)
          || ThrowCodeError('param_must_be_numeric',
                            {function => $class . '::_init'});

        $object = $dbh->selectrow_hashref(qq{
            SELECT $columns FROM $table
78
             WHERE $id_field = ?}, undef, $id);
79
    } else {
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
        unless (defined $param->{name} || (defined $param->{'condition'} 
                                           && defined $param->{'values'}))
        {
            ThrowCodeError('bad_arg', { argument => 'param',
                                        function => $class . '::new' });
        }

        my ($condition, @values);
        if (defined $param->{name}) {
            $condition = $dbh->sql_istrcmp($name_field, '?');
            push(@values, $param->{name});
        }
        elsif (defined $param->{'condition'} && defined $param->{'values'}) {
            caller->isa('Bugzilla::Object')
                || ThrowCodeError('protection_violation',
                       { caller    => caller, 
                         function  => $class . '::new',
                         argument  => 'condition/values' });
            $condition = $param->{'condition'};
            push(@values, @{$param->{'values'}});
        }

        map { trick_taint($_) } @values;
        $object = $dbh->selectrow_hashref(
            "SELECT $columns FROM $table WHERE $condition", undef, @values);
105 106 107 108 109
    }

    return $object;
}

110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
sub check {
    my ($invocant, $param) = @_;
    my $class = ref($invocant) || $invocant;
    # If we were just passed a name, then just use the name.
    if (!ref $param) {
        $param = { name => $param };
    }
    # Don't allow empty names.
    if (exists $param->{name}) {
        $param->{name} = trim($param->{name});
        $param->{name} || ThrowUserError('object_name_not_specified',
                                          { class => $class });
    }
    my $obj = $class->new($param)
        || ThrowUserError('object_does_not_exist', {%$param, class => $class});
    return $obj;
}

128
sub new_from_list {
129 130
    my $invocant = shift;
    my $class = ref($invocant) || $invocant;
131
    my ($id_list) = @_;
132
    my $id_field = $class->ID_FIELD;
133

134 135 136 137 138 139
    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);
140
    }
141 142 143 144 145
    # We don't do $invocant->match because some classes have
    # their own implementation of match which is not compatible
    # with this one. However, match() still needs to have the right $invocant
    # in order to do $class->DB_TABLE and so on.
    return match($invocant, { $id_field => \@detainted_ids });
146 147
}

148 149 150 151 152 153 154 155 156 157 158 159 160
# Note: Future extensions to this could be:
#  * Add a MATCH_JOIN constant so that we can join against
#    certain other tables for the WHERE criteria.
sub match {
    my ($invocant, $criteria) = @_;
    my $class = ref($invocant) || $invocant;
    my $dbh   = Bugzilla->dbh;

    return [$class->get_all] if !$criteria;

    my (@terms, @values);
    foreach my $field (keys %$criteria) {
        my $value = $criteria->{$field};
161 162 163 164 165 166 167 168 169 170 171
        if (ref $value eq 'ARRAY') {
            # IN () is invalid SQL, and if we have an empty list
            # to match against, we're just returning an empty
            # array anyhow.
            return [] if !scalar @$value;

            my @qmarks = ("?") x @$value;
            push(@terms, $dbh->sql_in($field, \@qmarks));
            push(@values, @$value);
        }
        elsif ($value eq NOT_NULL) {
172 173 174 175 176 177 178 179 180 181 182 183
            push(@terms, "$field IS NOT NULL");
        }
        elsif ($value eq IS_NULL) {
            push(@terms, "$field IS NULL");
        }
        else {
            push(@terms, "$field = ?");
            push(@values, $value);
        }
    }

    my $where = join(' AND ', @terms);
184 185 186 187 188 189 190 191 192 193 194 195 196 197
    return $class->_do_list_select($where, \@values);
}

sub _do_list_select {
    my ($class, $where, $values) = @_;
    my $table = $class->DB_TABLE;
    my $cols  = join(',', $class->DB_COLUMNS);
    my $order = $class->LIST_ORDER;

    my $sql = "SELECT $cols FROM $table";
    if (defined $where) {
        $sql .= " WHERE $where ";
    }
    $sql .= " ORDER BY $order";
198

199 200 201 202
    my $dbh = Bugzilla->dbh;
    my $objects = $dbh->selectall_arrayref($sql, {Slice=>{}}, @$values);
    bless ($_, $class) foreach @$objects;
    return $objects
203 204
}

205 206 207 208
###############################
####      Accessors      ######
###############################

209 210
sub id   { return $_[0]->{$_[0]->ID_FIELD};   }
sub name { return $_[0]->{$_[0]->NAME_FIELD}; }
211

212 213 214 215 216 217 218 219 220 221 222 223 224 225
###############################
####        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' });

226 227 228
    my %validators = (%{$self->VALIDATORS}, %{$self->UPDATE_VALIDATORS});
    if (exists $validators{$field}) {
        my $validator = $validators{$field};
229
        $value = $self->$validator($value, $field);
230
        trick_taint($value) if (defined $value && !ref($value));
231 232 233 234

        if ($self->can('_set_global_validator')) {
            $self->_set_global_validator($value, $field);
        }
235 236 237 238 239 240 241 242 243 244 245
    }

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

sub update {
    my $self = shift;

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

247 248
    $dbh->bz_start_transaction();

249
    my $old_self = $self->new($self->id);
250
    
251
    my %numeric = map { $_ => 1 } $self->NUMERIC_COLUMNS;
252
    my %date    = map { $_ => 1 } $self->DATE_COLUMNS;
253
    my (@update_columns, @values, %changes);
254
    foreach my $column ($self->UPDATE_COLUMNS) {
255 256 257 258 259 260
        my ($old, $new) = ($old_self->{$column}, $self->{$column});
        # This has to be written this way in order to allow us to set a field
        # from undef or to undef, and avoid warnings about comparing an undef
        # with the "eq" operator.
        if (!defined $new || !defined $old) {
            next if !defined $new && !defined $old;
261
        }
262 263 264
        elsif ( ($numeric{$column} && $old == $new) 
                || ($date{$column} && str2time($old) == str2time($new))
                || $old eq $new ) {
265 266 267 268 269 270 271 272 273
            next;
        }

        trick_taint($new) if defined $new;
        push(@values, $new);
        push(@update_columns, $column);
        # We don't use $new because we don't want to detaint this for
        # the caller.
        $changes{$column} = [$old, $self->{$column}];
274 275
    }

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

278
    $dbh->do("UPDATE $table SET $columns WHERE $id_field = ?", undef, 
279 280
             @values, $self->id) if @values;

281 282
    $dbh->bz_commit_transaction();

283
    return \%changes;
284 285
}

286 287 288 289
###############################
####      Subroutines    ######
###############################

290 291 292 293
sub create {
    my ($class, $params) = @_;
    my $dbh = Bugzilla->dbh;

294
    $dbh->bz_start_transaction();
295 296
    $class->check_required_create_fields($params);
    my $field_values = $class->run_create_validators($params);
297 298 299 300
    my $object = $class->insert_create_data($field_values);
    $dbh->bz_commit_transaction();

    return $object;
301 302 303 304 305
}

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

306
    foreach my $field ($class->REQUIRED_CREATE_FIELDS) {
307
        ThrowCodeError('param_required',
308 309 310
            { function => "${class}->create", param => $field })
            if !exists $params->{$field};
    }
311 312 313 314 315 316 317
}

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

    my $validators = $class->VALIDATORS;

318
    my %field_values;
319 320 321 322 323
    # 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}) {
324
            my $validator = $validators->{$field};
325
            $value = $class->$validator($params->{$field}, $field);
326 327 328 329
        }
        else {
            $value = $params->{$field};
        }
330 331
        # We want people to be able to explicitly set fields to NULL,
        # and that means they can be set to undef.
332 333 334 335 336 337 338 339 340 341 342 343 344
        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) {
345 346 347 348
        push(@field_names, $field);
        push(@values, $value);
    }

349 350 351 352 353 354 355
    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);
356 357
}

358 359
sub get_all {
    my $class = shift;
360
    return @{$class->_do_list_select()};
361 362
}

363 364 365 366 367 368
###############################
####      Validators     ######
###############################

sub check_boolean { return $_[1] ? 1 : 0 }

369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
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.

415 416 417 418 419 420 421 422 423 424 425 426 427
=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'.

428 429 430 431
=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
432
L</NAME_FIELD>.
433

434 435 436 437 438 439 440 441
=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
442 443 444 445 446 447 448 449 450 451 452 453
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. 

454 455 456
The third argument will be the name of the field being validated.
This may be required by validators which validate several distinct fields.

457 458 459 460
These functions should call L<Bugzilla::Error/ThrowUserError> if they fail.

The validator must return the validated value.

461 462 463 464 465 466 467 468
=item C<UPDATE_VALIDATORS>

This is just like L</VALIDATORS>, but these validators are called only
when updating an object, not when creating it. Any validator that appears
here must not appear in L</VALIDATORS>.

L<Bugzilla::Bug> has good examples in its code of when to use this.

469 470 471 472 473
=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.)
474

475 476 477 478 479 480 481 482
=item C<NUMERIC_COLUMNS>

When L</update> is called, it compares each column in the object to its
current value in the database. It only updates columns that have changed.

Any column listed in NUMERIC_COLUMNS is treated as a number, not as a string,
during these comparisons.

483 484 485 486 487 488
=item C<DATE_COLUMNS>

This is much like L</NUMERIC_COLUMNS>, except that it treats strings as
dates when being compared. So, for example, C<2007-01-01> would be
equal to C<2007-01-01 00:00:00>.

489 490 491 492
=back

=head1 METHODS

493 494
=head2 Constructors

495 496
=over

497
=item C<new>
498

499 500 501 502 503 504
=over

=item B<Description>

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

506
=item B<Params>
507

508 509 510 511
If you pass an integer, the integer is the id of the object, 
from the database, that we  want to read in. (id is defined
as the value in the L</ID_FIELD> column).

512
If you pass in a hashref, you can pass a C<name> key. The 
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
value of the C<name> key is the case-insensitive name of the object 
(from L</NAME_FIELD>) in the DB.

B<Additional Parameters Available for Subclasses>

If you are a subclass of C<Bugzilla::Object>, you can pass
C<condition> and C<values> as hash keys, instead of the above.

C<condition> is a set of SQL conditions for the WHERE clause, which contain
placeholders.

C<values> is a reference to an array. The array contains the values
for each placeholder in C<condition>, in order.

This is to allow subclasses to have complex parameters, and then to
translate those parameters into C<condition> and C<values> when they
call C<$self->SUPER::new> (which is this function, usually).

If you try to call C<new> outside of a subclass with the C<condition>
and C<values> parameters, Bugzilla will throw an error. These parameters
are intended B<only> for use by subclasses.

=item B<Returns>

537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
A fully-initialized object, or C<undef> if there is no object in the
database matching the parameters you passed in.

=back

=item C<check>

=over

=item B<Description>

Checks if there is an object in the database with the specified name, and
throws an error if you specified an empty name, or if there is no object
in the database with that name.

=item B<Params>

The parameters are the same as for L</new>, except that if you don't pass
a hashref, the single argument is the I<name> of the object, not the id.

=item B<Returns>

A fully initialized object, guaranteed.

=item B<Notes For Implementors>

If you implement this in your subclass, make sure that you also update
the C<object_name> block at the bottom of the F<global/user-error.html.tmpl>
template.
566 567

=back
568 569 570 571 572 573 574 575 576 577 578 579

=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.
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611

=item C<match>

=over

=item B<Description>

Gets a list of objects from the database based on certain criteria.

Basically, a simple way of doing a sort of "SELECT" statement (like SQL)
to get objects.

All criteria are joined by C<AND>, so adding more criteria will give you
a smaller set of results, not a larger set.

=item B<Params>

A hashref, where the keys are column names of the table, pointing to the 
value that you want to match against for that column. 

There are two special values, the constants C<NULL> and C<NOT_NULL>,
which means "give me objects where this field is NULL or NOT NULL,
respectively."

If you don't specify any criteria, calling this function is the same
as doing C<[$class-E<gt>get_all]>.

=item B<Returns>

An arrayref of objects, or an empty arrayref if there are no matches.

=back
612 613 614

=back

615
=head2 Database Manipulation
616 617 618

=over

619
=item C<create>
620 621 622 623 624 625 626 627 628 629 630 631 632 633

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,
634
             your subclass's L</ID_FIELD> must be of C<SERIAL>
635 636 637
             type in the database. Your subclass also must
             define L</REQUIRED_CREATE_FIELDS> and L</VALIDATORS>.

638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
             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>
667 668 669 670 671 672 673 674 675

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>.

676 677 678 679 680 681 682 683 684 685
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. 
686

687 688
=item C<update>

689 690 691 692
=over

=item B<Description>

693 694
Saves the values currently in this object to the database.
Only the fields specified in L</UPDATE_COLUMNS> will be
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
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
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731

=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.

732 733 734 735 736 737
If your class defines a method called C<_set_global_validator>,
C<set> will call it with C<($value, $field)> as arguments, after running
the validator for this particular field. C<_set_global_validator> does not
return anything.


738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
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

757 758 759 760 761 762 763 764 765 766 767 768 769 770
=head2 Simple Validators

You can use these in your subclass L</VALIDATORS> or L</UPDATE_VALIDATORS>.
Note that you have to reference them like C<\&Bugzilla::Object::check_boolean>,
you can't just write C<\&check_boolean>.

=over

=item C<check_boolean>

Returns C<1> if the passed-in value is true, C<0> otherwise.

=back

771 772 773 774
=head1 CLASS FUNCTIONS

=over

775 776 777 778 779 780 781 782 783 784 785 786 787 788 789
=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