# -*- 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. # # The Initial Developer of the Original Code is Everything Solved. # Portions created by Everything Solved are Copyright (C) 2006 # Everything Solved. All Rights Reserved. # # Contributor(s): Max Kanat-Alexander # Frédéric Buclin use strict; package Bugzilla::Object; use Bugzilla::Constants; use Bugzilla::Util; use Bugzilla::Error; use Date::Parse; use constant NAME_FIELD => 'name'; use constant ID_FIELD => 'id'; use constant LIST_ORDER => NAME_FIELD; use constant UPDATE_VALIDATORS => {}; use constant NUMERIC_COLUMNS => (); use constant DATE_COLUMNS => (); ############################### #### Initialization #### ############################### sub new { my $invocant = shift; my $class = ref($invocant) || $invocant; my $object = $class->_init(@_); bless($object, $class) if $object; return $object; } # 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. sub _init { my $class = shift; my ($param) = @_; my $dbh = Bugzilla->dbh; my $columns = join(',', $class->DB_COLUMNS); my $table = $class->DB_TABLE; my $name_field = $class->NAME_FIELD; my $id_field = $class->ID_FIELD; my $id = $param; if (ref $param eq 'HASH') { $id = $param->{id}; } my $object; if (defined $id) { # We special-case if somebody specifies an ID, so that we can # validate it as numeric. detaint_natural($id) || ThrowCodeError('param_must_be_numeric', {function => $class . '::_init'}); $object = $dbh->selectrow_hashref(qq{ SELECT $columns FROM $table WHERE $id_field = ?}, undef, $id); } else { 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); } return $object; } 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 or ids. my $check_param = exists $param->{id} ? 'id' : 'name'; $param->{$check_param} = trim($param->{$check_param}); # If somebody passes us "0", we want to throw an error like # "there is no X with the name 0". This is true even for ids. So here, # we only check if the parameter is undefined or empty. if (!defined $param->{$check_param} or $param->{$check_param} eq '') { ThrowUserError('object_not_specified', { class => $class }); } my $obj = $class->new($param); if (!$obj) { # We don't want to override the normal template "user" object if # "user" is one of the params. delete $param->{user}; ThrowUserError('object_does_not_exist', { %$param, class => $class }); } return $obj; } sub new_from_list { my $invocant = shift; my $class = ref($invocant) || $invocant; my ($id_list) = @_; my $id_field = $class->ID_FIELD; 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); } # 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 }); } # 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, $postamble); foreach my $field (keys %$criteria) { my $value = $criteria->{$field}; # allow for LIMIT and OFFSET expressions via the criteria. next if $field eq 'OFFSET'; if ( $field eq 'LIMIT' ) { next unless defined $value; detaint_natural($value) or ThrowCodeError('param_must_be_numeric', { param => 'LIMIT', function => "${class}::match" }); my $offset; if (defined $criteria->{OFFSET}) { $offset = $criteria->{OFFSET}; detaint_signed($offset) or ThrowCodeError('param_must_be_numeric', { param => 'OFFSET', function => "${class}::match" }); } $postamble = $dbh->sql_limit($value, $offset); next; } elsif ( $field eq 'WHERE' ) { # the WHERE value is a hashref where the keys are # "column_name operator ?" and values are the placeholder's # value (either a scalar or an array of values). foreach my $k (keys %$value) { push(@terms, $k); my @this_value = ref($value->{$k}) ? @{ $value->{$k} } : ($value->{$k}); push(@values, @this_value); } next; } $class->_check_field($field, 'match'); 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) { 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) if scalar @terms; return $class->_do_list_select($where, \@values, $postamble); } sub _do_list_select { my ($class, $where, $values, $postamble) = @_; 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"; $sql .= " $postamble" if $postamble; my $dbh = Bugzilla->dbh; # Sometimes the values are tainted, but we don't want to untaint them # for the caller. So we copy the array. It's safe to untaint because # they're only used in placeholders here. my @untainted = @{ $values || [] }; trick_taint($_) foreach @untainted; my $objects = $dbh->selectall_arrayref($sql, {Slice=>{}}, @untainted); bless ($_, $class) foreach @$objects; return $objects } ############################### #### Accessors ###### ############################### sub id { return $_[0]->{$_[0]->ID_FIELD}; } sub name { return $_[0]->{$_[0]->NAME_FIELD}; } ############################### #### 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}, %{$self->UPDATE_VALIDATORS}); if (exists $validators{$field}) { my $validator = $validators{$field}; $value = $self->$validator($value, $field); trick_taint($value) if (defined $value && !ref($value)); if ($self->can('_set_global_validator')) { $self->_set_global_validator($value, $field); } } $self->{$field} = $value; } sub set_all { my ($self, $params) = @_; foreach my $key (keys %$params) { my $method = "set_$key"; $self->$method($params->{$key}); } } sub update { my $self = shift; my $dbh = Bugzilla->dbh; my $table = $self->DB_TABLE; my $id_field = $self->ID_FIELD; $dbh->bz_start_transaction(); my $old_self = $self->new($self->id); my %numeric = map { $_ => 1 } $self->NUMERIC_COLUMNS; my %date = map { $_ => 1 } $self->DATE_COLUMNS; my (@update_columns, @values, %changes); foreach my $column ($self->UPDATE_COLUMNS) { 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; } elsif ( ($numeric{$column} && $old == $new) || ($date{$column} && str2time($old) == str2time($new)) || $old eq $new ) { 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}]; } my $columns = join(', ', map {"$_ = ?"} @update_columns); $dbh->do("UPDATE $table SET $columns WHERE $id_field = ?", undef, @values, $self->id) if @values; $dbh->bz_commit_transaction(); if (wantarray) { return (\%changes, $old_self); } return \%changes; } sub remove_from_db { my $self = shift; my $table = $self->DB_TABLE; my $id_field = $self->ID_FIELD; Bugzilla->dbh->do("DELETE FROM $table WHERE $id_field = ?", undef, $self->id); undef $self; } ############################### #### Subroutines ###### ############################### sub any_exist { my $class = shift; my $table = $class->DB_TABLE; my $dbh = Bugzilla->dbh; my $any_exist = $dbh->selectrow_array( "SELECT 1 FROM $table " . $dbh->sql_limit(1)); return $any_exist ? 1 : 0; } sub create { my ($class, $params) = @_; my $dbh = Bugzilla->dbh; $dbh->bz_start_transaction(); $class->check_required_create_fields($params); my $field_values = $class->run_create_validators($params); my $object = $class->insert_create_data($field_values); $dbh->bz_commit_transaction(); return $object; } # Used to validate that a field name is in fact a valid column in the # current table before inserting it into SQL. sub _check_field { my ($invocant, $field, $function) = @_; my $class = ref($invocant) || $invocant; if (!Bugzilla->dbh->bz_column_info($class->DB_TABLE, $field)) { ThrowCodeError('param_invalid', { param => $field, function => "${class}::$function" }); } } sub check_required_create_fields { my ($class, $params) = @_; foreach my $field ($class->REQUIRED_CREATE_FIELDS) { ThrowCodeError('param_required', { function => "${class}->create", param => $field }) if !exists $params->{$field}; } } sub run_create_validators { my ($class, $params) = @_; my $validators = $class->VALIDATORS; my %field_values; # 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}) { my $validator = $validators->{$field}; $value = $class->$validator($params->{$field}, $field); } else { $value = $params->{$field}; } # We want people to be able to explicitly set fields to NULL, # and that means they can be set to undef. 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) { $class->_check_field($field, 'create'); push(@field_names, $field); push(@values, $value); } 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); } sub get_all { my $class = shift; return @{$class->_do_list_select()}; } ############################### #### Validators ###### ############################### sub check_boolean { return $_[1] ? 1 : 0 } 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, C, and sometimes C and you have a whole new object. You should also define accessors for any columns other than C or C. =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 and C are required. =over =item C The name of the table that these objects are stored in. For example, for C this would be C. =item C The names of the columns that you want to read out of the database and into this object. This should be an array. =item C The name of the column that should be considered to be the unique "name" of this object. The 'name' is a B that uniquely identifies this Object in the database. Defaults to 'name'. When you specify C<{name => $name}> to C, this is the column that will be matched against in the DB. =item C The name of the column that represents the unique B ID of this object in the database. Defaults to 'id'. =item C The order that C and C should return objects in. This should be the name of a database column. Defaults to L. =item C The list of fields that B be specified when the user calls C. This should be an array. =item C A hashref that points to a function that will validate each param to L. Validators are called both by L and L. When they are called by L, the first argument will be the name of the class (what we normally call C<$class>). When they are called by L, 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 or Lfor that field. The third argument will be the name of the field being validated. This may be required by validators which validate several distinct fields. These functions should call L if they fail. The validator must return the validated value. =item C This is just like L, but these validators are called only when updating an object, not when creating it. Any validator that appears here must not appear in L. L has good examples in its code of when to use this. =item C A list of columns to update when L is called. If a field can't be changed, it shouldn't be listed here. (For example, the L usually can't be updated.) =item C When L 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. =item C This is much like L, 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>. =back =head1 METHODS =head2 Constructors =over =item C =over =item B The constructor is used to load an existing object from the database, by id or by name. =item B 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 column). If you pass in a hashref, you can pass a C key. The value of the C key is the case-insensitive name of the object (from L) in the DB. You can also pass in an C key which will be interpreted as the id of the object you want (overriding the C key). B If you are a subclass of C, you can pass C and C as hash keys, instead of the above. C is a set of SQL conditions for the WHERE clause, which contain placeholders. C is a reference to an array. The array contains the values for each placeholder in C, in order. This is to allow subclasses to have complex parameters, and then to translate those parameters into C and C when they call C<$self->SUPER::new> (which is this function, usually). If you try to call C outside of a subclass with the C and C parameters, Bugzilla will throw an error. These parameters are intended B for use by subclasses. =item B A fully-initialized object, or C if there is no object in the database matching the parameters you passed in. =back =item C =over =item B 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 The parameters are the same as for L, except that if you don't pass a hashref, the single argument is the I of the object, not the id. =item B A fully initialized object, guaranteed. =item B If you implement this in your subclass, make sure that you also update the C block at the bottom of the F template. =back =item C 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. =item C =over =item B 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, so adding more criteria will give you a smaller set of results, not a larger set. =item B 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 and C, which means "give me objects where this field is NULL or NOT NULL, respectively." In addition to the column keys, there are a few special keys that can be used to rig the underlying database queries. These are C, C, and C. The value for the C key is expected to be an integer defining the number of objects to return, while the value for C defines the position, relative to the number of objects the query would normally return, at which to begin the result set. If C is defined without a corresponding C it is silently ignored. The C key provides a mechanism for adding arbitrary WHERE clauses to the underlying query. Its value is expected to a hash reference whose keys are the columns, operators and placeholders, and the values are the placeholders' bind value. For example: WHERE => { 'some_column >= ?' => $some_value } would constrain the query to only those objects in the table whose 'some_column' column has a value greater than or equal to $some_value. If you don't specify any criteria, calling this function is the same as doing C<[$class-Eget_all]>. =item B An arrayref of objects, or an empty arrayref if there are no matches. =back =back =head2 Database Manipulation =over =item C 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), 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, your subclass's L must be of C type in the database. Your subclass also must define L and L. Subclass Implementors: This function basically just calls L, then L, and then finally L. So if you have a complex system that you need to implement, you can do it by calling these three functions instead of C. =item C =over =item B Part of L. Throws an error if any of the L have not been specified in C<$params> =item B =over =item C<$params> - The same as C<$params> from L. =back =item B (nothing) =back =item C Description: Runs the validation of input parameters for L. 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 called by L. Params: The same as L. 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. =item C Part of L. Takes the return value from L and inserts the data into the database. Returns a newly created object. =item C =over =item B Saves the values currently in this object to the database. Only the fields specified in L will be updated, and they will only be updated if their values have changed. =item B (none) =item B B A hashref showing what changed during the update. The keys are the column names from L. 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. B Returns a list, where the first item is the above hashref. The second item is the object as it was in the database before update() was called. (This is mostly useful to subclasses of C that are implementing C.) =back =item C Removes this object from the database. Will throw an error if you can't remove it for some reason. The object will then be destroyed, as it is not safe to use the object after it has been removed from the database. =back =head2 Mutators These are used for updating the values in objects, before calling C. =over =item C =over =item B 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 mutators for their different fields. If your class defines a method called C<_set_global_validator>, C 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. See L for more information. B: This function is intended only for use by subclasses. If you call it from anywhere else, it will throw a C. =item B =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, if it exists there. =item C<$value> - The value that you're setting the field to. =back =item B (nothing) =back =item C =over =item B This is a convenience function which is simpler than calling many different C functions in a row. You pass a hashref of parameters and it calls C for every item in the hashref. =item B Takes a hashref of the fields that need to be set, pointing to the value that should be passed to the C function that is called. =item B (nothing) =back =back =head2 Simple Validators You can use these in your subclass L or L. Note that you have to reference them like C<\&Bugzilla::Object::check_boolean>, you can't just write C<\&check_boolean>. =over =item C Returns C<1> if the passed-in value is true, C<0> otherwise. =back =head1 CLASS FUNCTIONS =over =item C Returns C<1> if there are any of these objects in the database, C<0> otherwise. =item C 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, Cget_all>. C will not work. =back =cut