#!/usr/bin/perl -w
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA
use strict;
use constant DEBUG => $ENV{DEBUG};
use if DEBUG, 'Smart::Comments';
use JSON;
our $VERSION = '1.64_04'; # TRIAL VERSION
sub parameters {
return ('API_KEY');
}
sub new
{
my $self = shift;
my $class = ref($self) || $self;
my $this = {};
bless $this, $class;
my $args = shift;
### Fixer->new args : $args
$this->{API_KEY} = $ENV{'FIXER_API_KEY'};
$this->{API_KEY} = $args->{API_KEY} if (ref $args eq 'HASH') and (exists $args->{API_KEY});
$this->{refresh} = 0;
$this->{refresh} = not $args->{cache} if exists $args->{cache};
# Return nothing if API_KEY not set
return unless ($this->{API_KEY});
### API_KEY: $this->{API_KEY}
return $this;
}
sub multipliers
{
my ($this, $ua, $from, $to) = @_;
if ($this->{refresh} or not exists $this->{cache}) {
my $url = "http://data.fixer.io/api/latest?access_key=$this->{API_KEY}";
my $reply = $ua->get($url);
return unless ($reply->code == 200);
my $body = $reply->content;
my $json_data = JSON::decode_json $body;
if ( !$json_data || $json_data->{error} || not exists $json_data->{rates}) {
### fixer error : $json_data->{error}->{info}
return;
}
$this->{cache} = $json_data->{rates};
### Fixer rates: $this->{cache}
}
if (exists $this->{cache}->{$from} and exists $this->{cache}->{$to}) {
### from : $from, $this->{cache}->{$from}
### to : $to, $this->{cache}->{$to}
return ($this->{cache}->{$from}, $this->{cache}->{$to});
}
### At least one code not found: $from, $to
return;
}
1;
=head1 NAME
Finance::Quote::CurrencyRates::Fixer - Obtain currency rates from https://fixer.io
=head1 SYNOPSIS
use Finance::Quote;
$q = Finance::Quote->new(currency_rates => {order => ['Fixer'],
fixer => {API_KEY => ...}});
$value = $q->currency('18.99 EUR', 'USD');
=head1 DESCRIPTION
This module fetches currency rates from https://fixer.io and provides data to
Finance::Quote to convert the first argument to the equivalent value in the
currency indicated by the second argument.
This module caches the currency rates for the lifetime of the quoter object,
unless 'cache => 0' is included in the 'fixer' options hash.
=head1 API_KEY
https://fixer.io requires users to register and obtain an API key.
The API key can be set by setting the Environment variable "FIXER_API_KEY" or providing a 'fixer' hash inside the 'currency_rates'
hash to Finance::Quote->new as in the above example.
=head1 Terms & Conditions
Use of https://fixer.io is governed by any terms & conditions of that site.
Finance::Quote is released under the GNU General Public License, version 2,
which explicitly carries a "No Warranty" clause.
=cut