2016-11-30 17:43:03 +00:00
|
|
|
import json
|
2013-12-01 15:41:24 +00:00
|
|
|
import re
|
2015-05-12 18:52:08 +00:00
|
|
|
import unicodedata
|
2020-11-02 10:19:53 +00:00
|
|
|
from searx.data import CURRENCIES # NOQA
|
2020-10-05 11:50:33 +00:00
|
|
|
|
2013-11-04 20:47:16 +00:00
|
|
|
|
|
|
|
categories = []
|
2018-04-22 10:46:13 +00:00
|
|
|
url = 'https://duckduckgo.com/js/spice/currency/1/{0}/{1}'
|
2013-11-10 20:20:22 +00:00
|
|
|
weight = 100
|
2013-11-04 20:47:16 +00:00
|
|
|
|
2020-08-11 14:25:03 +00:00
|
|
|
parser_re = re.compile('.*?(\\d+(?:\\.\\d+)?) ([^.0-9]+) (?:in|to) ([^.0-9]+)', re.I)
|
2020-12-09 16:33:18 +00:00
|
|
|
https_support = True
|
2015-05-12 18:52:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def normalize_name(name):
|
2020-08-11 14:25:03 +00:00
|
|
|
name = name.lower().replace('-', ' ').rstrip('s')
|
2015-05-12 18:52:08 +00:00
|
|
|
name = re.sub(' +', ' ', name)
|
2015-06-07 13:38:38 +00:00
|
|
|
return unicodedata.normalize('NFKD', name).lower()
|
2015-05-12 18:52:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def name_to_iso4217(name):
|
2020-10-05 11:50:33 +00:00
|
|
|
global CURRENCIES
|
2015-05-12 18:52:08 +00:00
|
|
|
|
|
|
|
name = normalize_name(name)
|
2020-10-05 11:50:33 +00:00
|
|
|
currency = CURRENCIES['names'].get(name, [name])
|
|
|
|
return currency[0]
|
2015-05-12 18:52:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def iso4217_to_name(iso4217, language):
|
2020-10-05 11:50:33 +00:00
|
|
|
global CURRENCIES
|
2015-05-12 18:52:08 +00:00
|
|
|
|
2020-10-05 11:50:33 +00:00
|
|
|
return CURRENCIES['iso4217'].get(iso4217, {}).get(language, iso4217)
|
2013-12-01 15:41:24 +00:00
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
|
2013-11-04 20:47:16 +00:00
|
|
|
def request(query, params):
|
2016-11-30 17:43:03 +00:00
|
|
|
m = parser_re.match(query)
|
2013-12-01 15:41:24 +00:00
|
|
|
if not m:
|
|
|
|
# wrong query
|
|
|
|
return params
|
2017-11-07 14:14:20 +00:00
|
|
|
amount, from_currency, to_currency = m.groups()
|
|
|
|
amount = float(amount)
|
2015-05-12 18:52:08 +00:00
|
|
|
from_currency = name_to_iso4217(from_currency.strip())
|
|
|
|
to_currency = name_to_iso4217(to_currency.strip())
|
2013-11-04 20:47:16 +00:00
|
|
|
|
2017-11-07 13:29:17 +00:00
|
|
|
params['url'] = url.format(from_currency, to_currency)
|
2017-11-07 14:14:20 +00:00
|
|
|
params['amount'] = amount
|
2013-11-04 20:47:16 +00:00
|
|
|
params['from'] = from_currency
|
|
|
|
params['to'] = to_currency
|
2015-05-12 18:52:08 +00:00
|
|
|
params['from_name'] = iso4217_to_name(from_currency, 'en')
|
|
|
|
params['to_name'] = iso4217_to_name(to_currency, 'en')
|
2013-11-04 20:47:16 +00:00
|
|
|
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
|
|
|
def response(resp):
|
2018-04-22 10:46:13 +00:00
|
|
|
"""remove first and last lines to get only json"""
|
2018-04-22 11:12:32 +00:00
|
|
|
json_resp = resp.text[resp.text.find('\n') + 1:resp.text.rfind('\n') - 2]
|
2013-11-04 20:47:16 +00:00
|
|
|
results = []
|
|
|
|
try:
|
2018-04-22 10:46:13 +00:00
|
|
|
conversion_rate = float(json.loads(json_resp)['conversion']['converted-amount'])
|
2013-11-04 20:47:16 +00:00
|
|
|
except:
|
|
|
|
return results
|
2015-05-12 18:52:08 +00:00
|
|
|
answer = '{0} {1} = {2} {3}, 1 {1} ({5}) = {4} {3} ({6})'.format(
|
2017-11-07 14:14:20 +00:00
|
|
|
resp.search_params['amount'],
|
2014-01-19 21:59:01 +00:00
|
|
|
resp.search_params['from'],
|
2017-11-07 14:14:20 +00:00
|
|
|
resp.search_params['amount'] * conversion_rate,
|
2014-01-19 21:59:01 +00:00
|
|
|
resp.search_params['to'],
|
2015-05-12 18:52:08 +00:00
|
|
|
conversion_rate,
|
|
|
|
resp.search_params['from_name'],
|
|
|
|
resp.search_params['to_name'],
|
2014-01-19 21:59:01 +00:00
|
|
|
)
|
2013-11-04 20:47:16 +00:00
|
|
|
|
2018-04-22 10:46:13 +00:00
|
|
|
url = 'https://duckduckgo.com/js/spice/currency/1/{0}/{1}'.format(
|
2017-11-07 13:29:17 +00:00
|
|
|
resp.search_params['from'].upper(), resp.search_params['to'])
|
2014-09-28 14:51:41 +00:00
|
|
|
|
2014-12-07 15:37:56 +00:00
|
|
|
results.append({'answer': answer, 'url': url})
|
2013-11-04 20:47:16 +00:00
|
|
|
|
|
|
|
return results
|