@@ -6,7 +6,7 @@ public function editValueByCode(string $code, float $value): void {
6
6
$ this ->cache ->delete ('currency ' );
7
7
}
8
8
9
- public function refresh () {
9
+ public function refresh ($ default = '' ) {
10
10
$ curl = curl_init ();
11
11
12
12
curl_setopt ($ curl , CURLOPT_URL , 'https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml ' );
@@ -18,14 +18,17 @@ public function refresh() {
18
18
19
19
$ response = curl_exec ($ curl );
20
20
21
+ $ status = curl_getinfo ($ curl , CURLINFO_HTTP_CODE );
22
+
21
23
curl_close ($ curl );
22
24
23
- if ($ response ) {
25
+ if ($ status == 200 ) {
24
26
$ dom = new \DOMDocument ('1.0 ' , 'UTF-8 ' );
25
27
$ dom ->loadXml ($ response );
26
28
27
29
$ cube = $ dom ->getElementsByTagName ('Cube ' )->item (0 );
28
30
31
+ // Compile all the rates into an array
29
32
$ currencies = [];
30
33
31
34
$ currencies ['EUR ' ] = 1.0000 ;
@@ -36,11 +39,15 @@ public function refresh() {
36
39
}
37
40
}
38
41
42
+ if (isset ($ currencies [$ default ])) {
43
+ $ value = $ currencies [$ default ];
44
+ } else {
45
+ $ value = $ currencies ['EUR ' ];
46
+ }
47
+
39
48
if (count ($ currencies ) > 1 ) {
40
49
$ this ->load ->model ('localisation/currency ' );
41
50
42
- $ default = $ this ->config ->get ('config_currency ' );
43
-
44
51
$ results = $ this ->model_localisation_currency ->getCurrencies ();
45
52
46
53
foreach ($ results as $ result ) {
@@ -49,7 +56,7 @@ public function refresh() {
49
56
50
57
$ to = $ currencies [$ result ['code ' ]];
51
58
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 )));
53
60
}
54
61
}
55
62
}
0 commit comments