Koha/C4/External/Amazon.pm
Galen Charlton 3cfa84362f bug 3219: handle variation in Amazon responses
An Amazon ItemLookup response can sometimes have
more than one Item element, where the ones after
the first appear to be cross references to items
that have the same ISBN.  Changed parsing so that
those responses are no longer treated like pseudohashes.

This fixes the following crash:

[error] detail.pl: Pseudo-hashes are deprecated at /catalogue/detail.pl line
213., referer: /cgi-bin/koha/catalogue/detail.pl

Which may lead to a nasty:
[error] Out of memory!, referer: /cgi-bin/koha/catalogue/detail.pl

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
2009-05-27 07:06:20 -05:00

185 lines
5 KiB
Perl

package C4::External::Amazon;
# Copyright (C) 2006 LibLime
# <jmf at liblime dot com>
#
# This file is part of Koha.
#
# Koha is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA
use XML::Simple;
use LWP::Simple;
use LWP::UserAgent;
use HTTP::Request::Common;
use C4::Koha;
use strict;
use warnings;
use vars qw($VERSION @ISA @EXPORT);
BEGIN {
require Exporter;
$VERSION = 0.03;
@ISA = qw(Exporter);
@EXPORT = qw(
get_amazon_details
get_amazon_tld
);
}
sub get_amazon_tld {
my %tld = (
CA => '.ca',
DE => '.de',
FR => '.fr',
JP => '.jp',
UK => '.co.uk',
US => '.com',
);
my $locale = C4::Context->preference('AmazonLocale');
my $tld = $tld{ $locale } || '.com'; # default top level domain is .com
return $tld;
}
=head1 NAME
C4::External::Amazon - Functions for retrieving Amazon.com content in Koha
=head2 FUNCTIONS
This module provides facilities for retrieving Amazon.com content in Koha
=over
=item get_amazon_detail( $isbn, $record, $marcflavour, $services )
Get editorial reviews, customer reviews, and similar products using Amazon Web Services.
Parameters:
=over
=item $isbn
Biblio record isbn
=item $record
Biblio MARC record
=item $marcflavour
MARC flavor, MARC21 or UNIMARC
=item $services
Requested Amazon services: A ref to an array. For example,
[ 'Similarities', 'EditorialReviews', 'Reviews' ].
No other service will be accepted. Services must be spelled exactly.
If no sercice is requested, AWS isn't called.
=back
=item get_amazon_tld()
Get Amazon Top Level Domain depending on Amazon local preference: AmazonLocal.
For example, if AmazonLocal is 'UK', returns '.co.uk'.
=back
=cut
sub get_amazon_details {
my ( $isbn, $record, $marcflavour, $aws_ref ) = @_;
return unless defined $aws_ref;
my @aws = @$aws_ref;
return if $#aws == -1;
# Normalize the fields
$isbn = GetNormalizedISBN($isbn);
my $upc = GetNormalizedUPC($record,$marcflavour);
my $ean = GetNormalizedEAN($record,$marcflavour);
# warn "ISBN: $isbn | UPC: $upc | EAN: $ean";
# Choose the appropriate and available item identifier
my ( $id_type, $item_id ) =
defined($isbn) && length($isbn) == 13 ? ( 'EAN', $isbn ) :
$isbn ? ( 'ASIN', $isbn ) :
$upc ? ( 'UPC', $upc ) :
$ean ? ( 'EAN', $upc ) : ( undef, undef );
return unless defined($id_type);
# grab the item format to determine Amazon search index
my %hformat = ( a => 'Books', g => 'Video', j => 'Music' );
my $search_index = $hformat{ substr($record->leader(),6,1) } || 'Books';
my $url =
"http://ecs.amazonaws" . get_amazon_tld() .
"/onca/xml?Service=AWSECommerceService" .
"&AWSAccessKeyId=" . C4::Context->preference('AWSAccessKeyID') .
"&Operation=ItemLookup" .
"&AssociateTag=" . C4::Context->preference('AmazonAssocTag') .
"&Version=2009-02-01" .
"&ItemId=$item_id" .
"&IdType=$id_type" .
"&ResponseGroup=" . join( ',', @aws );
$url .= "&SearchIndex=$search_index" if $id_type ne 'ASIN';
#warn $url;
my $content = get($url);
warn "could not retrieve $url" unless $content;
my $xmlsimple = XML::Simple->new();
my $response = $xmlsimple->XMLin(
$content,
forcearray => [ qw(SimilarProduct EditorialReview Review Item) ],
) unless !$content;
return $response;
}
sub check_search_inside {
my $isbn = shift;
my $ua = LWP::UserAgent->new(
agent => "Mozilla/4.76 [en] (Win98; U)",
keep_alive => 1,
env_proxy => 1,
);
my $available = 1;
my $uri = "http://www.amazon.com/gp/reader/$isbn/ref=sib_dp_pt/002-7879865-0184864#reader-link";
my $req = HTTP::Request->new(GET => $uri);
$req->header (
'Accept' => 'image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, image/png, */*',
'Accept-Charset' => 'iso-8859-1,*,utf-8',
'Accept-Language' => 'en-US' );
my $res = $ua->request($req);
my $content = $res->content();
if ($content =~ m/This book is temporarily unavailable/) {
undef $available;
}
return $available;
}
1;
__END__
=head1 NOTES
=head1 AUTHOR
Joshua Ferraro <jmf@liblime.com>
=cut