Bug 9978: Replace license header with the correct license (GPLv3+)
[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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
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