+++ /dev/null
-package OpenILS::WWW::AddedContent::Amazon;
-use strict; use warnings;
-use OpenSRF::Utils::Logger qw/$logger/;
-use OpenSRF::Utils::SettingsParser;
-use OpenILS::WWW::AddedContent;
-use OpenSRF::Utils::JSON;
-use OpenSRF::EX qw/:try/;
-use XML::LibXML;
-use Business::ISBN;
-
-my $AC = 'OpenILS::WWW::AddedContent';
-
-sub new {
- my( $class, $args ) = @_;
- $class = ref $class || $class;
- return bless($args, $class);
-}
-
-sub base_url {
- my $self = shift;
- return $self->{base_url};
-}
-
-sub userid {
- my $self = shift;
- return $self->{userid};
-}
-
-
-# --------------------------------------------------------------------------
-sub jacket_small {
- my( $self, $key ) = @_;
- return $self->send_img(
- $self->fetch_response('_SCMZZZZZZZ_.jpg', $key));
-}
-
-sub jacket_medium {
- my( $self, $key ) = @_;
- return $self->send_img(
- $self->fetch_response('_SCMZZZZZZZ_.jpg', $key));
-
-}
-sub jacket_large {
- my( $self, $key ) = @_;
- return $self->send_img(
- $self->fetch_response('_SCZZZZZZZ_.jpg', $key));
-}
-
-# --------------------------------------------------------------------------
-
-sub send_img {
- my($self, $response) = @_;
- return {
- content_type => $response->header('Content-type'),
- content => $response->content,
- binary => 1
- };
-}
-
-# returns the raw content returned from the URL fetch
-sub fetch_content {
- my( $self, $page, $key ) = @_;
- return $self->fetch_response($page, $key)->content;
-}
-
-# returns the HTTP response object from the URL fetch
-sub fetch_response {
- my( $self, $page, $key ) = @_;
- my $uname = $self->userid;
-
- # Some sites have entered Amazon IDs in 020 $a, thus we cannot
- # simply pass all incoming keys to Business::ISBN for normalization
- if (length($key) > 10) {
- # Use Business::ISBN to normalize the incoming ISBN
- my $isbn = Business::ISBN->new( $key );
- if (!defined $isbn) {
- $logger->warning("'$key' is not a valid ISBN");
- return 0;
- }
-
- # Amazon prefers ISBN10
- $isbn = $isbn->as_isbn10 if $isbn->type eq 'ISBN13';
- $key = $isbn->as_string([]);
- }
-
- my $url = $self->base_url . "$key.01.$page";
- return $AC->get_url($url);
-}
-
-
-
-1;
<!ENTITY slimpac.advanced.create_date "Record Creation Date">
<!ENTITY slimpac.advanced.edit_date "Record Edit Date">
+<!-- =================================================================
+ Added Content Attribution
+ ================================================================= -->
<!ENTITY opac.image_provided "Image provided by">
-<!ENTITY vendor.name "Amazon">
-<!ENTITY vendor.base_link "http://amazon.com/dp/">
+<!ENTITY vendor.name "Example Vendor">
+<!ENTITY vendor.base_link "http://example.com/prefix/">
<!-- =================================================================
Selfcheck