Skip to content

Commit 86aab89

Browse files
authored
Update ecb.php
1 parent 8db19f0 commit 86aab89

File tree

1 file changed

+12
-5
lines changed
  • upload/catalog/model/extension/currency

1 file changed

+12
-5
lines changed

upload/catalog/model/extension/currency/ecb.php

+12-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public function editValueByCode(string $code, float $value): void {
66
$this->cache->delete('currency');
77
}
88

9-
public function refresh() {
9+
public function refresh($default = '') {
1010
$curl = curl_init();
1111

1212
curl_setopt($curl, CURLOPT_URL, 'https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
@@ -18,14 +18,17 @@ public function refresh() {
1818

1919
$response = curl_exec($curl);
2020

21+
$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
22+
2123
curl_close($curl);
2224

23-
if ($response) {
25+
if ($status == 200) {
2426
$dom = new \DOMDocument('1.0', 'UTF-8');
2527
$dom->loadXml($response);
2628

2729
$cube = $dom->getElementsByTagName('Cube')->item(0);
2830

31+
// Compile all the rates into an array
2932
$currencies = [];
3033

3134
$currencies['EUR'] = 1.0000;
@@ -36,11 +39,15 @@ public function refresh() {
3639
}
3740
}
3841

42+
if (isset($currencies[$default])) {
43+
$value = $currencies[$default];
44+
} else {
45+
$value = $currencies['EUR'];
46+
}
47+
3948
if (count($currencies) > 1) {
4049
$this->load->model('localisation/currency');
4150

42-
$default = $this->config->get('config_currency');
43-
4451
$results = $this->model_localisation_currency->getCurrencies();
4552

4653
foreach ($results as $result) {
@@ -49,7 +56,7 @@ public function refresh() {
4956

5057
$to = $currencies[$result['code']];
5158

52-
$this->model_extension_currency_ecb->editValueByCode($result['code'], 1 / ($currencies[$default] * ($from / $to)));
59+
$this->model_extension_currency_ecb->editValueByCode($result['code'], 1 / ($value * ($from / $to)));
5360
}
5461
}
5562
}

0 commit comments

Comments
 (0)