Bug 17579: Make sure we are testing the real life
[koha.git] / Koha / OAI / Server / Identify.pm
1 # Copyright Tamil s.a.r.l. 2008-2015
2 # Copyright Biblibre 2008-2015
3 #
4 # This file is part of Koha.
5 #
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.
10 #
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.
15 #
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>.
18
19 package Koha::OAI::Server::Identify;
20
21 use Modern::Perl;
22 use HTTP::OAI;
23 use C4::Context;
24
25 use base ("HTTP::OAI::Identify");
26
27 sub new {
28     my ($class, $repository) = @_;
29
30     my ($baseURL) = $repository->self_url() =~ /(.*)\?.*/;
31     my $self = $class->SUPER::new(
32         baseURL             => $baseURL,
33         repositoryName      => C4::Context->preference("LibraryName"),
34         adminEmail          => C4::Context->preference("KohaAdminEmailAddress"),
35         MaxCount            => C4::Context->preference("OAI-PMH:MaxCount"),
36         granularity         => 'YYYY-MM-DD',
37         earliestDatestamp   => '0001-01-01',
38         deletedRecord       => C4::Context->preference("OAI-PMH:DeletedRecord") || 'no',
39     );
40
41     # FIXME - alas, the description element is not so simple; to validate
42     # against the OAI-PMH schema, it cannot contain just a string,
43     # but one or more elements that validate against another XML schema.
44     # For now, simply omitting it.
45     # $self->description( "Koha OAI Repository" );
46
47     $self->compression( 'gzip' );
48
49     return $self;
50 }
51
52 1;