Bug 18332: [QA Follow-up] Adjust slice call in last method
[koha.git] / Koha / Objects.pm
blob41fee3507e85247cd7703e58caf4ebb63d2f3187
1 package Koha::Objects;
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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 use Modern::Perl;
22 use Carp;
24 use Koha::Database;
26 =head1 NAME
28 Koha::Objects - Koha Object set base class
30 =head1 SYNOPSIS
32 use Koha::Objects;
33 my @objects = Koha::Objects->search({ borrowernumber => $borrowernumber});
35 =head1 DESCRIPTION
37 This class must be subclassed.
39 =head1 API
41 =head2 Class Methods
43 =cut
45 =head3 Koha::Objects->new();
47 my $object = Koha::Objects->new();
49 =cut
51 sub new {
52 my ($class) = @_;
53 my $self = {};
55 bless( $self, $class );
58 =head3 Koha::Objects->_new_from_dbic();
60 my $object = Koha::Objects->_new_from_dbic( $resultset );
62 =cut
64 sub _new_from_dbic {
65 my ( $class, $resultset ) = @_;
66 my $self = { _resultset => $resultset };
68 bless( $self, $class );
71 =head3 Koha::Objects->find();
73 my $object = Koha::Objects->find($id);
74 my $object = Koha::Objects->find( { keypart1 => $keypart1, keypart2 => $keypart2 } );
76 =cut
78 sub find {
79 my ( $self, $id ) = @_;
81 return unless defined($id);
83 my $result = $self->_resultset()->find($id);
85 return unless $result;
87 my $object = $self->object_class()->_new_from_dbic( $result );
89 return $object;
92 =head3 Koha::Objects->find_or_create();
94 my $object = Koha::Objects->find_or_create( $attrs );
96 =cut
98 sub find_or_create {
99 my ( $self, $params ) = @_;
101 my $result = $self->_resultset->find_or_create($params);
103 return unless $result;
105 my $object = $self->object_class->_new_from_dbic($result);
107 return $object;
110 =head3 Koha::Objects->search();
112 my @objects = Koha::Objects->search($params);
114 =cut
116 sub search {
117 my ( $self, $params, $attributes ) = @_;
119 if (wantarray) {
120 my @dbic_rows = $self->_resultset()->search($params, $attributes);
122 return $self->_wrap(@dbic_rows);
125 else {
126 my $class = ref($self) ? ref($self) : $self;
127 my $rs = $self->_resultset()->search($params, $attributes);
129 return $class->_new_from_dbic($rs);
133 =head3 search_related
135 my @objects = Koha::Objects->search_related( $rel_name, $cond?, \%attrs? );
136 my $objects = Koha::Objects->search_related( $rel_name, $cond?, \%attrs? );
138 Searches the specified relationship, optionally specifying a condition and attributes for matching records.
140 =cut
142 sub search_related {
143 my ( $self, $rel_name, @params ) = @_;
145 return if !$rel_name;
146 if (wantarray) {
147 my @dbic_rows = $self->_resultset()->search_related($rel_name, @params);
148 return if !@dbic_rows;
149 my $object_class = _get_objects_class( $dbic_rows[0]->result_class );
151 eval "require $object_class";
152 return _wrap( $object_class, @dbic_rows );
154 } else {
155 my $rs = $self->_resultset()->search_related($rel_name, @params);
156 return if !$rs;
157 my $object_class = _get_objects_class( $rs->result_class );
159 eval "require $object_class";
160 return _new_from_dbic( $object_class, $rs );
164 =head3 single
166 my $object = Koha::Objects->search({}, { rows => 1 })->single
168 Returns one and only one object that is part of this set.
169 Returns undef if there are no objects found.
171 This is optimal as it will grab the first returned result without instantiating
172 a cursor.
174 See:
175 http://search.cpan.org/dist/DBIx-Class/lib/DBIx/Class/Manual/Cookbook.pod#Retrieve_one_and_only_one_row_from_a_resultset
177 =cut
179 sub single {
180 my ($self) = @_;
182 my $single = $self->_resultset()->single;
183 return unless $single;
185 return $self->object_class()->_new_from_dbic($single);
188 =head3 Koha::Objects->next();
190 my $object = Koha::Objects->next();
192 Returns the next object that is part of this set.
193 Returns undef if there are no more objects to return.
195 =cut
197 sub next {
198 my ( $self ) = @_;
200 my $result = $self->_resultset()->next();
201 return unless $result;
203 my $object = $self->object_class()->_new_from_dbic( $result );
205 return $object;
208 =head3 Koha::Objects->last;
210 my $object = Koha::Objects->last;
212 Returns the last object that is part of this set.
213 Returns undef if there are no object to return.
215 =cut
217 sub last {
218 my ( $self ) = @_;
220 my $count = $self->_resultset->count;
221 return unless $count;
223 my ( $result ) = $self->_resultset->slice($count - 1, $count - 1);
225 my $object = $self->object_class()->_new_from_dbic( $result );
227 return $object;
232 =head3 Koha::Objects->reset();
234 Koha::Objects->reset();
236 resets iteration so the next call to next() will start agein
237 with the first object in a set.
239 =cut
241 sub reset {
242 my ( $self ) = @_;
244 $self->_resultset()->reset();
246 return $self;
249 =head3 Koha::Objects->as_list();
251 Koha::Objects->as_list();
253 Returns an arrayref of the objects in this set.
255 =cut
257 sub as_list {
258 my ( $self ) = @_;
260 my @dbic_rows = $self->_resultset()->all();
262 my @objects = $self->_wrap(@dbic_rows);
264 return wantarray ? @objects : \@objects;
267 =head3 Koha::Objects->unblessed
269 Returns an unblessed representation of objects.
271 =cut
273 sub unblessed {
274 my ($self) = @_;
276 return [ map { $_->unblessed } $self->as_list ];
279 =head3 Koha::Objects->TO_JSON
281 Returns an unblessed representation of objects, suitable for JSON output.
283 =cut
285 sub TO_JSON {
286 my ($self) = @_;
288 return [ map { $_->TO_JSON } $self->as_list ];
291 =head3 Koha::Objects->_wrap
293 wraps the DBIC object in a corresponding Koha object
295 =cut
297 sub _wrap {
298 my ( $self, @dbic_rows ) = @_;
300 my @objects = map { $self->object_class->_new_from_dbic( $_ ) } @dbic_rows;
302 return @objects;
305 =head3 Koha::Objects->_resultset
307 Returns the internal resultset or creates it if undefined
309 =cut
311 sub _resultset {
312 my ($self) = @_;
314 if ( ref($self) ) {
315 $self->{_resultset} ||=
316 Koha::Database->new()->schema()->resultset( $self->_type() );
318 return $self->{_resultset};
320 else {
321 return Koha::Database->new()->schema()->resultset( $self->_type() );
325 sub _get_objects_class {
326 my ( $type ) = @_;
327 return unless $type;
329 if( $type->can('koha_objects_class') ) {
330 return $type->koha_objects_class;
332 $type =~ s|Schema::Result::||;
333 return "${type}s";
336 =head3 columns
338 my @columns = Koha::Objects->columns
340 Return the table columns
342 =cut
344 sub columns {
345 my ( $class ) = @_;
346 return Koha::Database->new->schema->resultset( $class->_type )->result_source->columns;
349 =head3 AUTOLOAD
351 The autoload method is used call DBIx::Class method on a resultset.
353 Important: If you plan to use one of the DBIx::Class methods you must provide
354 relevant tests in t/db_dependent/Koha/Objects.t
355 Currently count, pager, update and delete are covered.
357 =cut
359 sub AUTOLOAD {
360 my ( $self, @params ) = @_;
362 my @known_methods = qw( count pager update delete result_class single slice );
363 my $method = our $AUTOLOAD;
364 $method =~ s/.*:://;
366 carp "The method $method is not covered by tests" and return unless grep {/^$method$/} @known_methods;
367 my $r = eval { $self->_resultset->$method(@params) };
368 if ( $@ ) {
369 carp "No method $method found for " . ref($self) . " " . $@;
370 return
372 return $r;
375 =head3 _type
377 The _type method must be set for all child classes.
378 The value returned by it should be the DBIC resultset name.
379 For example, for holds, _type should return 'Reserve'.
381 =cut
383 sub _type { }
385 =head3 object_class
387 This method must be set for all child classes.
388 The value returned by it should be the name of the Koha
389 object class that is returned by this class.
390 For example, for holds, object_class should return 'Koha::Hold'.
392 =cut
394 sub object_class { }
396 sub DESTROY { }
398 =head1 AUTHOR
400 Kyle M Hall <kyle@bywatersolutions.com>
402 =cut