3 # Copyright ByWater Solutions 2014
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 use List
::MoreUtils
qw( none );
27 use Koha
::Exceptions
::Object
;
31 Koha::Objects - Koha Object set base class
36 my @objects = Koha::Objects->search({ borrowernumber => $borrowernumber});
40 This class must be subclassed.
48 =head3 Koha::Objects->new();
50 my $object = Koha::Objects->new();
58 bless( $self, $class );
61 =head3 Koha::Objects->_new_from_dbic();
63 my $object = Koha::Objects->_new_from_dbic( $resultset );
68 my ( $class, $resultset ) = @_;
69 my $self = { _resultset
=> $resultset };
71 bless( $self, $class );
74 =head3 Koha::Objects->find();
76 Similar to DBIx::Class::ResultSet->find this method accepts:
77 \%columns_values | @pk_values, { key => $unique_constraint, %attrs }?
78 Strictly speaking, columns_values should only refer to columns under an
81 It returns undef if no results were found
83 my $object = Koha::Objects->find( { col1 => $val1, col2 => $val2 } );
84 my $object = Koha::Objects->find( $id );
85 my $object = Koha::Objects->find( $idpart1, $idpart2, $attrs ); # composite PK
90 my ( $self, @pars ) = @_;
94 unless (!@pars || none
{ defined($_) } @pars) {
95 my $result = $self->_resultset()->find(@pars);
97 $object = $self->object_class()->_new_from_dbic($result);
104 =head3 Koha::Objects->find_or_create();
106 my $object = Koha::Objects->find_or_create( $attrs );
111 my ( $self, $params ) = @_;
113 my $result = $self->_resultset->find_or_create($params);
115 return unless $result;
117 my $object = $self->object_class->_new_from_dbic($result);
125 my @objects = Koha::Objects->search([$params, $attributes]);
127 my $objects = Koha::Objects->search([$params, $attributes]);
128 while (my $object = $objects->next) {
132 This B<instantiates> the I<Koha::Objects> class, and generates a resultset
133 based on the query I<$params> and I<$attributes> that are passed (like in DBIC).
135 In B<list context> it returns an array of I<Koha::Object> objects.
136 In B<scalar context> it returns an iterator.
141 my ( $self, $params, $attributes ) = @_;
144 my @dbic_rows = $self->_resultset()->search($params, $attributes);
146 return $self->_wrap(@dbic_rows);
150 my $class = ref($self) ?
ref($self) : $self;
151 my $rs = $self->_resultset()->search($params, $attributes);
153 return $class->_new_from_dbic($rs);
157 =head3 search_related
159 my @objects = Koha::Objects->search_related( $rel_name, $cond?, \%attrs? );
160 my $objects = Koha::Objects->search_related( $rel_name, $cond?, \%attrs? );
162 Searches the specified relationship, optionally specifying a condition and attributes for matching records.
167 my ( $self, $rel_name, @params ) = @_;
169 return if !$rel_name;
171 my @dbic_rows = $self->_resultset()->search_related($rel_name, @params);
172 return if !@dbic_rows;
173 my $object_class = _get_objects_class
( $dbic_rows[0]->result_class );
175 eval "require $object_class";
176 return _wrap
( $object_class, @dbic_rows );
179 my $rs = $self->_resultset()->search_related($rel_name, @params);
181 my $object_class = _get_objects_class
( $rs->result_class );
183 eval "require $object_class";
184 return _new_from_dbic
( $object_class, $rs );
195 if ( Class
::Inspector
->function_exists( $self->object_class, 'delete' ) ) {
197 $self->_resultset->result_source->schema->txn_do( sub {
198 $self->reset; # If we iterated already over the set
199 while ( my $o = $self->next ) {
204 return $objects_deleted;
207 return $self->_resultset->delete;
212 my $objects = Koha::Objects->new; # or Koha::Objects->search
213 $objects->update( $fields, [ { no_triggers => 0/1 } ] );
215 This method overloads the DBIC inherited one so if code-level triggers exist
216 (through the use of an overloaded I<update> or I<store> method in the Koha::Object
217 based class) those are called in a loop on the resultset.
219 If B<no_triggers> is passed and I<true>, then the DBIC update method is called
220 directly. This feature is important for performance, in cases where no code-level
221 triggers should be triggered. The developer will explicitly ask for this and QA should
222 catch wrong uses as well.
227 my ($self, $fields, $options) = @_;
229 Koha
::Exceptions
::Object
::NotInstantiated
->throw(
234 my $no_triggers = $options->{no_triggers
};
238 && ( Class
::Inspector
->function_exists( $self->object_class, 'update' )
239 or Class
::Inspector
->function_exists( $self->object_class, 'store' ) )
243 $self->_resultset->result_source->schema->txn_do( sub {
244 while ( my $o = $self->next ) {
249 return $objects_updated;
252 return $self->_resultset->update($fields);
257 my $object = Koha::Objects->search({}, { rows => 1 })->single
259 Returns one and only one object that is part of this set.
260 Returns undef if there are no objects found.
262 This is optimal as it will grab the first returned result without instantiating
266 http://search.cpan.org/dist/DBIx-Class/lib/DBIx/Class/Manual/Cookbook.pod#Retrieve_one_and_only_one_row_from_a_resultset
273 my $single = $self->_resultset()->single;
274 return unless $single;
276 return $self->object_class()->_new_from_dbic($single);
279 =head3 Koha::Objects->next();
281 my $object = Koha::Objects->next();
283 Returns the next object that is part of this set.
284 Returns undef if there are no more objects to return.
291 my $result = $self->_resultset()->next();
292 return unless $result;
294 my $object = $self->object_class()->_new_from_dbic( $result );
299 =head3 Koha::Objects->last;
301 my $object = Koha::Objects->last;
303 Returns the last object that is part of this set.
304 Returns undef if there are no object to return.
311 my $count = $self->_resultset->count;
312 return unless $count;
314 my ( $result ) = $self->_resultset->slice($count - 1, $count - 1);
316 my $object = $self->object_class()->_new_from_dbic( $result );
323 my $empty_rs = Koha::Objects->new->empty;
325 Sets the resultset empty. This is handy for consistency on method returns
326 (e.g. if we know in advance we won't have results but want to keep returning
334 Koha
::Exceptions
::Object
::NotInstantiated
->throw(
339 $self->_resultset()->set_cache([]);
344 =head3 Koha::Objects->reset();
346 Koha::Objects->reset();
348 resets iteration so the next call to next() will start agein
349 with the first object in a set.
356 $self->_resultset()->reset();
361 =head3 Koha::Objects->as_list();
363 Koha::Objects->as_list();
365 Returns an arrayref of the objects in this set.
372 my @dbic_rows = $self->_resultset()->all();
374 my @objects = $self->_wrap(@dbic_rows);
376 return wantarray ?
@objects : \
@objects;
379 =head3 Koha::Objects->unblessed
381 Returns an unblessed representation of objects.
388 return [ map { $_->unblessed } $self->as_list ];
391 =head3 Koha::Objects->get_column
393 Return all the values of this set for a given column
398 my ($self, $column_name) = @_;
399 return $self->_resultset->get_column( $column_name )->all;
402 =head3 Koha::Objects->TO_JSON
404 Returns an unblessed representation of objects, suitable for JSON output.
411 return [ map { $_->TO_JSON } $self->as_list ];
414 =head3 Koha::Objects->to_api
416 Returns a representation of the objects, suitable for API output .
421 my ($self, $params) = @_;
423 return [ map { $_->to_api($params) } $self->as_list ];
426 =head3 attributes_from_api
428 my $attributes = $objects->attributes_from_api( $api_attributes );
430 Translates attributes from the API to DBIC
434 sub attributes_from_api
{
435 my ( $self, $attributes ) = @_;
437 $self->{_singular_object
} ||= $self->object_class->new();
438 return $self->{_singular_object
}->attributes_from_api( $attributes );
441 =head3 from_api_mapping
443 my $mapped_attributes_hash = $objects->from_api_mapping;
445 Attributes map from the API to DBIC
449 sub from_api_mapping
{
452 $self->{_singular_object
} ||= $self->object_class->new();
453 return $self->{_singular_object
}->from_api_mapping;
456 =head3 prefetch_whitelist
458 my $whitelist = $object->prefetch_whitelist()
460 Returns a hash of prefetchable subs and the type it returns
464 sub prefetch_whitelist
{
467 $self->{_singular_object
} ||= $self->object_class->new();
469 $self->{_singular_object
}->prefetch_whitelist;
472 =head3 Koha::Objects->_wrap
474 wraps the DBIC object in a corresponding Koha object
479 my ( $self, @dbic_rows ) = @_;
481 my @objects = map { $self->object_class->_new_from_dbic( $_ ) } @dbic_rows;
486 =head3 Koha::Objects->_resultset
488 Returns the internal resultset or creates it if undefined
496 $self->{_resultset
} ||=
497 Koha
::Database
->new()->schema()->resultset( $self->_type() );
499 return $self->{_resultset
};
502 return Koha
::Database
->new()->schema()->resultset( $self->_type() );
506 sub _get_objects_class
{
510 if( $type->can('koha_objects_class') ) {
511 return $type->koha_objects_class;
513 $type =~ s
|Schema
::Result
::||;
519 my @columns = Koha::Objects->columns
521 Return the table columns
527 return Koha
::Database
->new->schema->resultset( $class->_type )->result_source->columns;
532 The autoload method is used call DBIx::Class method on a resultset.
534 Important: If you plan to use one of the DBIx::Class methods you must provide
535 relevant tests in t/db_dependent/Koha/Objects.t
536 Currently count, is_paged, pager, result_class, single and slice are covered.
541 my ( $self, @params ) = @_;
543 my @known_methods = qw( count is_paged pager result_class single slice );
544 my $method = our $AUTOLOAD;
548 unless ( grep { $_ eq $method } @known_methods ) {
549 my $class = ref($self) ?
ref($self) : $self;
550 Koha
::Exceptions
::Object
::MethodNotCoveredByTests
->throw(
551 error
=> sprintf("The method %s->%s is not covered by tests!", $class, $method),
556 my $r = eval { $self->_resultset->$method(@params) };
558 carp
"No method $method found for " . ref($self) . " " . $@
;
566 The _type method must be set for all child classes.
567 The value returned by it should be the DBIC resultset name.
568 For example, for holds, _type should return 'Reserve'.
576 This method must be set for all child classes.
577 The value returned by it should be the name of the Koha
578 object class that is returned by this class.
579 For example, for holds, object_class should return 'Koha::Hold'.
589 Kyle M Hall <kyle@bywatersolutions.com>