diff options
author | Marcin Zelent <zelent.marcin@gmail.com> | 2018-03-16 17:53:32 +0100 |
---|---|---|
committer | Marcin Zelent <zelent.marcin@gmail.com> | 2018-03-16 17:53:32 +0100 |
commit | 1ab2b90b02705e206680b5428bf1fbaec6438132 (patch) | |
tree | 8ee964fdf84ff49c22ac6449a178da9d1e67eeb0 /src/AppBundle/Controller/HomeController.php | |
parent | ed01011dfb563e7d8ab13b6a0718eed7bf857880 (diff) |
Removed old files.
Diffstat (limited to 'src/AppBundle/Controller/HomeController.php')
-rw-r--r-- | src/AppBundle/Controller/HomeController.php | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/src/AppBundle/Controller/HomeController.php b/src/AppBundle/Controller/HomeController.php deleted file mode 100644 index d84ab76..0000000 --- a/src/AppBundle/Controller/HomeController.php +++ /dev/null @@ -1,60 +0,0 @@ -<?php -/** - * Created by PhpStorm. - * User: andy - * Date: 11/23/17 - * Time: 10:21 AM - */ - -namespace AppBundle\Controller; - -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; -use AppBundle\Utils\Aqi; - -class HomeController extends Controller -{ - /** - * @Route("/", name="homepage") - */ - - - public function numberAction(Aqi $aqi) - { - $table = array( - 'Co' => array('breakpoints' => [0, 4.4, 4.5, 9.4, 9.5, 12.4, 12.5, 15.4, 15.5, 30.4, 30.5, 40.4, 40.5, 50.4], - 'aq' => [0, 50, 51, 100, 101, 150, 151, 200, 201, 300, 301, 400, 401, 500]), - 'So' => array('breakpoints' => [0.000, 0.034, 0.035, 0.144, 0.145, 0.224, 0.225, 0.304, 0.305, 0.604, 0.605, 0.804, 0.805, 1.004], - 'aq' => [0, 50, 51, 100, 101, 150, 151, 200, 201, 300, 301, 400, 401, 500]), - 'No' => array('breakpoints' => [0,0.05,0.08,0.10,0.15,0.20,0.25 ,0.31,0.65, 1.24, 1.25, 1.64, 1.65, 2.04], - 'aq' => [0 ,50 ,51 ,100 ,101 ,150 ,151,200,201, 300, 301, 400, 401, 500]) - ); - - - $tableObj = json_decode(json_encode($table)); - - // Get cURL resource - $curl = curl_init(); - curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings/latest"); - curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON - curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); - // Send the request & save response to $resp - $resp = curl_exec($curl); - // Close request to clear up some resources - curl_close($curl); - - $data = json_decode($resp, true); - $data['TimeStamp'] = gmdate("l jS \of F Y h:i:s A", $data['TimeStamp']); - - $arr = []; - $CO = is_nan($aqi->calculateAQI("Co", $data['Co'], $tableObj)) ? 0 : $aqi->calculateAQI("Co", $data['Co'], $tableObj); - $SO = is_nan($aqi->calculateAQI("So", $data['So'], $tableObj)) ? 0 : $aqi->calculateAQI("So", $data['So'], $tableObj); - $NO = is_nan($aqi->calculateAQI("No", $data['No'], $tableObj)) ? 0 : $aqi->calculateAQI("No", $data['No'], $tableObj); - - array_push($arr, $CO, $SO, $NO); - $max = max($arr); - $data['Aqi'] = $max; - - return $this->render('default/index.html.twig', $data); - } -} |