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
::GetRecord
;
27 use base
("HTTP::OAI::GetRecord");
31 my ($class, $repository, %args) = @_;
33 my $self = HTTP
::OAI
::GetRecord
->new(%args);
35 my $prefix = $repository->{koha_identifier
} . ':';
36 my ($biblionumber) = $args{identifier
} =~ /^$prefix(.*)/;
37 my $items_included = $repository->items_included( $args{metadataPrefix
} );
38 my $dbh = C4
::Context
->dbh;
44 my @bind_params = ($biblionumber);
45 if ( $items_included ) {
46 # Take latest timestamp of biblio and any items
49 SELECT timestamp from deleteditems
52 SELECT timestamp from items
55 push @bind_params, $biblionumber;
56 push @bind_params, $biblionumber;
63 my $sth = $dbh->prepare( $sql ) || die( 'Could not prepare statement: ' . $dbh->errstr );
64 $sth->execute( @bind_params ) || die( 'Could not execute statement: ' . $sth->errstr );
65 my ($timestamp, $deleted);
66 unless ( ($timestamp = $sth->fetchrow) ) {
72 @bind_params = ($biblionumber);
74 if ( $items_included ) {
75 # Take latest timestamp among biblio and items
78 SELECT timestamp from deleteditems
81 push @bind_params, $biblionumber;
88 $sth = $dbh->prepare($sql) || die('Could not prepare statement: ' . $dbh->errstr);
89 $sth->execute( @bind_params ) || die('Could not execute statement: ' . $sth->errstr);
90 unless ( ($timestamp = $sth->fetchrow) )
92 return HTTP
::OAI
::Response
->new(
93 requestURL
=> $repository->self_url(),
94 errors
=> [ new HTTP
::OAI
::Error
(
95 code
=> 'idDoesNotExist',
96 message
=> "There is no biblio record with this identifier",
103 my $oai_sets = GetOAISetsBiblio
($biblionumber);
105 foreach (@
$oai_sets) {
106 push @setSpecs, $_->{spec
};
111 Koha
::OAI
::Server
::DeletedRecord
->new($timestamp, \
@setSpecs, %args)
114 # We fetch it using this method, rather than the database directly,
115 # so it'll include the item data
117 $marcxml = $repository->get_biblio_marcxml($biblionumber, $args{metadataPrefix
})
121 Koha
::OAI
::Server
::Record
->new($repository, $marcxml, $timestamp, \
@setSpecs, %args)