[Koha-patches] [PATCH] bug 2817: Added support to pull Amazon information based on UPC, EAN, and 13-digit ISBN

Danny Bouman danny.bouman at hclibrary.org
Mon Nov 24 20:21:08 CET 2008


By adding support for UPC,EAN and 13-digit ISBN we are able to pull much more content from Amazon, especially on most music and dvd content which
does not have an ISBN.
---
 C4/Amazon.pm            |  114 +++++++++++++++++++++++++++++++++++++++++++---
 catalogue/detail.pl     |    2 +-
 opac/opac-ISBDdetail.pl |    3 +-
 opac/opac-detail.pl     |    2 +-
 4 files changed, 110 insertions(+), 11 deletions(-)

diff --git a/C4/Amazon.pm b/C4/Amazon.pm
index de46686..0399e08 100644
--- a/C4/Amazon.pm
+++ b/C4/Amazon.pm
@@ -23,6 +23,7 @@ use LWP::UserAgent;
 use HTTP::Request::Common;
 
 use strict;
+use warnings;
 
 use vars qw($VERSION @ISA @EXPORT);
 
@@ -44,17 +45,54 @@ C4::Amazon - Functions for retrieving Amazon.com content in Koha
 
 This module provides facilities for retrieving Amazon.com content in Koha
 
-=head1 get_amazon_details($isbn);
+=head2 get_amazon_details
 
-=head2 $isbn is a isbn string
+=over 4
+
+my $amazon_details = &get_amazon_details( $xisbn, $record, $marcflavour );
+Get editorial reviews, customer reviews, and similar products using Amazon Web Services.
 
 =cut
 
 sub get_amazon_details {
-    my ( $isbn ) = @_;
+    my ( $isbn, $record, $marcflavour ) = @_;
+
     #normalize the ISBN
-    $isbn =~ /(\d*[X]*)/;
-    $isbn = $1;
+    $isbn = _normalize_match_point ($isbn);
+
+    my $upc = _get_amazon_upc($record,$marcflavour);
+    my $ean = _get_amazon_ean($record,$marcflavour);
+
+    # warn "ISBN: $isbn | UPC: $upc | EAN: $ean";
+
+    my ( $id_type, $item_id);
+    if (length($isbn) eq 13) { # if the isbn is 13-digit, search Amazon using EAN
+	$id_type = 'EAN';
+	$item_id = $isbn;
+    }
+    elsif ($isbn) {
+	$id_type = 'ASIN';
+	$item_id = $isbn;
+    }
+    elsif ($upc) {
+	$id_type = 'UPC';
+	$item_id = $upc;
+    }
+    elsif ($ean) {
+	$id_type = 'EAN';
+	$item_id = $upc;
+    }
+    else { # if no ISBN, UPC, or EAN exists, do not even attempt to query Amazon
+	return undef;
+    }
+
+    my $format = substr $record->leader(), 6, 1; # grab the item format to determine Amazon search index
+    my $formats;
+    $formats->{'a'} = 'Books';
+    $formats->{'g'} = 'Video';
+    $formats->{'j'} = 'Music';
+
+    my $search_index = $formats->{$format};
 
     # Determine which content to grab in the request
 
@@ -76,9 +114,11 @@ sub get_amazon_details {
 
     #grab the associates tag: mine is 'kadabox-20'
     my $af_tag=C4::Context->preference('AmazonAssocTag');
-    my $response_group = "Similarities,EditorialReview,Reviews,ItemAttributes";
-    my $asin=$isbn;
-    my $url = "http://ecs.amazonaws$tld/onca/xml?Service=AWSECommerceService&AWSAccessKeyId=$aws_access_key_id&Operation=ItemLookup&AssociateTag=$af_tag&Version=2007-01-15&ItemId=$asin&ResponseGroup=$response_group";
+    my $response_group = "Similarities,EditorialReview,Reviews,ItemAttributes,Images";
+    my $url = "http://ecs.amazonaws$tld/onca/xml?Service=AWSECommerceService&AWSAccessKeyId=$aws_access_key_id&Operation=ItemLookup&AssociateTag=$af_tag&Version=2007-01-15&ItemId=$item_id&IdType=$id_type&ResponseGroup=$response_group";
+    if ($id_type ne 'ASIN') {
+	$url .= "&SearchIndex=$search_index";
+    }
     # warn $url;
     my $content = get($url);
     warn "could not retrieve $url" unless $content;
@@ -112,6 +152,64 @@ sub check_search_inside {
         return $available;
 }
 
+sub _get_amazon_upc {
+	my ($record,$marcflavour) = @_;
+	my (@fields,$upc);
+
+	if ($marcflavour eq 'MARC21') {
+		@fields = $record->field('024');
+		foreach my $field (@fields) {
+			my $indicator = $field->indicator(1);
+			my $upc = _normalize_match_point($field->subfield('a'));
+			if ($indicator == 1 and $upc ne '') {
+				return $upc;
+			}
+		}
+	}
+	else { # assume unimarc if not marc21
+		@fields = $record->field('072');
+		foreach my $field (@fields) {
+			my $upc = _normalize_match_point($field->subfield('a'));
+			if ($upc ne '') {
+				return $upc;
+			}
+		}
+	}
+}
+
+sub _get_amazon_ean {
+	my ($record,$marcflavour) = @_;
+	my (@fields,$ean);
+
+	if ($marcflavour eq 'MARC21') {
+		@fields = $record->field('024');
+		foreach my $field (@fields) {
+			my $indicator = $field->indicator(1);
+			my $upc = _normalize_match_point($field->subfield('a'));
+			if ($indicator == 3 and $upc ne '') {
+				return $upc;
+			}
+		}
+	}
+	else { # assume unimarc if not marc21
+		@fields = $record->field('073');
+		foreach my $field (@fields) {
+			my $upc = _normalize_match_point($field->subfield('a'));
+			if ($upc ne '') {
+				return $upc;
+			}
+		}
+	}
+}
+
+sub _normalize_match_point {
+	my $match_point = shift;
+	(my $normalized_match_point) = $match_point =~ /([\d-]*[X]*)/;
+	$normalized_match_point =~ s/-//g;
+
+	return $normalized_match_point;
+}
+
 1;
 __END__
 
diff --git a/catalogue/detail.pl b/catalogue/detail.pl
index 8bef7e3..19b8dd9 100755
--- a/catalogue/detail.pl
+++ b/catalogue/detail.pl
@@ -201,7 +201,7 @@ if (C4::Context->preference("FRBRizeEditions")==1) {
 }
 if ( C4::Context->preference("AmazonContent") == 1 ) {
     my $similar_products_exist;
-    my $amazon_details = &get_amazon_details( $xisbn );
+    my $amazon_details = &get_amazon_details( $xisbn, $record, $marcflavour );
     my $item_attributes = \%{$amazon_details->{Items}->{Item}->{ItemAttributes}};
     my $customer_reviews = \@{$amazon_details->{Items}->{Item}->{CustomerReviews}->{Review}};
     my @similar_products;
diff --git a/opac/opac-ISBDdetail.pl b/opac/opac-ISBDdetail.pl
index 6767922..bb3b570 100755
--- a/opac/opac-ISBDdetail.pl
+++ b/opac/opac-ISBDdetail.pl
@@ -62,6 +62,7 @@ my $biblionumber = $query->param('biblionumber');
 my $itemtype     = &GetFrameworkCode($biblionumber);
 my $tagslib      = &GetMarcStructure( 1, $itemtype );
 
+my $marcflavour      = C4::Context->preference("marcflavour");
 my $record = GetMarcBiblio($biblionumber);
 
 #coping with subscriptions
@@ -234,7 +235,7 @@ if ( C4::Context->preference("AmazonContent") == 1 ) {
 
     $template->param( amazonisbn => $dat->{amazonisbn} );
 
-    my $amazon_details = &get_amazon_details( $dat->{amazonisbn} );
+    my $amazon_details = &get_amazon_details( $dat->{amazonisbn}, $record, $marcflavour );
 
     foreach my $result ( @{ $amazon_details->{Details} } ) {
         $template->param( item_description => $result->{ProductDescription} );
diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl
index 7e72521..4198ce3 100755
--- a/opac/opac-detail.pl
+++ b/opac/opac-detail.pl
@@ -273,7 +273,7 @@ if (C4::Context->preference("OPACFRBRizeEditions")==1) {
 # Amazon.com Stuff
 if ( C4::Context->preference("OPACAmazonContent") == 1 ) {
     my $similar_products_exist;
-    my $amazon_details = &get_amazon_details( $xisbn );
+    my $amazon_details = &get_amazon_details( $xisbn, $record, $marcflavour );
     my $item_attributes = \%{$amazon_details->{Items}->{Item}->{ItemAttributes}};
     my $customer_reviews = \@{$amazon_details->{Items}->{Item}->{CustomerReviews}->{Review}};
     for my $one_review (@$customer_reviews) {
-- 
1.5.6



More information about the Koha-patches mailing list