Bug 21637: Fixed upercase letter in EasyAnalyticalRecords syspref
[koha.git] / Koha / Objects.pm
blobda43003c88ab82f69f87dfe3d465f91820174dec
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;
23 use List::MoreUtils qw( none );
25 use Koha::Database;
27 =head1 NAME
29 Koha::Objects - Koha Object set base class
31 =head1 SYNOPSIS
33 use Koha::Objects;
34 my @objects = Koha::Objects->search({ borrowernumber => $borrowernumber});
36 =head1 DESCRIPTION
38 This class must be subclassed.
40 =head1 API
42 =head2 Class Methods
44 =cut
46 =head3 Koha::Objects->new();
48 my $object = Koha::Objects->new();
50 =cut
52 sub new {
53 my ($class) = @_;
54 my $self = {};
56 bless( $self, $class );
59 =head3 Koha::Objects->_new_from_dbic();
61 my $object = Koha::Objects->_new_from_dbic( $resultset );
63 =cut
65 sub _new_from_dbic {
66 my ( $class, $resultset ) = @_;
67 my $self = { _resultset => $resultset };
69 bless( $self, $class );
72 =head3 Koha::Objects->find();
74 Similar to DBIx::Class::ResultSet->find this method accepts:
75 \%columns_values | @pk_values, { key => $unique_constraint, %attrs }?
76 Strictly speaking, columns_values should only refer to columns under an
77 unique constraint.
79 my $object = Koha::Objects->find( { col1 => $val1, col2 => $val2 } );
80 my $object = Koha::Objects->find( $id );
81 my $object = Koha::Objects->find( $idpart1, $idpart2, $attrs ); # composite PK
83 =cut
85 sub find {
86 my ( $self, @pars ) = @_;
88 croak 'Cannot use "->find" in list context' if wantarray;
90 return if !@pars || none { defined($_) } @pars;
92 my $result = $self->_resultset()->find( @pars );
94 return unless $result;
96 my $object = $self->object_class()->_new_from_dbic( $result );
98 return $object;
101 =head3 Koha::Objects->find_or_create();
103 my $object = Koha::Objects->find_or_create( $attrs );
105 =cut
107 sub find_or_create {
108 my ( $self, $params ) = @_;
110 my $result = $self->_resultset->find_or_create($params);
112 return unless $result;
114 my $object = $self->object_class->_new_from_dbic($result);
116 return $object;
119 =head3 Koha::Objects->search();
121 my @objects = Koha::Objects->search($params);
123 =cut
125 sub search {
126 my ( $self, $params, $attributes ) = @_;
128 if (wantarray) {
129 my @dbic_rows = $self->_resultset()->search($params, $attributes);
131 return $self->_wrap(@dbic_rows);
134 else {
135 my $class = ref($self) ? ref($self) : $self;
136 my $rs = $self->_resultset()->search($params, $attributes);
138 return $class->_new_from_dbic($rs);
142 =head3 search_related
144 my @objects = Koha::Objects->search_related( $rel_name, $cond?, \%attrs? );
145 my $objects = Koha::Objects->search_related( $rel_name, $cond?, \%attrs? );
147 Searches the specified relationship, optionally specifying a condition and attributes for matching records.
149 =cut
151 sub search_related {
152 my ( $self, $rel_name, @params ) = @_;
154 return if !$rel_name;
155 if (wantarray) {
156 my @dbic_rows = $self->_resultset()->search_related($rel_name, @params);
157 return if !@dbic_rows;
158 my $object_class = _get_objects_class( $dbic_rows[0]->result_class );
160 eval "require $object_class";
161 return _wrap( $object_class, @dbic_rows );
163 } else {
164 my $rs = $self->_resultset()->search_related($rel_name, @params);
165 return if !$rs;
166 my $object_class = _get_objects_class( $rs->result_class );
168 eval "require $object_class";
169 return _new_from_dbic( $object_class, $rs );
173 =head3 single
175 my $object = Koha::Objects->search({}, { rows => 1 })->single
177 Returns one and only one object that is part of this set.
178 Returns undef if there are no objects found.
180 This is optimal as it will grab the first returned result without instantiating
181 a cursor.
183 See:
184 http://search.cpan.org/dist/DBIx-Class/lib/DBIx/Class/Manual/Cookbook.pod#Retrieve_one_and_only_one_row_from_a_resultset
186 =cut
188 sub single {
189 my ($self) = @_;
191 my $single = $self->_resultset()->single;
192 return unless $single;
194 return $self->object_class()->_new_from_dbic($single);
197 =head3 Koha::Objects->next();
199 my $object = Koha::Objects->next();
201 Returns the next object that is part of this set.
202 Returns undef if there are no more objects to return.
204 =cut
206 sub next {
207 my ( $self ) = @_;
209 my $result = $self->_resultset()->next();
210 return unless $result;
212 my $object = $self->object_class()->_new_from_dbic( $result );
214 return $object;
217 =head3 Koha::Objects->last;
219 my $object = Koha::Objects->last;
221 Returns the last object that is part of this set.
222 Returns undef if there are no object to return.
224 =cut
226 sub last {
227 my ( $self ) = @_;
229 my $count = $self->_resultset->count;
230 return unless $count;
232 my ( $result ) = $self->_resultset->slice($count - 1, $count - 1);
234 my $object = $self->object_class()->_new_from_dbic( $result );
236 return $object;
241 =head3 Koha::Objects->reset();
243 Koha::Objects->reset();
245 resets iteration so the next call to next() will start agein
246 with the first object in a set.
248 =cut
250 sub reset {
251 my ( $self ) = @_;
253 $self->_resultset()->reset();
255 return $self;
258 =head3 Koha::Objects->as_list();
260 Koha::Objects->as_list();
262 Returns an arrayref of the objects in this set.
264 =cut
266 sub as_list {
267 my ( $self ) = @_;
269 my @dbic_rows = $self->_resultset()->all();
271 my @objects = $self->_wrap(@dbic_rows);
273 return wantarray ? @objects : \@objects;
276 =head3 Koha::Objects->unblessed
278 Returns an unblessed representation of objects.
280 =cut
282 sub unblessed {
283 my ($self) = @_;
285 return [ map { $_->unblessed } $self->as_list ];
288 =head3 Koha::Objects->get_column
290 Return all the values of this set for a given column
292 =cut
294 sub get_column {
295 my ($self, $column_name) = @_;
296 return $self->_resultset->get_column( $column_name )->all;
299 =head3 Koha::Objects->TO_JSON
301 Returns an unblessed representation of objects, suitable for JSON output.
303 =cut
305 sub TO_JSON {
306 my ($self) = @_;
308 return [ map { $_->TO_JSON } $self->as_list ];
311 =head3 Koha::Objects->_wrap
313 wraps the DBIC object in a corresponding Koha object
315 =cut
317 sub _wrap {
318 my ( $self, @dbic_rows ) = @_;
320 my @objects = map { $self->object_class->_new_from_dbic( $_ ) } @dbic_rows;
322 return @objects;
325 =head3 Koha::Objects->_resultset
327 Returns the internal resultset or creates it if undefined
329 =cut
331 sub _resultset {
332 my ($self) = @_;
334 if ( ref($self) ) {
335 $self->{_resultset} ||=
336 Koha::Database->new()->schema()->resultset( $self->_type() );
338 return $self->{_resultset};
340 else {
341 return Koha::Database->new()->schema()->resultset( $self->_type() );
345 sub _get_objects_class {
346 my ( $type ) = @_;
347 return unless $type;
349 if( $type->can('koha_objects_class') ) {
350 return $type->koha_objects_class;
352 $type =~ s|Schema::Result::||;
353 return "${type}s";
356 =head3 columns
358 my @columns = Koha::Objects->columns
360 Return the table columns
362 =cut
364 sub columns {
365 my ( $class ) = @_;
366 return Koha::Database->new->schema->resultset( $class->_type )->result_source->columns;
369 =head3 AUTOLOAD
371 The autoload method is used call DBIx::Class method on a resultset.
373 Important: If you plan to use one of the DBIx::Class methods you must provide
374 relevant tests in t/db_dependent/Koha/Objects.t
375 Currently count, pager, update and delete are covered.
377 =cut
379 sub AUTOLOAD {
380 my ( $self, @params ) = @_;
382 my @known_methods = qw( count is_paged pager update delete result_class single slice );
383 my $method = our $AUTOLOAD;
384 $method =~ s/.*:://;
387 unless ( grep { /^$method$/ } @known_methods ) {
388 my $class = ref($self) ? ref($self) : $self;
389 Koha::Exceptions::Object::MethodNotCoveredByTests->throw(
390 error => sprintf("The method %s->%s is not covered by tests!", $class, $method),
391 show_trace => 1
395 my $r = eval { $self->_resultset->$method(@params) };
396 if ( $@ ) {
397 carp "No method $method found for " . ref($self) . " " . $@;
398 return
400 return $r;
403 =head3 _type
405 The _type method must be set for all child classes.
406 The value returned by it should be the DBIC resultset name.
407 For example, for holds, _type should return 'Reserve'.
409 =cut
411 sub _type { }
413 =head3 object_class
415 This method must be set for all child classes.
416 The value returned by it should be the name of the Koha
417 object class that is returned by this class.
418 For example, for holds, object_class should return 'Koha::Hold'.
420 =cut
422 sub object_class { }
424 sub DESTROY { }
426 =head1 AUTHOR
428 Kyle M Hall <kyle@bywatersolutions.com>
430 =cut