Bug 25898: Prohibit indirect object notation
[koha.git] / Koha / OAI / Server / ListSets.pm
blob68264787f1f6a3bd1fa76faf5603357ce049aed4
1 # Copyright Tamil s.a.r.l. 2008-2015
2 # Copyright Biblibre 2008-2015
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19 package Koha::OAI::Server::ListSets;
21 use Modern::Perl;
22 use HTTP::OAI;
23 use Koha::OAI::Server::ResumptionToken;
24 use Koha::OAI::Server::Description;
25 use C4::OAI::Sets;
27 use base ("HTTP::OAI::ListSets");
30 sub new {
31 my ( $class, $repository, %args ) = @_;
33 my $self = HTTP::OAI::ListSets->new(%args);
34 my $token = Koha::OAI::Server::ResumptionToken->new(%args);
35 my $sets = GetOAISets;
36 my $pos = 0;
37 foreach my $set (@$sets) {
38 if ($pos < $token->{offset}) {
39 $pos++;
40 next;
42 my @descriptions = map {
43 Koha::OAI::Server::Description->new( setDescription => $_ );
44 } @{$set->{'descriptions'}};
45 $self->set(
46 HTTP::OAI::Set->new(
47 setSpec => $set->{'spec'},
48 setName => $set->{'name'},
49 setDescription => \@descriptions,
52 $pos++;
53 last if ($pos + 1 - $token->{offset}) > $repository->{koha_max_count};
56 $self->resumptionToken(
57 Koha::OAI::Server::ResumptionToken->new(
58 metadataPrefix => $token->{metadata_prefix},
59 offset => $pos
61 ) if ( $pos > $token->{offset} );
63 return $self;