Bug 17249: GetKohaAuthorisedValuesFromField - rm GetAuthValCodeFromField
[koha.git] / Koha / Objects.pm
blob9d4d5915bb40646bfda7156f1872fbc8800a8102
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 Koha::Objects->next();
135 my $object = Koha::Objects->next();
137 Returns the next object that is part of this set.
138 Returns undef if there are no more objects to return.
140 =cut
142 sub next {
143 my ( $self ) = @_;
145 my $result = $self->_resultset()->next();
146 return unless $result;
148 my $object = $self->object_class()->_new_from_dbic( $result );
150 return $object;
153 =head3 Koha::Objects->as_list();
155 Koha::Objects->as_list();
157 Returns an arrayref of the objects in this set.
159 =cut
161 sub as_list {
162 my ( $self ) = @_;
164 my @dbic_rows = $self->_resultset()->all();
166 my @objects = $self->_wrap(@dbic_rows);
168 return wantarray ? @objects : \@objects;
171 =head3 Koha::Objects->unblessed
173 Returns an unblessed representation of objects.
175 =cut
177 sub unblessed {
178 my ($self) = @_;
180 return [ map { $_->unblessed } $self->as_list ];
183 =head3 Koha::Objects->_wrap
185 wraps the DBIC object in a corresponding Koha object
187 =cut
189 sub _wrap {
190 my ( $self, @dbic_rows ) = @_;
192 my @objects = map { $self->object_class()->_new_from_dbic( $_ ) } @dbic_rows;
194 return @objects;
197 =head3 Koha::Objects->_resultset
199 Returns the internal resultset or creates it if undefined
201 =cut
203 sub _resultset {
204 my ($self) = @_;
206 if ( ref($self) ) {
207 $self->{_resultset} ||=
208 Koha::Database->new()->schema()->resultset( $self->_type() );
210 return $self->{_resultset};
212 else {
213 return Koha::Database->new()->schema()->resultset( $self->_type() );
217 =head3 columns
219 my @columns = Koha::Objects->columns
221 Return the table columns
223 =cut
225 sub columns {
226 my ( $class ) = @_;
227 return Koha::Database->new->schema->resultset( $class->_type )->result_source->columns;
230 =head3 AUTOLOAD
232 The autoload method is used call DBIx::Class method on a resultset.
234 Important: If you plan to use one of the DBIx::Class methods you must provide
235 relevant tests in t/db_dependent/Koha/Objects.t
236 Currently count, pager, reset, update and delete are covered.
238 =cut
240 sub AUTOLOAD {
241 my ( $self, @params ) = @_;
243 my @known_methods = qw( count pager reset update delete );
244 my $method = our $AUTOLOAD;
245 $method =~ s/.*:://;
247 carp "The method $method is not covered by tests" and return unless grep {/^$method$/} @known_methods;
248 my $r = eval { $self->_resultset->$method(@params) };
249 if ( $@ ) {
250 carp "No method $method found for " . ref($self) . " " . $@;
251 return
253 return $r;
256 =head3 _type
258 The _type method must be set for all child classes.
259 The value returned by it should be the DBIC resultset name.
260 For example, for holds, _type should return 'Reserve'.
262 =cut
264 sub _type { }
266 =head3 object_class
268 This method must be set for all child classes.
269 The value returned by it should be the name of the Koha
270 object class that is returned by this class.
271 For example, for holds, object_class should return 'Koha::Hold'.
273 =cut
275 sub object_class { }
277 sub DESTROY { }
279 =head1 AUTHOR
281 Kyle M Hall <kyle@bywatersolutions.com>
283 =cut