diff options
| author | Shadify <boomkin1234@hotmail.com> | 2017-11-30 13:06:42 +0100 | 
|---|---|---|
| committer | Shadify <boomkin1234@hotmail.com> | 2017-11-30 13:06:42 +0100 | 
| commit | fb182cdeeb54478f634d8d7a6d49d53d3dec69e1 (patch) | |
| tree | cf639b022525f3b6091a2f584b413cb8af35dcd8 /src/AppBundle/Controller/AllDataController.php | |
| parent | 4246f15d64d9ec460b3cb5acc2e838978bc2c91c (diff) | |
Added all readings for graph
Diffstat (limited to 'src/AppBundle/Controller/AllDataController.php')
| -rw-r--r-- | src/AppBundle/Controller/AllDataController.php | 38 | 
1 files changed, 38 insertions, 0 deletions
| diff --git a/src/AppBundle/Controller/AllDataController.php b/src/AppBundle/Controller/AllDataController.php new file mode 100644 index 0000000..18a30a1 --- /dev/null +++ b/src/AppBundle/Controller/AllDataController.php @@ -0,0 +1,38 @@ +<?php +namespace AppBundle\Controller; + +use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; +use Symfony\Component\HttpFoundation\Response; +use Symfony\Bundle\FrameworkBundle\Controller\Controller; + +class AllDataController extends Controller +{ +    /** +     * @Route("/AllDataReadings", name="AllData") +     */ +    public function GetAllData() +    { +        // Get cURL resource +        $curl = curl_init(); +        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings"); +        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); +        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/AllDataPage.html.twig',$parametersToTwig); + + +    } +}
\ No newline at end of file |