/usr/share/perl5/Finance/Quote/Currencies.pm is in libfinance-quote-perl 1.38-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | # 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., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA
#
package Finance::Quote::Currencies;
use strict;
use warnings;
use base 'Exporter';
use vars qw/@EXPORT_OK $YAHOO_CURRENCY_CONV_URL/;
@EXPORT_OK = qw( known_currencies fetch_live_currencies );
our $VERSION = '1.38'; # VERSION
use HTTP::Request::Common;
use LWP::UserAgent;
use HTML::Parser;
use Encode;
# This is the URL used to extract the currency list
$YAHOO_CURRENCY_CONV_URL = 'http://uk.finance.yahoo.com/currency-converter';
# =======================================================================
# methods used by Finance::Quote to import public functions
sub methods { return ( known_currencies => \&known_currencies
, fetch_live_currencies => \&fetch_live_currencies
);
}
sub labels { return () };
# =======================================================================
# The current static currency list.
# This list is generated using fetch_live_currencies
my %currencies = ( ALL => { name => qq{Albanian Lek} }
, DZD => { name => qq{Algerian Dinar} }
, XAL => { name => qq{Aluminium Ounces} }
, ARS => { name => qq{Argentine Peso} }
, AWG => { name => qq{Aruba Florin} }
, AUD => { name => qq{Australian Dollar} }
, BSD => { name => qq{Bahamian Dollar} }
, BHD => { name => qq{Bahraini Dinar} }
, BDT => { name => qq{Bangladesh Taka} }
, BBD => { name => qq{Barbados Dollar} }
, BYR => { name => qq{Belarus Ruble} }
, BZD => { name => qq{Belize Dollar} }
, BMD => { name => qq{Bermuda Dollar} }
, BTN => { name => qq{Bhutan Ngultrum} }
, BOB => { name => qq{Bolivian Boliviano} }
, BWP => { name => qq{Botswana Pula} }
, BRL => { name => qq{Brazilian Real} }
, GBP => { name => qq{British Pound} }
, BND => { name => qq{Brunei Dollar} }
, BGN => { name => qq{Bulgarian Lev} }
, BIF => { name => qq{Burundi Franc} }
, KHR => { name => qq{Cambodia Riel} }
, CAD => { name => qq{Canadian Dollar} }
, CVE => { name => qq{Cape Verde Escudo} }
, KYD => { name => qq{Cayman Islands Dollar} }
, XOF => { name => qq{CFA Franc (BCEAO)} }
, XAF => { name => qq{CFA Franc (BEAC)} }
, CLP => { name => qq{Chilean Peso} }
, CNY => { name => qq{Chinese Yuan} }
, COP => { name => qq{Colombian Peso} }
, KMF => { name => qq{Comoros Franc} }
, XCP => { name => qq{Copper Pounds} }
, CRC => { name => qq{Costa Rica Colon} }
, HRK => { name => qq{Croatian Kuna} }
, CUP => { name => qq{Cuban Peso} }
, CZK => { name => qq{Czech Koruna} }
, DKK => { name => qq{Danish Krone} }
, DJF => { name => qq{Dijibouti Franc} }
, DOP => { name => qq{Dominican Peso} }
, XCD => { name => qq{East Caribbean Dollar} }
, ECS => { name => qq{Ecuador Sucre} }
, EGP => { name => qq{Egyptian Pound} }
, SVC => { name => qq{El Salvador Colon} }
, ERN => { name => qq{Eritrea Nakfa} }
, EEK => { name => qq{Estonian Kroon} }
, ETB => { name => qq{Ethiopian Birr} }
, EUR => { name => qq{Euro} }
, FKP => { name => qq{Falkland Islands Pound} }
, FJD => { name => qq{Fiji Dollar} }
, GMD => { name => qq{Gambian Dalasi} }
, GHC => { name => qq{Ghanian Cedi} }
, GIP => { name => qq{Gibraltar Pound} }
, XAU => { name => qq{Gold Ounces} }
, GTQ => { name => qq{Guatemala Quetzal} }
, GNF => { name => qq{Guinea Franc} }
, GYD => { name => qq{Guyana Dollar} }
, HTG => { name => qq{Haiti Gourde} }
, HNL => { name => qq{Honduras Lempira} }
, HKD => { name => qq{Hong Kong Dollar} }
, HUF => { name => qq{Hungarian Forint} }
, ISK => { name => qq{Iceland Krona} }
, INR => { name => qq{Indian Rupee} }
, IDR => { name => qq{Indonesian Rupiah} }
, IRR => { name => qq{Iran Rial} }
, IQD => { name => qq{Iraqi Dinar} }
, ILS => { name => qq{Israeli Shekel} }
, JMD => { name => qq{Jamaican Dollar} }
, JPY => { name => qq{Japanese Yen} }
, JOD => { name => qq{Jordanian Dinar} }
, KZT => { name => qq{Kazakhstan Tenge} }
, KES => { name => qq{Kenyan Shilling} }
, KRW => { name => qq{South Korean Won} }
, KWD => { name => qq{Kuwaiti Dinar} }
, LAK => { name => qq{Lao Kip} }
, LVL => { name => qq{Latvian Lat} }
, LBP => { name => qq{Lebanese Pound} }
, LSL => { name => qq{Lesotho Loti} }
, LRD => { name => qq{Liberian Dollar} }
, LYD => { name => qq{Libyan Dinar} }
, LTL => { name => qq{Lithuanian Lita} }
, MOP => { name => qq{Macau Pataca} }
, MKD => { name => qq{Macedonian Denar} }
, MWK => { name => qq{Malawi Kwacha} }
, MYR => { name => qq{Malaysian Ringgit} }
, MVR => { name => qq{Maldives Rufiyaa} }
, MTL => { name => qq{Maltese Lira} }
, MRO => { name => qq{Mauritania Ougulya} }
, MUR => { name => qq{Mauritius Rupee} }
, MXN => { name => qq{Mexican Peso} }
, MDL => { name => qq{Moldovan Leu} }
, MNT => { name => qq{Mongolian Tugrik} }
, MAD => { name => qq{Moroccan Dirham} }
, MMK => { name => qq{Myanmar Kyat} }
, NAD => { name => qq{Namibian Dollar} }
, NPR => { name => qq{Nepalese Rupee} }
, ANG => { name => qq{Neth Antilles Guilder} }
, TRY => { name => qq{Turkish Lira} }
, NZD => { name => qq{New Zealand Dollar} }
, NIO => { name => qq{Nicaragua Cordoba} }
, NGN => { name => qq{Nigerian Naira} }
, KPW => { name => qq{North Korean Won} }
, NOK => { name => qq{Norwegian Krone} }
, OMR => { name => qq{Omani Rial} }
, XPF => { name => qq{Pacific Franc} }
, PKR => { name => qq{Pakistani Rupee} }
, XPD => { name => qq{Palladium Ounces} }
, PAB => { name => qq{Panama Balboa} }
, PGK => { name => qq{Papua New Guinea Kina} }
, PYG => { name => qq{Paraguayan Guarani} }
, PEN => { name => qq{Peruvian Nuevo Sol} }
, PHP => { name => qq{Philippine Peso} }
, XPT => { name => qq{Platinum Ounces} }
, PLN => { name => qq{Polish Zloty} }
, QAR => { name => qq{Qatar Rial} }
, RON => { name => qq{Romanian New Leu} }
, RUB => { name => qq{Russian Rouble} }
, RWF => { name => qq{Rwanda Franc} }
, WST => { name => qq{Samoa Tala} }
, STD => { name => qq{Sao Tome Dobra} }
, SAR => { name => qq{Saudi Arabian Riyal} }
, SCR => { name => qq{Seychelles Rupee} }
, SLL => { name => qq{Sierra Leone Leone} }
, XAG => { name => qq{Silver Ounces} }
, SGD => { name => qq{Singapore Dollar} }
, SKK => { name => qq{Slovak Koruna} }
, SIT => { name => qq{Slovenian Tolar} }
, SBD => { name => qq{Solomon Islands Dollar} }
, SOS => { name => qq{Somali Shilling} }
, ZAR => { name => qq{South African Rand} }
, LKR => { name => qq{Sri Lanka Rupee} }
, SHP => { name => qq{St Helena Pound} }
, SZL => { name => qq{Swaziland Lilageni} }
, SEK => { name => qq{Swedish Krona} }
, CHF => { name => qq{Swiss Franc} }
, SYP => { name => qq{Syrian Pound} }
, TWD => { name => qq{Taiwan Dollar} }
, TZS => { name => qq{Tanzanian Shilling} }
, THB => { name => qq{Thai Baht} }
, TOP => { name => qq{Tonga Pa'ang} }
, TTD => { name => qq{Trinidad & Tobago Dollar} }
, TND => { name => qq{Tunisian Dinar} }
, USD => { name => qq{United States Dollar} }
, AED => { name => qq{UAE Dirham} }
, UGX => { name => qq{Ugandan Shilling} }
, UAH => { name => qq{Ukraine Hryvnia} }
, UYU => { name => qq{Uruguayan New Peso} }
, VUV => { name => qq{Vanuatu Vatu} }
, VEF => { name => qq{Venezuelan Bolivar Fuerte}}
, VND => { name => qq{Vietnam Dong} }
, YER => { name => qq{Yemen Riyal} }
, ZMK => { name => qq{Zambian Kwacha} }
, ZWD => { name => qq{Zimbabwe dollar} }
, SDG => { name => qq{Sudanese Pound} }
);
# =======================================================================
# known_currencies (public function)
#
# This function returns the known currency list. This is based on the
# cached currency list in this module. Use fetch_live_currencies for the
# live list.
sub known_currencies {
return \%currencies;
}
# =======================================================================
# fetch_live_currencies (public function)
#
# This function retrieved the live currency list from the Yahoo Finance
# website. This function should really only be used to test if the known
# currency list in this module is out of date.
sub fetch_live_currencies {
my $ua = LWP::UserAgent->new();
my $data = $ua->request(GET $YAHOO_CURRENCY_CONV_URL)->content;
my $p = HTML::Parser->new( start_h => [\&_start_handler, "tagname, attr"]
, end_h => [\&_end_handler, "tagname"]
, text_h => [\&_text_handler, "dtext"]
);
# Avoid the "Parsing of undecoded UTF-8 will give garbage when decoding
# entities" warning by forcing utf mode and encoding to utf8
$p->utf8_mode(1);
$p->parse( Encode::encode_utf8($data) );
return _live_currencies();
}
# Store state variables in a closure
{
# The currency hash
my %live_currencies = ();
# Keep track of being within a valid option tag (for text gathering)
my $in_currency_list = 0;
my $in_currency_option = 0;
my $currency_text = '';
my $currency_code = '';
# _start_handler (private function)
#
# This is a HTML::Parser start tag handler
sub _start_handler {
my ($tagname, $attr) = @_;
if ( lc $tagname eq 'select'
&&
exists $attr->{name} && lc $attr->{name} eq 'currency-1'
) {
# Reset status
%live_currencies = ();
# We're in the list
$in_currency_list = 1;
}
elsif ( $in_currency_list == 1
&&
lc $tagname eq 'option'
) {
$in_currency_option = 1;
$currency_code = $attr->{value};
$currency_text = '';
}
}
# _end_handler (private function)
#
# This is a HTML::Parser end tag handler
sub _end_handler {
my ($tagname) = @_;
if ( lc $tagname eq 'select'
&&
$in_currency_list == 1
) {
# We're leaving the currency list
$in_currency_list = 0;
}
elsif ( $in_currency_list == 1
&&
$in_currency_option == 1
&&
lc $tagname eq 'option'
) {
# We're leaving an option
# Build currency list item (strip code from name)
$currency_text =~ s/\s*\([A-Z]+\)\s*$//;
$live_currencies{$currency_code} = { name => $currency_text };
$in_currency_option = 0;
}
}
# _text_handler (private function)
#
# This is a HTML::Parser text handler
sub _text_handler {
my ($dtext) = @_;
if ( $in_currency_list == 1
&&
$in_currency_option == 1
) {
$currency_text .= $dtext;
}
}
# _live_currencies (private function)
#
# Return data from within the closure
sub _live_currencies {
return \%live_currencies;
}
}
1;
=head1 NAME
Finance::Quote::Currencies - List of currencies from Yahoo Finance
=head1 SYNOPSIS
use Finance::Quote::Currencies;
my $currencies = Finance::Quote::Currencies::known_currencies();
# Grab the latest from Yahoo
my $live_currencies = Finance::Quote::Currencies::fetch_live_currencies();
=head1 DESCRIPTION
This module provides a list of known currencies from Yahoo Currency Converter.
The converter website includes a list of known currencies - this module includes
a stored list
=head1 LAST EXTRACT
The currency list stored in this module was last copied from the live site:
Sun Feb 15 18:01:12 GMT 2009
=head1 LICENSE
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.
Currency information fetched through this module is bound by
Yahoo!'s terms and conditons.
=head1 AUTHORS
Bradley Dean <bjdean@bjdean.id.au>
=head1 SEE ALSO
Yahoo Currency Converter - http://uk.finance.yahoo.com/currency-converter
=cut
|