diff options
author | marwolaethblack <a.unal677@gmail.com> | 2017-11-24 10:48:31 +0100 |
---|---|---|
committer | marwolaethblack <a.unal677@gmail.com> | 2017-11-24 10:48:31 +0100 |
commit | 1e0b1fa7ac2ad0ae07591aca296e3ef33839ef5e (patch) | |
tree | 417957cd569b27919468d46ea6e22009208ef1b5 /src/AppBundle/Controller/NewDataController.php | |
parent | 8a476ef960d6cb20a580334f1e95f11abd069a07 (diff) |
add real time data every 60sec
Diffstat (limited to 'src/AppBundle/Controller/NewDataController.php')
-rw-r--r-- | src/AppBundle/Controller/NewDataController.php | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/AppBundle/Controller/NewDataController.php b/src/AppBundle/Controller/NewDataController.php new file mode 100644 index 0000000..1aacccc --- /dev/null +++ b/src/AppBundle/Controller/NewDataController.php @@ -0,0 +1,45 @@ +<?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\Component\HttpFoundation\Response; +use Symfony\Bundle\FrameworkBundle\Controller\Controller; + + +class NewDataController extends Controller +{ + /** + * @Route("/latest") + */ + + public function getLatestData() + { + // Get cURL resource + $curl = curl_init(); + curl_setopt($curl, CURLOPT_URL, "http://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']); + $data = json_encode($data); + + $response = new Response($data); + $response->headers->set('Content-Type', 'application/json'); + + return $response; + + } + +}
\ No newline at end of file |