3 # Copyright ByWater Solutions 2014
4 # Copyright 2016 Koha Development Team
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 3 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 use Scalar
::Util
qw( blessed looks_like_number );
29 use Koha
::Exceptions
::Object
;
34 Koha::Object - Koha Object base class
39 my $object = Koha::Object->new({ property1 => $property1, property2 => $property2, etc... } );
43 This class must always be subclassed.
51 =head3 Koha::Object->new();
53 my $object = Koha::Object->new();
54 my $object = Koha::Object->new($attributes);
56 Note that this cannot be used to retrieve record from the DB.
61 my ( $class, $attributes ) = @_;
65 my $schema = Koha
::Database
->new->schema;
67 # Remove the arguments which exist, are not defined but NOT NULL to use the default value
68 my $columns_info = $schema->resultset( $class->_type )->result_source->columns_info;
69 for my $column_name ( keys %$attributes ) {
70 my $c_info = $columns_info->{$column_name};
71 next if $c_info->{is_nullable
};
72 next if not exists $attributes->{$column_name} or defined $attributes->{$column_name};
73 delete $attributes->{$column_name};
77 $schema->resultset( $class->_type() )->new($attributes);
80 croak
("No _type found! Koha::Object must be subclassed!")
81 unless $class->_type();
83 bless( $self, $class );
87 =head3 Koha::Object->_new_from_dbic();
89 my $object = Koha::Object->_new_from_dbic($dbic_row);
94 my ( $class, $dbic_row ) = @_;
98 $self->{_result
} = $dbic_row;
100 croak
("No _type found! Koha::Object must be subclassed!")
101 unless $class->_type();
103 croak
( "DBIC result _type " . ref( $self->{_result
} ) . " isn't of the _type " . $class->_type() )
104 unless ref( $self->{_result
} ) eq "Koha::Schema::Result::" . $class->_type();
106 bless( $self, $class );
110 =head3 $object->store();
112 Saves the object in storage.
113 If the object is new, it will be created.
114 If the object previously existed, it will be updated.
117 $self if the store was a success
118 undef if the store failed
125 my $columns_info = $self->_result->result_source->columns_info;
127 # Handle not null and default values for integers and dates
128 foreach my $col ( keys %{$columns_info} ) {
130 if ( _numeric_column_type
( $columns_info->{$col}->{data_type
} ) ) {
131 # Has been passed but not a number, usually an empty string
132 if ( defined $self->$col and not looks_like_number
( $self->$col ) ) {
133 if ( $columns_info->{$col}->{is_nullable
} ) {
134 # If nullable, default to null
137 # If cannot be null, get the default value
138 # What if cannot be null and does not have a default value? Possible?
139 $self->$col($columns_info->{$col}->{default_value
});
143 elsif ( _date_or_datetime_column_type
( $columns_info->{$col}->{data_type
} ) ) {
144 # Set to null if an empty string (or == 0 but should not happen)
145 if ( defined $self->$col and not $self->$col ) {
146 if ( $columns_info->{$col}->{is_nullable
} ) {
149 $self->$col($columns_info->{$col}->{default_value
});
156 return $self->_result()->update_or_insert() ?
$self : undef;
159 # Catch problems and raise relevant exceptions
160 if (ref($_) eq 'DBIx::Class::Exception') {
161 if ( $_->{msg
} =~ /Cannot add or update a child row: a foreign key constraint fails/ ) {
163 # FIXME: MySQL error, if we support more DB engines we should implement this for each
164 if ( $_->{msg
} =~ /FOREIGN KEY \(`(?<column>.*?)`\)/ ) {
165 Koha
::Exceptions
::Object
::FKConstraint
->throw(
166 error
=> 'Broken FK constraint',
167 broken_fk
=> $+{column
}
171 elsif( $_->{msg
} =~ /Duplicate entry '(.*?)' for key '(?<key>.*?)'/ ) {
172 Koha
::Exceptions
::Object
::DuplicateID
->throw(
173 error
=> 'Duplicate ID',
174 duplicate_id
=> $+{key
}
177 elsif( $_->{msg
} =~ /Incorrect (?<type>\w+) value: '(?<value>.*)' for column \W?(?<property>\S+)/ ) { # The optional \W in the regex might be a quote or backtick
179 my $value = $+{value
};
180 my $property = $+{property
};
181 $property =~ s/['`]//g;
182 Koha
::Exceptions
::Object
::BadValue
->throw(
185 property
=> $property =~ /(\w+\.\w+)$/ ?
$1 : $property, # results in table.column without quotes or backtics
189 # Catch-all for foreign key breakages. It will help find other use cases
194 =head3 $object->update();
196 A shortcut for set + store in one call.
201 my ($self, $values) = @_;
202 return $self->set($values)->store();
205 =head3 $object->delete();
207 Removes the object from storage.
210 1 if the deletion was a success
211 0 if the deletion failed
212 -1 if the object was never in storage
219 my $deleted = $self->_result()->delete;
220 if ( ref $deleted ) {
221 my $object_class = Koha
::Object
::_get_object_class
( $self->_result->result_class );
222 $deleted = $object_class->_new_from_dbic($deleted);
227 =head3 $object->set( $properties_hashref )
231 property1 => $property1,
232 property2 => $property2,
233 property3 => $propery3,
237 Enables multiple properties to be set at once
240 1 if all properties were set.
241 0 if one or more properties do not exist.
242 undef if all properties exist but a different error
243 prevents one or more properties from being set.
245 If one or more of the properties do not exist,
246 no properties will be set.
251 my ( $self, $properties ) = @_;
253 my @columns = @
{$self->_columns()};
255 foreach my $p ( keys %$properties ) {
256 unless ( grep {/^$p$/} @columns ) {
257 Koha
::Exceptions
::Object
::PropertyNotFound
->throw( "No property $p for " . ref($self) );
261 return $self->_result()->set_columns($properties) ?
$self : undef;
264 =head3 $object->unblessed();
266 Returns an unblessed representation of object.
273 return { $self->_result->get_columns };
276 =head3 $object->get_from_storage;
280 sub get_from_storage
{
281 my ( $self, $attrs ) = @_;
282 my $stored_object = $self->_result->get_from_storage($attrs);
283 return unless $stored_object;
284 my $object_class = Koha
::Object
::_get_object_class
( $self->_result->result_class );
285 return $object_class->_new_from_dbic($stored_object);
288 =head3 $object->TO_JSON
290 Returns an unblessed representation of the object, suitable for JSON output.
298 my $unblessed = $self->unblessed;
299 my $columns_info = Koha
::Database
->new->schema->resultset( $self->_type )
300 ->result_source->{_columns
};
302 foreach my $col ( keys %{$columns_info} ) {
304 if ( $columns_info->{$col}->{is_boolean
} )
305 { # Handle booleans gracefully
307 = ( $unblessed->{$col} )
311 elsif ( _numeric_column_type
( $columns_info->{$col}->{data_type
} )
312 and looks_like_number
( $unblessed->{$col} )
315 # TODO: Remove once the solution for
316 # https://rt.cpan.org/Ticket/Display.html?id=119904
317 # is ported to whatever distro we support by that time
318 $unblessed->{$col} += 0;
320 elsif ( _datetime_column_type
( $columns_info->{$col}->{data_type
} ) ) {
322 return unless $unblessed->{$col};
323 $unblessed->{$col} = output_pref
({
324 dateformat
=> 'rfc3339',
325 dt
=> dt_from_string
($unblessed->{$col}, 'sql'),
333 sub _date_or_datetime_column_type
{
334 my ($column_type) = @_;
342 return ( grep { $column_type eq $_ } @dt_types) ?
1 : 0;
344 sub _datetime_column_type
{
345 my ($column_type) = @_;
352 return ( grep { $column_type eq $_ } @dt_types) ?
1 : 0;
355 sub _numeric_column_type
{
356 # TODO: Remove once the solution for
357 # https://rt.cpan.org/Ticket/Display.html?id=119904
358 # is ported to whatever distro we support by that time
359 my ($column_type) = @_;
361 my @numeric_types = (
373 return ( grep { $column_type eq $_ } @numeric_types) ?
1 : 0;
378 my $object_for_api = $object->to_api(
399 Returns a representation of the object, suitable for API output.
404 my ( $self, $params ) = @_;
405 my $json_object = $self->TO_JSON;
407 my $to_api_mapping = $self->to_api_mapping;
409 # Rename attributes if there's a mapping
410 if ( $self->can('to_api_mapping') ) {
411 foreach my $column ( keys %{ $self->to_api_mapping } ) {
412 my $mapped_column = $self->to_api_mapping->{$column};
413 if ( exists $json_object->{$column}
414 && defined $mapped_column )
417 $json_object->{$mapped_column} = delete $json_object->{$column};
419 elsif ( exists $json_object->{$column}
420 && !defined $mapped_column )
423 delete $json_object->{$column};
428 my $embeds = $params->{embed
};
431 foreach my $embed ( keys %{$embeds} ) {
432 if ( $embed =~ m/^(?<relation>.*)_count$/
433 and $embeds->{$embed}->{is_count
} ) {
435 my $relation = $+{relation
};
436 $json_object->{$embed} = $self->$relation->count;
440 my $next = $embeds->{$curr}->{children
};
442 my $children = $self->$curr;
444 if ( defined $children and ref($children) eq 'ARRAY' ) {
446 $self->_handle_to_api_child(
447 { child
=> $_, next => $next, curr
=> $curr } )
449 $json_object->{$curr} = \
@list;
452 $json_object->{$curr} = $self->_handle_to_api_child(
453 { child
=> $children, next => $next, curr
=> $curr } );
464 =head3 to_api_mapping
466 my $mapping = $object->to_api_mapping;
468 Generic method that returns the attribute name mappings required to
469 render the object on the API.
471 Note: this only returns an empty I<hashref>. Each class should have its
472 own mapping returned.
480 =head3 from_api_mapping
482 my $mapping = $object->from_api_mapping;
484 Generic method that returns the attribute name mappings so the data that
485 comes from the API is correctly renamed to match what is required for the DB.
489 sub from_api_mapping
{
492 my $to_api_mapping = $self->to_api_mapping;
494 unless ( $self->{_from_api_mapping
} ) {
495 while (my ($key, $value) = each %{ $to_api_mapping } ) {
496 $self->{_from_api_mapping
}->{$value} = $key
501 return $self->{_from_api_mapping
};
506 my $object = Koha::Object->new_from_api;
507 my $object = Koha::Object->new_from_api( $attrs );
509 Creates a new object, mapping the API attribute names to the ones on the DB schema.
514 my ( $class, $params ) = @_;
516 my $self = $class->new;
517 return $self->set_from_api( $params );
522 my $object = Koha::Object->new(...);
523 $object->set_from_api( $attrs )
525 Sets the object's attributes mapping API attribute names to the ones on the DB schema.
530 my ( $self, $from_api_params ) = @_;
532 return $self->set( $self->attributes_from_api( $from_api_params ) );
535 =head3 attributes_from_api
537 my $attributes = attributes_from_api( $params );
539 Returns the passed params, converted from API naming into the model.
543 sub attributes_from_api
{
544 my ( $self, $from_api_params ) = @_;
546 my $from_api_mapping = $self->from_api_mapping;
549 my $columns_info = $self->_result->result_source->columns_info;
551 while (my ($key, $value) = each %{ $from_api_params } ) {
552 my $koha_field_name =
553 exists $from_api_mapping->{$key}
554 ?
$from_api_mapping->{$key}
557 if ( $columns_info->{$koha_field_name}->{is_boolean
} ) {
558 # TODO: Remove when D8 is formally deprecated
559 # Handle booleans gracefully
560 $value = ( $value ) ?
1 : 0;
562 elsif ( _date_or_datetime_column_type
( $columns_info->{$koha_field_name}->{data_type
} ) ) {
564 $value = dt_from_string
($value, 'rfc3339');
567 Koha
::Exceptions
::BadParameter
->throw( parameter
=> $key );
571 $params->{$koha_field_name} = $value;
577 =head3 $object->unblessed_all_relateds
579 my $everything_into_one_hashref = $object->unblessed_all_relateds
581 The unblessed method only retrieves column' values for the column of the object.
582 In a *few* cases we want to retrieve the information of all the prefetched data.
586 sub unblessed_all_relateds
{
590 my $related_resultsets = $self->_result->{related_resultsets
} || {};
591 my $rs = $self->_result;
592 while ( $related_resultsets and %$related_resultsets ) {
593 my @relations = keys %{ $related_resultsets };
595 my $relation = $relations[0];
596 $rs = $rs->related_resultset($relation)->get_cache;
597 $rs = $rs->[0]; # Does it makes sense to have several values here?
598 my $object_class = Koha
::Object
::_get_object_class
( $rs->result_class );
599 my $koha_object = $object_class->_new_from_dbic( $rs );
600 $related_resultsets = $rs->{related_resultsets
};
601 %data = ( %data, %{ $koha_object->unblessed } );
604 %data = ( %data, %{ $self->unblessed } );
608 =head3 $object->_result();
610 Returns the internal DBIC Row object
617 # If we don't have a dbic row at this point, we need to create an empty one
619 Koha
::Database
->new()->schema()->resultset( $self->_type() )->new({});
621 return $self->{_result
};
624 =head3 $object->_columns();
626 Returns an arrayref of the table columns
633 # If we don't have a dbic row at this point, we need to create an empty one
634 $self->{_columns
} ||= [ $self->_result()->result_source()->columns() ];
636 return $self->{_columns
};
639 sub _get_object_class
{
643 if( $type->can('koha_object_class') ) {
644 return $type->koha_object_class;
646 $type =~ s
|Schema
::Result
::||;
652 The autoload method is used only to get and set values for an objects properties.
659 my $method = our $AUTOLOAD;
662 my @columns = @
{$self->_columns()};
663 # Using direct setter/getter like $item->barcode() or $item->barcode($barcode);
664 if ( grep {/^$method$/} @columns ) {
666 $self->_result()->set_column( $method, @_ );
669 my $value = $self->_result()->get_column( $method );
674 my @known_methods = qw( is_changed id in_storage get_column discard_changes make_column_dirty );
676 Koha
::Exceptions
::Object
::MethodNotCoveredByTests
->throw(
677 error
=> sprintf("The method %s->%s is not covered by tests!", ref($self), $method),
679 ) unless grep { /^$method$/ } @known_methods;
682 my $r = eval { $self->_result->$method(@_) };
684 Koha
::Exceptions
::Object
->throw( ref($self) . "::$method generated this error: " . $@
);
691 This method must be defined in the child class. The value is the name of the DBIC resultset.
692 For example, for borrowers, the _type method will return "Borrower".
698 =head3 _handle_to_api_child
702 sub _handle_to_api_child
{
703 my ($self, $args ) = @_;
705 my $child = $args->{child
};
706 my $next = $args->{next};
707 my $curr = $args->{curr
};
711 if ( defined $child ) {
713 Koha
::Exceptions
::Exception
->throw( "Asked to embed $curr but its return value doesn't implement to_api" )
714 if defined $next and blessed
$child and !$child->can('to_api');
716 if ( blessed
$child ) {
717 $res = $child->to_api({ embed
=> $next });
731 Kyle M Hall <kyle@bywatersolutions.com>
733 Jonathan Druart <jonathan.druart@bugs.koha-community.org>