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
|
#include "stdafx.h"
static CMStringW build_url(const CMStringW &rsURL)
{
CMStringW res = rsURL + L"?";
ptrA szApiKey(g_plugin.getStringA(DB_KEY_ApiKey));
if (szApiKey != nullptr)
res.AppendFormat(L"&access_key=%S", szApiKey.get());
return res;
}
/////////////////////////////////////////////////////////////////////////////////////////
// CCurrencyRatesProviderExchangeRates implementation
class CCurrencyRatesProviderExchangeRates : public CCurrencyRatesProviderBase
{
std::map<CMStringA, double> m_lastRates;
double GetRate(const CMStringA &id1, const CMStringA &id2) const
{
if (!id1.IsEmpty() && !id2.IsEmpty()) {
auto r1 = m_lastRates.find(id1), r2 = m_lastRates.find(id2);
if (r1 != m_lastRates.end() && r2 != m_lastRates.end())
return r2->second / r1->second;
}
return 0.0;
}
public:
CCurrencyRatesProviderExchangeRates()
{}
void RefreshCurrencyRates(TContacts &anContacts) override
{
CHTTPSession http;
if (true == http.OpenURL(build_url(GetURL()))) {
CMStringW sHTML;
if (true == http.ReadResponce(sHTML)) {
JSONNode root = JSONNode::parse(_T2A(sHTML));
if (!root)
return;
auto rates = root["rates"];
if (!root["success"].as_bool() || !rates)
return;
auto &qs = GetSection();
m_lastRates.clear();
for (auto &it : qs.GetCurrencyRates()) {
CMStringA id = it.GetID();
m_lastRates[id] = rates[id].as_float();
}
}
}
for (auto &hContact : anContacts) {
double rate = GetRate(g_plugin.getMStringA(hContact, DB_STR_FROM_ID), g_plugin.getMStringA(hContact, DB_STR_TO_ID));
if (rate != 0.0) {
WriteContactRate(hContact, rate);
continue;
}
SetContactStatus(hContact, ID_STATUS_NA);
}
}
double Convert(double dAmount, const CCurrencyRate &from, const CCurrencyRate &to) const override
{
CMStringA id1 = from.GetID(), id2 = to.GetID();
return dAmount * GetRate(id1, id2);
}
wchar_t* GetXmlFilename() const override
{
return L"ExchangeRates.xml";
}
};
/////////////////////////////////////////////////////////////////////////////////////////
// Module entry point
void InitExchangeRates()
{
g_apProviders.push(new CCurrencyRatesProviderExchangeRates());
}
|