Tomas Cohen Arazi
3c0c75e6af
Generic method that changes the attribute names of an object in the presence of the to_api_mapping method. It otherwise falls back to returning the TO_JSON output. This is WIP submitted early for scrutiny. Tests and example usage in an API controller coming. Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
524 lines
14 KiB
Perl
524 lines
14 KiB
Perl
package Koha::Object;
|
|
|
|
# Copyright ByWater Solutions 2014
|
|
# Copyright 2016 Koha Development Team
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with Koha; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
use Modern::Perl;
|
|
|
|
use Carp;
|
|
use Mojo::JSON;
|
|
use Scalar::Util qw( looks_like_number );
|
|
use Try::Tiny;
|
|
|
|
use Koha::Database;
|
|
use Koha::Exceptions::Object;
|
|
use Koha::DateUtils;
|
|
|
|
=head1 NAME
|
|
|
|
Koha::Object - Koha Object base class
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
use Koha::Object;
|
|
my $object = Koha::Object->new({ property1 => $property1, property2 => $property2, etc... } );
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This class must always be subclassed.
|
|
|
|
=head1 API
|
|
|
|
=head2 Class Methods
|
|
|
|
=cut
|
|
|
|
=head3 Koha::Object->new();
|
|
|
|
my $object = Koha::Object->new();
|
|
my $object = Koha::Object->new($attributes);
|
|
|
|
Note that this cannot be used to retrieve record from the DB.
|
|
|
|
=cut
|
|
|
|
sub new {
|
|
my ( $class, $attributes ) = @_;
|
|
my $self = {};
|
|
|
|
if ($attributes) {
|
|
my $schema = Koha::Database->new->schema;
|
|
|
|
# Remove the arguments which exist, are not defined but NOT NULL to use the default value
|
|
my $columns_info = $schema->resultset( $class->_type )->result_source->columns_info;
|
|
for my $column_name ( keys %$attributes ) {
|
|
my $c_info = $columns_info->{$column_name};
|
|
next if $c_info->{is_nullable};
|
|
next if not exists $attributes->{$column_name} or defined $attributes->{$column_name};
|
|
delete $attributes->{$column_name};
|
|
}
|
|
|
|
$self->{_result} =
|
|
$schema->resultset( $class->_type() )->new($attributes);
|
|
}
|
|
|
|
croak("No _type found! Koha::Object must be subclassed!")
|
|
unless $class->_type();
|
|
|
|
bless( $self, $class );
|
|
|
|
}
|
|
|
|
=head3 Koha::Object->_new_from_dbic();
|
|
|
|
my $object = Koha::Object->_new_from_dbic($dbic_row);
|
|
|
|
=cut
|
|
|
|
sub _new_from_dbic {
|
|
my ( $class, $dbic_row ) = @_;
|
|
my $self = {};
|
|
|
|
# DBIC result row
|
|
$self->{_result} = $dbic_row;
|
|
|
|
croak("No _type found! Koha::Object must be subclassed!")
|
|
unless $class->_type();
|
|
|
|
croak( "DBIC result _type " . ref( $self->{_result} ) . " isn't of the _type " . $class->_type() )
|
|
unless ref( $self->{_result} ) eq "Koha::Schema::Result::" . $class->_type();
|
|
|
|
bless( $self, $class );
|
|
|
|
}
|
|
|
|
=head3 $object->store();
|
|
|
|
Saves the object in storage.
|
|
If the object is new, it will be created.
|
|
If the object previously existed, it will be updated.
|
|
|
|
Returns:
|
|
$self if the store was a success
|
|
undef if the store failed
|
|
|
|
=cut
|
|
|
|
sub store {
|
|
my ($self) = @_;
|
|
|
|
my $columns_info = $self->_result->result_source->columns_info;
|
|
|
|
# Handle not null and default values for integers and dates
|
|
foreach my $col ( keys %{$columns_info} ) {
|
|
# Integers
|
|
if ( _numeric_column_type( $columns_info->{$col}->{data_type} ) ) {
|
|
# Has been passed but not a number, usually an empty string
|
|
if ( defined $self->$col and not looks_like_number( $self->$col ) ) {
|
|
if ( $columns_info->{$col}->{is_nullable} ) {
|
|
# If nullable, default to null
|
|
$self->$col(undef);
|
|
} else {
|
|
# If cannot be null, get the default value
|
|
# What if cannot be null and does not have a default value? Possible?
|
|
$self->$col($columns_info->{$col}->{default_value});
|
|
}
|
|
}
|
|
}
|
|
elsif ( _date_or_datetime_column_type( $columns_info->{$col}->{data_type} ) ) {
|
|
# Set to null if an empty string (or == 0 but should not happen)
|
|
if ( defined $self->$col and not $self->$col ) {
|
|
if ( $columns_info->{$col}->{is_nullable} ) {
|
|
$self->$col(undef);
|
|
} else {
|
|
$self->$col($columns_info->{$col}->{default_value});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
try {
|
|
return $self->_result()->update_or_insert() ? $self : undef;
|
|
}
|
|
catch {
|
|
# Catch problems and raise relevant exceptions
|
|
if (ref($_) eq 'DBIx::Class::Exception') {
|
|
if ( $_->{msg} =~ /Cannot add or update a child row: a foreign key constraint fails/ ) {
|
|
# FK constraints
|
|
# FIXME: MySQL error, if we support more DB engines we should implement this for each
|
|
if ( $_->{msg} =~ /FOREIGN KEY \(`(?<column>.*?)`\)/ ) {
|
|
Koha::Exceptions::Object::FKConstraint->throw(
|
|
error => 'Broken FK constraint',
|
|
broken_fk => $+{column}
|
|
);
|
|
}
|
|
}
|
|
elsif( $_->{msg} =~ /Duplicate entry '(.*?)' for key '(?<key>.*?)'/ ) {
|
|
Koha::Exceptions::Object::DuplicateID->throw(
|
|
error => 'Duplicate ID',
|
|
duplicate_id => $+{key}
|
|
);
|
|
}
|
|
elsif( $_->{msg} =~ /Incorrect (?<type>\w+) value: '(?<value>.*)' for column '(?<property>\w+)'/ ) {
|
|
Koha::Exceptions::Object::BadValue->throw(
|
|
type => $+{type},
|
|
value => $+{value},
|
|
property => $+{property}
|
|
);
|
|
}
|
|
}
|
|
# Catch-all for foreign key breakages. It will help find other use cases
|
|
$_->rethrow();
|
|
}
|
|
}
|
|
|
|
=head3 $object->delete();
|
|
|
|
Removes the object from storage.
|
|
|
|
Returns:
|
|
1 if the deletion was a success
|
|
0 if the deletion failed
|
|
-1 if the object was never in storage
|
|
|
|
=cut
|
|
|
|
sub delete {
|
|
my ($self) = @_;
|
|
|
|
# Deleting something not in storage throws an exception
|
|
return -1 unless $self->_result()->in_storage();
|
|
|
|
# Return a boolean for succcess
|
|
return $self->_result()->delete() ? 1 : 0;
|
|
}
|
|
|
|
=head3 $object->set( $properties_hashref )
|
|
|
|
$object->set(
|
|
{
|
|
property1 => $property1,
|
|
property2 => $property2,
|
|
property3 => $propery3,
|
|
}
|
|
);
|
|
|
|
Enables multiple properties to be set at once
|
|
|
|
Returns:
|
|
1 if all properties were set.
|
|
0 if one or more properties do not exist.
|
|
undef if all properties exist but a different error
|
|
prevents one or more properties from being set.
|
|
|
|
If one or more of the properties do not exist,
|
|
no properties will be set.
|
|
|
|
=cut
|
|
|
|
sub set {
|
|
my ( $self, $properties ) = @_;
|
|
|
|
my @columns = @{$self->_columns()};
|
|
|
|
foreach my $p ( keys %$properties ) {
|
|
unless ( grep {/^$p$/} @columns ) {
|
|
Koha::Exceptions::Object::PropertyNotFound->throw( "No property $p for " . ref($self) );
|
|
}
|
|
}
|
|
|
|
return $self->_result()->set_columns($properties) ? $self : undef;
|
|
}
|
|
|
|
=head3 $object->unblessed();
|
|
|
|
Returns an unblessed representation of object.
|
|
|
|
=cut
|
|
|
|
sub unblessed {
|
|
my ($self) = @_;
|
|
|
|
return { $self->_result->get_columns };
|
|
}
|
|
|
|
=head3 $object->get_from_storage;
|
|
|
|
=cut
|
|
|
|
sub get_from_storage {
|
|
my ( $self, $attrs ) = @_;
|
|
my $stored_object = $self->_result->get_from_storage($attrs);
|
|
my $object_class = Koha::Object::_get_object_class( $self->_result->result_class );
|
|
return $object_class->_new_from_dbic($stored_object);
|
|
}
|
|
|
|
=head3 $object->TO_JSON
|
|
|
|
Returns an unblessed representation of the object, suitable for JSON output.
|
|
|
|
=cut
|
|
|
|
sub TO_JSON {
|
|
|
|
my ($self) = @_;
|
|
|
|
my $unblessed = $self->unblessed;
|
|
my $columns_info = Koha::Database->new->schema->resultset( $self->_type )
|
|
->result_source->{_columns};
|
|
|
|
foreach my $col ( keys %{$columns_info} ) {
|
|
|
|
if ( $columns_info->{$col}->{is_boolean} )
|
|
{ # Handle booleans gracefully
|
|
$unblessed->{$col}
|
|
= ( $unblessed->{$col} )
|
|
? Mojo::JSON->true
|
|
: Mojo::JSON->false;
|
|
}
|
|
elsif ( _numeric_column_type( $columns_info->{$col}->{data_type} )
|
|
and looks_like_number( $unblessed->{$col} )
|
|
) {
|
|
|
|
# TODO: Remove once the solution for
|
|
# https://rt.cpan.org/Ticket/Display.html?id=119904
|
|
# is ported to whatever distro we support by that time
|
|
$unblessed->{$col} += 0;
|
|
}
|
|
elsif ( _datetime_column_type( $columns_info->{$col}->{data_type} ) ) {
|
|
eval {
|
|
return unless $unblessed->{$col};
|
|
$unblessed->{$col} = output_pref({
|
|
dateformat => 'rfc3339',
|
|
dt => dt_from_string($unblessed->{$col}, 'sql'),
|
|
});
|
|
};
|
|
}
|
|
}
|
|
return $unblessed;
|
|
}
|
|
|
|
sub _date_or_datetime_column_type {
|
|
my ($column_type) = @_;
|
|
|
|
my @dt_types = (
|
|
'timestamp',
|
|
'date',
|
|
'datetime'
|
|
);
|
|
|
|
return ( grep { $column_type eq $_ } @dt_types) ? 1 : 0;
|
|
}
|
|
sub _datetime_column_type {
|
|
my ($column_type) = @_;
|
|
|
|
my @dt_types = (
|
|
'timestamp',
|
|
'datetime'
|
|
);
|
|
|
|
return ( grep { $column_type eq $_ } @dt_types) ? 1 : 0;
|
|
}
|
|
|
|
sub _numeric_column_type {
|
|
# TODO: Remove once the solution for
|
|
# https://rt.cpan.org/Ticket/Display.html?id=119904
|
|
# is ported to whatever distro we support by that time
|
|
my ($column_type) = @_;
|
|
|
|
my @numeric_types = (
|
|
'bigint',
|
|
'integer',
|
|
'int',
|
|
'mediumint',
|
|
'smallint',
|
|
'tinyint',
|
|
'decimal',
|
|
'double precision',
|
|
'float'
|
|
);
|
|
|
|
return ( grep { $column_type eq $_ } @numeric_types) ? 1 : 0;
|
|
}
|
|
|
|
=head3 to_api
|
|
|
|
my $object_for_api = $object->to_api;
|
|
|
|
Returns a representation of the object, suitable for API output.
|
|
|
|
=cut
|
|
|
|
sub to_api {
|
|
my ( $self ) = @_;
|
|
my $json_object = $self->TO_JSON;
|
|
|
|
# Rename attributes if there's a mapping
|
|
if ( $self->can('to_api_mapping') ) {
|
|
foreach my $column ( keys %{$self->to_api_mapping} ) {
|
|
my $mapped_column = $self->to_api_mapping->{$column};
|
|
if ( exists $json_object->{$column}
|
|
&& defined $mapped_column )
|
|
{
|
|
# key != undef
|
|
$json_object->{$mapped_column} = delete $json_object->{$column};
|
|
}
|
|
elsif ( exists $json_object->{$column}
|
|
&& !defined $mapped_column )
|
|
{
|
|
# key == undef
|
|
delete $json_object->{$column};
|
|
}
|
|
}
|
|
}
|
|
|
|
return $json_object;
|
|
}
|
|
|
|
=head3 $object->unblessed_all_relateds
|
|
|
|
my $everything_into_one_hashref = $object->unblessed_all_relateds
|
|
|
|
The unblessed method only retrieves column' values for the column of the object.
|
|
In a *few* cases we want to retrieve the information of all the prefetched data.
|
|
|
|
=cut
|
|
|
|
sub unblessed_all_relateds {
|
|
my ($self) = @_;
|
|
|
|
my %data;
|
|
my $related_resultsets = $self->_result->{related_resultsets} || {};
|
|
my $rs = $self->_result;
|
|
while ( $related_resultsets and %$related_resultsets ) {
|
|
my @relations = keys %{ $related_resultsets };
|
|
if ( @relations ) {
|
|
my $relation = $relations[0];
|
|
$rs = $rs->related_resultset($relation)->get_cache;
|
|
$rs = $rs->[0]; # Does it makes sense to have several values here?
|
|
my $object_class = Koha::Object::_get_object_class( $rs->result_class );
|
|
my $koha_object = $object_class->_new_from_dbic( $rs );
|
|
$related_resultsets = $rs->{related_resultsets};
|
|
%data = ( %data, %{ $koha_object->unblessed } );
|
|
}
|
|
}
|
|
%data = ( %data, %{ $self->unblessed } );
|
|
return \%data;
|
|
}
|
|
|
|
=head3 $object->_result();
|
|
|
|
Returns the internal DBIC Row object
|
|
|
|
=cut
|
|
|
|
sub _result {
|
|
my ($self) = @_;
|
|
|
|
# If we don't have a dbic row at this point, we need to create an empty one
|
|
$self->{_result} ||=
|
|
Koha::Database->new()->schema()->resultset( $self->_type() )->new({});
|
|
|
|
return $self->{_result};
|
|
}
|
|
|
|
=head3 $object->_columns();
|
|
|
|
Returns an arrayref of the table columns
|
|
|
|
=cut
|
|
|
|
sub _columns {
|
|
my ($self) = @_;
|
|
|
|
# If we don't have a dbic row at this point, we need to create an empty one
|
|
$self->{_columns} ||= [ $self->_result()->result_source()->columns() ];
|
|
|
|
return $self->{_columns};
|
|
}
|
|
|
|
sub _get_object_class {
|
|
my ( $type ) = @_;
|
|
return unless $type;
|
|
|
|
if( $type->can('koha_object_class') ) {
|
|
return $type->koha_object_class;
|
|
}
|
|
$type =~ s|Schema::Result::||;
|
|
return ${type};
|
|
}
|
|
|
|
=head3 AUTOLOAD
|
|
|
|
The autoload method is used only to get and set values for an objects properties.
|
|
|
|
=cut
|
|
|
|
sub AUTOLOAD {
|
|
my $self = shift;
|
|
|
|
my $method = our $AUTOLOAD;
|
|
$method =~ s/.*://;
|
|
|
|
my @columns = @{$self->_columns()};
|
|
# Using direct setter/getter like $item->barcode() or $item->barcode($barcode);
|
|
if ( grep {/^$method$/} @columns ) {
|
|
if ( @_ ) {
|
|
$self->_result()->set_column( $method, @_ );
|
|
return $self;
|
|
} else {
|
|
my $value = $self->_result()->get_column( $method );
|
|
return $value;
|
|
}
|
|
}
|
|
|
|
my @known_methods = qw( is_changed id in_storage get_column discard_changes update make_column_dirty );
|
|
|
|
Koha::Exceptions::Object::MethodNotCoveredByTests->throw(
|
|
error => sprintf("The method %s->%s is not covered by tests!", ref($self), $method),
|
|
show_trace => 1
|
|
) unless grep { /^$method$/ } @known_methods;
|
|
|
|
|
|
my $r = eval { $self->_result->$method(@_) };
|
|
if ( $@ ) {
|
|
Koha::Exceptions::Object->throw( ref($self) . "::$method generated this error: " . $@ );
|
|
}
|
|
return $r;
|
|
}
|
|
|
|
=head3 _type
|
|
|
|
This method must be defined in the child class. The value is the name of the DBIC resultset.
|
|
For example, for borrowers, the _type method will return "Borrower".
|
|
|
|
=cut
|
|
|
|
sub _type { }
|
|
|
|
sub DESTROY { }
|
|
|
|
=head1 AUTHOR
|
|
|
|
Kyle M Hall <kyle@bywatersolutions.com>
|
|
|
|
Jonathan Druart <jonathan.druart@bugs.koha-community.org>
|
|
|
|
=cut
|
|
|
|
1;
|