2 # Copyright (C) 2007 LibLime
3 # Joshua Ferraro <jmf@liblime.com>
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 use C4
::External
::Syndetics
qw(get_syndetics_editions);
27 use HTTP
::Request
::Common
;
29 use Koha
::SearchEngine
;
30 use Koha
::SearchEngine
::Search
;
33 #use warnings; FIXME - Bug 2505
34 use vars
qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
41 &get_biblionumber_from_isbn
45 sub get_biblionumber_from_isbn
{
49 my $dbh=C4
::Context
->dbh;
50 my $query = "SELECT biblionumber FROM biblioitems WHERE isbn LIKE ? LIMIT 10";
51 my $sth = $dbh->prepare($query);
53 return $sth->fetchall_arrayref({});
57 C4::XISBN - Functions for retrieving XISBN content in Koha
61 This module provides facilities for retrieving ThingISBN and XISBN content in Koha
65 sub _get_biblio_from_xisbn
{
67 my $dbh = C4
::Context
->dbh;
69 my $searcher = Koha
::SearchEngine
::Search
->new({index => $Koha::SearchEngine
::BIBLIOS_INDEX
});
70 my ( $errors, $results, $total_hits ) = $searcher->simple_search_compat( "nb=$xisbn", 0, 1 );
71 return unless ( !$errors && scalar @
$results );
73 my $record = C4
::Search
::new_record_from_zebra
( 'biblioserver', $results->[0] );
74 my $biblionumber = C4
::Biblio
::get_koha_field_from_marc
('biblio', 'biblionumber', $record, '');
75 return unless $biblionumber;
77 my $xbiblio = GetBiblioData
($biblionumber);
78 return unless $xbiblio;
79 $xbiblio->{normalized_isbn
} = GetNormalizedISBN
($xbiblio->{isbn
});
83 =head1 get_xisbns($isbn);
85 =head2 $isbn is an ISBN string
91 my ($response,$thing_response,$xisbn_response,$syndetics_response);
93 if ( C4
::Context
->preference('ThingISBN') ) {
94 my $url = "http://www.librarything.com/api/thingISBN/".$isbn;
95 $thing_response = _get_url
($url,'thingisbn');
98 if ( C4
::Context
->preference("SyndeticsEnabled") && C4
::Context
->preference("SyndeticsEditions") ) {
99 my $syndetics_preresponse = &get_syndetics_editions
($isbn);
100 my @syndetics_response;
101 for my $response (@
$syndetics_preresponse) {
102 push @syndetics_response, {content
=> $response->{a
}};
104 $syndetics_response = {isbn
=> \
@syndetics_response};
108 if ( C4
::Context
->preference('XISBN') ) {
109 my $affiliate_id=C4
::Context
->preference('OCLCAffiliateID');
110 my $limit = C4
::Context
->preference('XISBNDailyLimit') || 999;
111 my $reached_limit = _service_throttle
('xisbn',$limit);
112 my $url = "http://xisbn.worldcat.org/webservices/xid/isbn/".$isbn."?method=getEditions&format=xml&fl=form,year,lang,ed";
113 $url.="&ai=".$affiliate_id if $affiliate_id;
114 unless ($reached_limit) {
115 $xisbn_response = _get_url
($url,'xisbn');
119 $response->{isbn
} = [ @
{ $xisbn_response->{isbn
} or [] }, @
{ $syndetics_response->{isbn
} or [] }, @
{ $thing_response->{isbn
} or [] } ];
121 my $unique_xisbns; # a hashref
123 # loop through each ISBN and scope to the local collection
124 for my $response_data( @
{ $response->{ isbn
} } ) {
125 next if $response_data->{'content'} eq $isbn;
126 next if $isbn eq $response_data;
127 next if $unique_xisbns->{ $response_data->{content
} };
128 $unique_xisbns->{ $response_data->{content
} }++;
129 my $xbiblio= _get_biblio_from_xisbn
($response_data->{content
});
130 push @xisbns, $xbiblio if $xbiblio;
136 my ($url,$service_type) = @_;
137 my $ua = LWP
::UserAgent
->new(
141 my $response = $ua->get($url);
142 if ($response->is_success) {
143 warn "WARNING could not retrieve $service_type $url" unless $response;
145 my $xmlsimple = XML
::Simple
->new();
146 my $content = $xmlsimple->XMLin(
148 ForceArray
=> [ qw(isbn) ],
154 warn "WARNING: URL Request Failed " . $response->status_line . "\n";
160 # Throttle services to the specified amount
161 sub _service_throttle
{
162 my ($service_type,$daily_limit) = @_;
163 my $dbh = C4
::Context
->dbh;
164 my $sth = $dbh->prepare(q{ SELECT service_count FROM services_throttle WHERE service_type=? });
165 $sth->execute($service_type);
168 if ($sth->rows == 0) {
169 # initialize services throttle
170 my $sth2 = $dbh->prepare(q{ INSERT INTO services_throttle (service_type, service_count) VALUES (?, ?) });
171 $sth2->execute($service_type, $count);
173 $count = $sth->fetchrow_array;
176 # we're over the limit
177 return 1 if $count >= $daily_limit;
181 my $sth3 = $dbh->prepare(q{ UPDATE services_throttle SET service_count=? WHERE service_type=? });
182 $sth3->execute($count, $service_type);
196 Joshua Ferraro <jmf@liblime.com>