47f4b5ee83b85a824f8181e08526442808058fe2
[koha.git] / C4 / External / Amazon.pm
1 package C4::External::Amazon;
2 # Copyright (C) 2006 LibLime
3 # <jmf at liblime dot com>
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use XML::Simple;
21 use LWP::Simple;
22 use LWP::UserAgent;
23 use HTTP::Request::Common;
24 use C4::Koha;
25
26 use strict;
27 use warnings;
28
29 use vars qw($VERSION @ISA @EXPORT);
30
31 BEGIN {
32     require Exporter;
33     $VERSION = 0.03;
34     @ISA = qw(Exporter);
35     @EXPORT = qw(
36         get_amazon_details
37         get_amazon_tld
38     );
39 }
40
41
42 sub get_amazon_tld {
43     my %tld = (
44         CA => '.ca',
45         DE => '.de',
46         FR => '.fr',
47         JP => '.jp',
48         UK => '.co.uk',
49         US => '.com',
50     );
51
52     my $locale = C4::Context->preference('AmazonLocale');
53     my $tld = $tld{ $locale } || '.com'; # default top level domain is .com
54     return $tld;
55 }
56
57
58 =head1 NAME
59
60 C4::External::Amazon - Functions for retrieving Amazon.com content in Koha
61
62 =head2 FUNCTIONS
63
64 This module provides facilities for retrieving Amazon.com content in Koha
65
66 =over
67
68 =item get_amazon_detail( $isbn, $record, $marcflavour, $services )
69
70 Get editorial reviews, customer reviews, and similar products using Amazon Web Services.
71
72 Parameters:
73
74 =over
75
76 =item $isbn
77
78 Biblio record isbn
79
80 =item $record
81
82 Biblio MARC record
83
84 =item $marcflavour
85
86 MARC flavor, MARC21 or UNIMARC
87
88 =item $services
89
90 Requested Amazon services: A ref to an array. For example,
91 [ 'Similarities', 'EditorialReviews', 'Reviews' ].
92 No other service will be accepted. Services must be spelled exactly.
93 If no sercice is requested, AWS isn't called.
94
95 =back
96
97 =item get_amazon_tld()
98
99 Get Amazon Top Level Domain depending on Amazon local preference: AmazonLocal.
100 For example, if AmazonLocal is 'UK', returns '.co.uk'.
101
102 =back
103
104 =cut
105
106
107 sub get_amazon_details {
108     my ( $isbn, $record, $marcflavour, $aws_ref ) = @_;
109
110     return unless defined $aws_ref;
111     my @aws = @$aws_ref;
112     return if $#aws == -1;
113
114     # Normalize the fields
115     $isbn = GetNormalizedISBN($isbn);
116     my $upc = GetNormalizedUPC($record,$marcflavour);
117     my $ean = GetNormalizedEAN($record,$marcflavour);
118     # warn "ISBN: $isbn | UPC: $upc | EAN: $ean";
119
120     # Choose the appropriate and available item identifier
121     my ( $id_type, $item_id ) =
122         defined($isbn) && length($isbn) == 13 ? ( 'EAN',  $isbn ) :
123         $isbn                                 ? ( 'ASIN', $isbn ) :
124         $upc                                  ? ( 'UPC',  $upc  ) :
125         $ean                                  ? ( 'EAN',  $upc  ) : ( undef, undef );
126     return unless defined($id_type);
127
128     # grab the item format to determine Amazon search index
129     my %hformat = ( a => 'Books', g => 'Video', j => 'Music' );
130     my $search_index = $hformat{ substr($record->leader(),6,1) } || 'Books';
131
132     my $url =
133         "http://ecs.amazonaws" . get_amazon_tld() .
134         "/onca/xml?Service=AWSECommerceService" .
135         "&AWSAccessKeyId=" . C4::Context->preference('AWSAccessKeyID') .
136         "&Operation=ItemLookup" .
137         "&AssociateTag=" . C4::Context->preference('AmazonAssocTag') .
138         "&Version=2009-02-01" .
139         "&ItemId=$item_id" .
140         "&IdType=$id_type" .
141         "&ResponseGroup=" . join( ',',  @aws );
142         $url .= "&SearchIndex=$search_index" if $id_type ne 'ASIN';
143     #warn $url;
144     my $content = get($url);
145     warn "could not retrieve $url" unless $content;
146     my $xmlsimple = XML::Simple->new();
147     my $response = $xmlsimple->XMLin(
148         $content,
149         forcearray => [ qw(SimilarProduct EditorialReview Review Item) ],
150     ) unless !$content;
151     return $response;
152 }
153
154 sub check_search_inside {
155         my $isbn = shift;
156         my $ua = LWP::UserAgent->new(
157         agent => "Mozilla/4.76 [en] (Win98; U)",
158         keep_alive => 1,
159         env_proxy => 1,
160         );
161         my $available = 1;
162         my $uri = "http://www.amazon.com/gp/reader/$isbn/ref=sib_dp_pt/002-7879865-0184864#reader-link";
163         my $req = HTTP::Request->new(GET => $uri);
164         $req->header (
165                 'Accept' => 'image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, image/png, */*',
166                 'Accept-Charset' => 'iso-8859-1,*,utf-8',
167                 'Accept-Language' => 'en-US' );
168         my $res = $ua->request($req);
169         my $content = $res->content();
170         if ($content =~ m/This book is temporarily unavailable/) {
171             undef $available;
172         }
173         return $available;
174 }
175
176 1;
177 __END__
178
179 =head1 NOTES
180
181 =head1 AUTHOR
182
183 Joshua Ferraro <jmf@liblime.com>
184
185 =cut