hanze/iwa-panda2

retrieveData (cec736de0380e21b940fe3cfece2e4ec0525ddf0)
Repositories | README.md

commit cec736de0380e21b940fe3cfece2e4ec0525ddf0
parent e71451daed50f62da961b3cf2df6b323149e9f0f
Author: Kninteman <[email protected]>
Date:   Mon, 12 Jun 2023 20:14:23 +0200

retrieveData

Diffstat:
MModel/Key.php21+++++++++------------
Mcss/dashboard.css2+-
Mjs/panda.js5+++--
3 files changed, 13 insertions(+), 15 deletions(-)

diff --git a/Model/Key.php b/Model/Key.php @@ -1,20 +1,20 @@ <?php Class Key{ function retrieveData($key){ - if($key['data'] == ':3jvl7yb5sRr80s6lTdeOyxV9VTQZkCPRp7bKOWKFWxfL2vhsU4Hhpgcmz9qe0zEk') { - $key1 = new Key; - $key1->retrieveZooData($key); - } else if($key['data'] == ':ae9c50dc5cd58c538a0d6aedb17fffedcaffd568d22381dab3ae72baaeb24684'){ - $key1 = new Key; - $key1->retrieveRBData($key); + $validKeys = [ + ':3jvl7yb5sRr80s6lTdeOyxV9VTQZkCPRp7bKOWKFWxfL2vhsU4Hhpgcmz9qe0zEk' => 'retrieveZooData', + ':ae9c50dc5cd58c538a0d6aedb17fffedcaffd568d22381dab3ae72baaeb24684' => 'retrieveRBData', + ]; + if (array_key_exists($key['data'], $validKeys)) { + $method = $validKeys[$key['data']]; + $this->$method($key); } else { - echo("You have no access here!"); + echo "You have no access here!"; } } function retrieveZooData($key){ $db = new mysqli("86.92.67.21", "friedel", "hailiwa", "wap2"); - $t = new Lollipop\Template(); $weather_data = []; $query = "SELECT distinct temperature, wind_speed, nl.name as city FROM weather_data wd @@ -42,9 +42,6 @@ Class Key{ echo json_encode($weather_data); } - - - function retrieveRBData($key){ $db = new mysqli("86.92.67.21", "friedel", "hailiwa", "wap2"); $weather_data = []; @@ -73,8 +70,8 @@ Class Key{ header('Content-Type: application/json'); echo json_encode($weather_data); } - } + function windchill($temp, $wind): float { $result = 13.12 + 0.6215 * $temp - 11.37 * pow($wind, 0.16) + 0.3965* $temp * pow($wind, 0.16); diff --git a/css/dashboard.css b/css/dashboard.css @@ -123,7 +123,7 @@ h1 { display: inline !important; width: 90% !important; height: auto !important; - margin: 3vw 5% 3vw 5%; + margin: 2vw 5% 3vw 5%; } @media (min-width: 400px) { diff --git a/js/panda.js b/js/panda.js @@ -108,5 +108,6 @@ function fetchDataAndUpdateChart() { myChart.update(); }) } + fetchDataAndUpdateChart(); -setInterval(fetchDataAndUpdateChart, 10000); -\ No newline at end of file +setInterval(fetchDataAndUpdateChart, 300000); +\ No newline at end of file