diff options
author | marwolaethblack <a.unal677@gmail.com> | 2017-11-23 11:54:46 +0100 |
---|---|---|
committer | marwolaethblack <a.unal677@gmail.com> | 2017-11-23 11:54:46 +0100 |
commit | 0575ee556944b85e14bdc664bb9e67234edf1836 (patch) | |
tree | 2cd38500732360276321f27ed461aa8b52269bb7 /src/AppBundle | |
parent | 4312b353dbb4b448d551975b63db9c95b3eef4f5 (diff) |
Show data from api
Diffstat (limited to 'src/AppBundle')
-rw-r--r-- | src/AppBundle/Controller/DefaultController.php | 21 | ||||
-rw-r--r-- | src/AppBundle/Controller/HomeController.php | 41 |
2 files changed, 41 insertions, 21 deletions
diff --git a/src/AppBundle/Controller/DefaultController.php b/src/AppBundle/Controller/DefaultController.php deleted file mode 100644 index cecd334..0000000 --- a/src/AppBundle/Controller/DefaultController.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -namespace AppBundle\Controller; - -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; -use Symfony\Component\HttpFoundation\Request; - -class DefaultController extends Controller -{ - /** - * @Route("/", name="homepage") - */ - public function indexAction(Request $request) - { - // replace this example code with whatever you need - return $this->render('default/index.html.twig', [ - 'base_dir' => realpath($this->getParameter('kernel.project_dir')).DIRECTORY_SEPARATOR, - ]); - } -} diff --git a/src/AppBundle/Controller/HomeController.php b/src/AppBundle/Controller/HomeController.php new file mode 100644 index 0000000..6190951 --- /dev/null +++ b/src/AppBundle/Controller/HomeController.php @@ -0,0 +1,41 @@ +<?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 HomeController extends Controller +{ + /** + * @Route("/", name="homepage") + */ + + public function numberAction() + { + // 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']); + + + return $this->render('default/index.html.twig',$data); + } + +}
\ No newline at end of file |