Bug 14333: Update MARC21 frameworks to Update No. 20 and 21
[koha.git] / Koha / Objects.pm
blob8ef6390f7a20815ce16ec4173127f7b0aee07d1b
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 our $type;
28 =head1 NAME
30 Koha::Objects - Koha Object set base class
32 =head1 SYNOPSIS
34 use Koha::Objects;
35 my @objects = Koha::Objects->search({ borrowernumber => $borrowernumber});
37 =head1 DESCRIPTION
39 This class must be subclassed.
41 =head1 API
43 =head2 Class Methods
45 =cut
47 =head3 Koha::Objects->new();
49 my $object = Koha::Objects->new();
51 =cut
53 sub new {
54 my ($class) = @_;
55 my $self = {};
57 bless( $self, $class );
60 =head3 Koha::Objects->_new_from_dbic();
62 my $object = Koha::Objects->_new_from_dbic( $resultset );
64 =cut
66 sub _new_from_dbic {
67 my ( $class, $resultset ) = @_;
68 my $self = { _resultset => $resultset };
70 bless( $self, $class );
73 =head3 Koha::Objects->find();
75 my $object = Koha::Objects->find($id);
76 my $object = Koha::Objects->find( { keypart1 => $keypart1, keypart2 => $keypart2 } );
78 =cut
80 sub find {
81 my ( $self, $id ) = @_;
83 return unless $id;
85 my $result = $self->_resultset()->find($id);
87 return unless $result;
89 my $object = $self->object_class()->_new_from_dbic( $result );
91 return $object;
94 =head3 Koha::Objects->search();
96 my @objects = Koha::Objects->search($params);
98 =cut
100 sub search {
101 my ( $self, $params, $attributes ) = @_;
103 if (wantarray) {
104 my @dbic_rows = $self->_resultset()->search($params, $attributes);
106 return $self->_wrap(@dbic_rows);
109 else {
110 my $class = ref($self) ? ref($self) : $self;
111 my $rs = $self->_resultset()->search($params, $attributes);
113 return $class->_new_from_dbic($rs);
117 =head3 Koha::Objects->count();
119 my @objects = Koha::Objects->count($params);
121 =cut
123 sub count {
124 my ( $self, $params ) = @_;
126 return $self->_resultset()->count($params);
129 =head3 Koha::Objects->next();
131 my $object = Koha::Objects->next();
133 Returns the next object that is part of this set.
134 Returns undef if there are no more objects to return.
136 =cut
138 sub next {
139 my ( $self ) = @_;
141 my $result = $self->_resultset()->next();
142 return unless $result;
144 my $object = $self->object_class()->_new_from_dbic( $result );
146 return $object;
149 =head3 Koha::Objects->reset();
151 Koha::Objects->reset();
153 resets iteration so the next call to next() will start agein
154 with the first object in a set.
156 =cut
158 sub reset {
159 my ( $self ) = @_;
161 $self->_resultset()->reset();
163 return $self;
166 =head3 Koha::Objects->as_list();
168 Koha::Objects->as_list();
170 Returns an arrayref of the objects in this set.
172 =cut
174 sub as_list {
175 my ( $self ) = @_;
177 my @dbic_rows = $self->_resultset()->all();
179 my @objects = $self->_wrap(@dbic_rows);
181 return wantarray ? @objects : \@objects;
184 =head3 Koha::Objects->_wrap
186 wraps the DBIC object in a corresponding Koha object
188 =cut
190 sub _wrap {
191 my ( $self, @dbic_rows ) = @_;
193 my @objects = map { $self->object_class()->_new_from_dbic( $_ ) } @dbic_rows;
195 return @objects;
198 =head3 Koha::Objects->_resultset
200 Returns the internal resultset or creates it if undefined
202 =cut
204 sub _resultset {
205 my ($self) = @_;
207 if ( ref($self) ) {
208 $self->{_resultset} ||=
209 Koha::Database->new()->schema()->resultset( $self->type() );
211 return $self->{_resultset};
213 else {
214 return Koha::Database->new()->schema()->resultset( $self->type() );
218 =head3 type
220 The type method must be set for all child classes.
221 The value returned by it should be the DBIC resultset name.
222 For example, for holds, type should return 'Reserve'.
224 =cut
226 sub type { }
228 =head3 object_class
230 This method must be set for all child classes.
231 The value returned by it should be the name of the Koha
232 object class that is returned by this class.
233 For example, for holds, object_class should return 'Koha::Hold'.
235 =cut
237 sub object_class { }
239 sub DESTROY { }
241 =head1 AUTHOR
243 Kyle M Hall <kyle@bywatersolutions.com>
245 =cut