From fecdf3c23136af91e254b4c1a992ec74ee0988f1 Mon Sep 17 00:00:00 2001 From: Luke <17616949+nice42q@users.noreply.github.com> Date: Fri, 24 May 2024 11:14:53 +0200 Subject: [PATCH] Update coingecko.php --- coingecko.php | 88 +++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 79 insertions(+), 9 deletions(-) diff --git a/coingecko.php b/coingecko.php index ad5cd23..0277a2e 100644 --- a/coingecko.php +++ b/coingecko.php @@ -1,4 +1,57 @@ coingecko.com"; // Die Standard-Zeitzone, die verwendet werden soll, setzen. @@ -10,9 +63,9 @@ $xmrdatas = json_decode(file_get_contents("coingecko.json"), true); // Liefert den aktuellen Unix-Zeitstempel $zeit = time(); -// Sind 5 Sekunden vergangen? +// Sind ~30 Minuten vergangen? if(($zeit - $xmrdatas['time']) >= 5){ - //echo "Gespeicherte Zeit: ".$xmrdatas['time']."
Aktuelle Zeit: ".$zeit; + //echo "Gespeicherte Zeit: ".$xmrdatas['time']."
Aktuelle Zeit: ".$zeit; // Initialize CURL $ch = curl_init('https://api.coingecko.com/api/v3/simple/price?ids=monero&vs_currencies=btc%2Ceth%2Cltc%2Cbch%2Cbnb%2Ceos%2Cxrp%2Cxlm%2Clink%2Cdot%2Cyfi%2Cusd%2Caed%2Cars%2Caud%2Cbdt%2Cbhd%2Cbmd%2Cbrl%2Ccad%2Cchf%2Cclp%2Ccny%2Cczk%2Cdkk%2Ceur%2Cgbp%2Chkd%2Chuf%2Cidr%2Cils%2Cinr%2Cjpy%2Ckrw%2Ckwd%2Clkr%2Cmmk%2Cmxn%2Cmyr%2Cngn%2Cnok%2Cnzd%2Cphp%2Cpkr%2Cpln%2Crub%2Csar%2Csek%2Csgd%2Cthb%2Ctry%2Ctwd%2Cuah%2Cvef%2Cvnd%2Czar%2Cxdr%2Cxag%2Cxau%2Cbits%2Csats&include_market_cap=true&include_24hr_vol=true&include_24hr_change=true&include_last_updated_at=true'); @@ -22,19 +75,36 @@ if(($zeit - $xmrdatas['time']) >= 5){ $json = curl_exec($ch); curl_close($ch); - // Sortiert/Formatiert die Ausgabe - $sort_array = json_decode($json, true); + // Sortiert/Formatiert die Ausgabe + $sort_array = json_decode($json, true); $new_sort_array = $sort_array['monero']; + // Zeit wird ergänzt + $new_array['time'] = $zeit; $new_sort_array['time'] = $zeit; + + foreach ($array as $fiatValue) { + $fiatValue = strtolower($fiatValue); + if (array_key_exists($fiatValue, $sort_array['monero'])) { + $new_array[$fiatValue]['lastValue'] = $sort_array['monero'][$fiatValue]; + $new_array[$fiatValue]['lastDate'] = $zeit; + }else{ + $new_array[$fiatValue]['lastValue'] = $xmrdatas[$fiatValue]['lastValue']; + $new_array[$fiatValue]['lastDate'] = $xmrdatas[$fiatValue]['lastDate']; + } + //print_r($new_array); + } + + - // Werte in die .json gespeichert - file_put_contents("coingecko.json", json_encode($new_sort_array)); + // Werte in die .json gespeichert + file_put_contents("coingecko.json", json_encode($new_array)); + file_put_contents("coingecko-original.json", json_encode($new_sort_array)); - // echo "
Sync.
"; + // echo "
Sync.
"; }//else{ - //echo "Keine Daten, noch zu früh!

"; - //echo "Gespeicherte Zeit: ".$xmrdatas['time']."
Aktuelle Zeit: ".$zeit."

Differenz: ".$zeit - $xmrdatas['time']."

"; + //echo "Keine Daten, noch zu früh!

"; + //echo "Gespeicherte Zeit: ".$xmrdatas['time']."
Aktuelle Zeit: ".$zeit."

Differenz: ".$zeit - $xmrdatas['time']."

"; //} ?>