Merge remote-tracking branch 'origin/new/bug_8440'
[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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20
21 use strict;
22 use warnings;
23
24 use vars qw($VERSION @ISA @EXPORT);
25
26 BEGIN {
27     require Exporter;
28     $VERSION = 3.07.00.049;
29     @ISA = qw(Exporter);
30     @EXPORT = qw(
31         get_amazon_tld
32     );
33 }
34
35
36 sub get_amazon_tld {
37     my %tld = (
38         CA => '.ca',
39         DE => '.de',
40         FR => '.fr',
41         JP => '.jp',
42         UK => '.co.uk',
43         US => '.com',
44     );
45
46     my $locale = C4::Context->preference('AmazonLocale');
47     my $tld = $tld{ $locale } || '.com'; # default top level domain is .com
48     return $tld;
49 }
50
51
52 =head1 NAME
53
54 C4::External::Amazon - Functions for retrieving Amazon.com content in Koha
55
56 =head2 FUNCTIONS
57
58 This module provides facilities for retrieving Amazon.com content in Koha
59
60 =over
61
62 =item get_amazon_tld()
63
64 Get Amazon Top Level Domain depending on Amazon local preference: AmazonLocal.
65 For example, if AmazonLocal is 'UK', returns '.co.uk'.
66
67 =back
68
69 =cut
70
71 1;
72 __END__
73
74 =head1 NOTES
75
76 =cut
77
78 =head1 AUTHOR
79
80 Joshua Ferraro <jmf@liblime.com>
81
82 =cut