Bug 30195: Remove second parameter for GetMarcFromKohaField
[koha.git] / C4 / XISBN.pm
1 package C4::XISBN;
2
3 # Copyright (C) 2007 LibLime
4 # Joshua Ferraro <jmf@liblime.com>
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 use Modern::Perl;
22 use XML::Simple;
23
24 use C4::Biblio qw(TransformMarcToKoha);
25 use C4::Koha qw( GetNormalizedISBN );
26 use C4::Search qw( new_record_from_zebra );
27 use C4::External::Syndetics qw( get_syndetics_editions );
28 use LWP::UserAgent;
29
30 use Koha::Biblios;
31 use Koha::SearchEngine;
32 use Koha::SearchEngine::Search;
33
34 our (@ISA, @EXPORT_OK);
35 BEGIN {
36     require Exporter;
37     @ISA       = qw(Exporter);
38     @EXPORT_OK = qw(
39       get_xisbns
40     );
41 }
42
43 =head1 NAME
44
45 C4::XISBN - Functions for retrieving XISBN content in Koha
46
47 =head1 FUNCTIONS
48
49 This module provides facilities for retrieving ThingISBN and XISBN content in Koha
50
51 =cut
52
53 sub _get_biblio_from_xisbn {
54     my $xisbn = shift;
55     my $dbh = C4::Context->dbh;
56
57     my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});
58     my ( $errors, $results, $total_hits ) = $searcher->simple_search_compat( "nb=$xisbn", 0, 1 );
59     return unless ( !$errors && scalar @$results );
60
61     my $record = C4::Search::new_record_from_zebra( 'biblioserver', $results->[0] );
62     my $biblionumber = C4::Biblio::TransformMarcToKoha({
63         kohafields => ['biblio.biblionumber'],
64         record => $record
65     })->{biblionumber};
66     return unless $biblionumber;
67
68     my $biblio = Koha::Biblios->find( $biblionumber );
69     return unless $biblio;
70     my $isbn = $biblio->biblioitem->isbn;
71     $biblio = $biblio->unblessed;
72     $biblio->{normalized_isbn} = GetNormalizedISBN($isbn);
73     return $biblio;
74 }
75
76 =head1 get_xisbns($isbn, $biblionumber);
77
78 =head2 $isbn is an ISBN string
79
80 =cut
81
82 sub get_xisbns {
83     my ( $isbn, $biblionumber ) = @_;
84     my ($response,$thing_response,$syndetics_response,$errors);
85     # THINGISBN
86     if ( C4::Context->preference('ThingISBN') ) {
87         my $url = "http://www.librarything.com/api/thingISBN/".$isbn;
88         $thing_response = _get_url($url,'thingisbn');
89     }
90
91         if ( C4::Context->preference("SyndeticsEnabled") && C4::Context->preference("SyndeticsEditions") ) {
92         my $syndetics_preresponse = &get_syndetics_editions($isbn);
93                 my @syndetics_response;
94                 for my $response (@$syndetics_preresponse) {
95                         push @syndetics_response, {content => $response->{a}};
96                 }
97                 $syndetics_response = {isbn => \@syndetics_response};
98         }
99
100     $response->{isbn} = [ @{ $syndetics_response->{isbn} or [] }, @{ $thing_response->{isbn} or [] } ];
101     my @xisbns;
102     my $unique_xisbns; # a hashref
103
104     # loop through each ISBN and scope to the local collection
105     for my $response_data( @{ $response->{ isbn } } ) {
106         next if $unique_xisbns->{ $response_data->{content} };
107         $unique_xisbns->{ $response_data->{content} }++;
108         my $xbiblio= _get_biblio_from_xisbn($response_data->{content});
109         next unless $xbiblio;
110         push @xisbns, $xbiblio if $xbiblio && $xbiblio->{biblionumber} ne $biblionumber;
111     }
112     if ( wantarray ) {
113         return (\@xisbns, $errors);
114     }
115     else {
116         return \@xisbns;
117     }
118 }
119
120 sub _get_url {
121     my ($url,$service_type) = @_;
122     my $ua = LWP::UserAgent->new(
123         timeout => 2
124         );
125
126     my $response = $ua->get($url);
127     if ($response->is_success) {
128         warn "WARNING could not retrieve $service_type $url" unless $response;
129         if ($response) {
130             my $xmlsimple = XML::Simple->new();
131             my $content = $xmlsimple->XMLin(
132             $response->content,
133             ForceArray => [ qw(isbn) ],
134             ForceContent => 1,
135             );
136             return $content;
137         }
138     } else {
139         warn "WARNING: URL Request Failed " . $response->status_line . "\n";
140     }
141
142 }
143
144 1;
145 __END__
146
147 =head1 NOTES
148
149 =cut
150
151 =head1 AUTHOR
152
153 Joshua Ferraro <jmf@liblime.com>
154
155 =cut
156