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
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.
30 Koha::Objects - Koha Object set base class
35 my @objects = Koha::Objects->search({ borrowernumber => $borrowernumber});
39 This class must be subclassed.
47 =head3 Koha::Objects->new();
49 my $object = Koha::Objects->new();
57 bless( $self, $class );
60 =head3 Koha::Objects->_new_from_dbic();
62 my $object = Koha::Objects->_new_from_dbic( $resultset );
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 } );
81 my ( $self, $id ) = @_;
85 my $result = $self->_resultset()->find($id);
87 my $object = $self->object_class()->_new_from_dbic( $result );
92 =head3 Koha::Objects->search();
94 my @objects = Koha::Objects->search($params);
99 my ( $self, $params, $attributes ) = @_;
102 my @dbic_rows = $self->_resultset()->search($params, $attributes);
104 return $self->_wrap(@dbic_rows);
108 my $class = ref($self) ?
ref($self) : $self;
109 my $rs = $self->_resultset()->search($params, $attributes);
111 return $class->_new_from_dbic($rs);
115 =head3 Koha::Objects->count();
117 my @objects = Koha::Objects->count($params);
122 my ( $self, $params ) = @_;
124 return $self->_resultset()->count($params);
127 =head3 Koha::Objects->next();
129 my $object = Koha::Objects->next();
131 Returns the next object that is part of this set.
132 Returns undef if there are no more objects to return.
139 my $result = $self->_resultset()->next();
140 return unless $result;
142 my $object = $self->object_class()->_new_from_dbic( $result );
147 =head3 Koha::Objects->reset();
149 Koha::Objects->reset();
151 resets iteration so the next call to next() will start agein
152 with the first object in a set.
159 $self->_resultset()->reset();
164 =head3 Koha::Objects->as_list();
166 Koha::Objects->as_list();
168 Returns an arrayref of the objects in this set.
175 my @dbic_rows = $self->_resultset()->all();
177 my @objects = $self->_wrap(@dbic_rows);
179 return wantarray ?
@objects : \
@objects;
182 =head3 Koha::Objects->_wrap
184 wraps the DBIC object in a corresponding Koha object
189 my ( $self, @dbic_rows ) = @_;
191 my @objects = map { $self->object_class()->_new_from_dbic( $_ ) } @dbic_rows;
196 =head3 Koha::Objects->_resultset
198 Returns the internal resultset or creates it if undefined
206 $self->{_resultset
} ||=
207 Koha
::Database
->new()->schema()->resultset( $self->type() );
209 return $self->{_resultset
};
212 return Koha
::Database
->new()->schema()->resultset( $self->type() );
218 The type method must be set for all child classes.
219 The value returned by it should be the DBIC resultset name.
220 For example, for holds, type should return 'Reserve'.
228 This method must be set for all child classes.
229 The value returned by it should be the name of the Koha
230 object class that is returned by this class.
231 For example, for holds, object_class should return 'Koha::Hold'.
241 Kyle M Hall <kyle@bywatersolutions.com>