aboutsummaryrefslogtreecommitdiff
blob: 7b5d9937a09bf8757fd9eb426d1b325afe296e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
namespace AppBundle\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;


class LastWeekDataController extends Controller
{
    /**
     * @Route("/LastWeekData", name="LastWeekData")
     */

    public function GetAllData()
    {
        // Get cURL resource
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings/lastweek");
        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);


        usort($data, function($a,$b){
            return $a['TimeStamp'] - $b['TimeStamp'];
        });

        foreach($data as $index => $item)
        {
            $data[$index]['TimeStamp'] = gmdate("l jS \of F Y h:i:s A", $item['TimeStamp']);
        }

        $parametersToTwig = array("data" => $data);

        return $this->render('default/LastWeekData.html.twig',$parametersToTwig);
    }
}