aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Zelent <zelent.marcin@gmail.com>2018-03-16 17:53:32 +0100
committerMarcin Zelent <zelent.marcin@gmail.com>2018-03-16 17:53:32 +0100
commit1ab2b90b02705e206680b5428bf1fbaec6438132 (patch)
tree8ee964fdf84ff49c22ac6449a178da9d1e67eeb0 /src/AppBundle/Controller/NewDataController.php
parented01011dfb563e7d8ab13b6a0718eed7bf857880 (diff)
Removed old files.
Diffstat (limited to 'src/AppBundle/Controller/NewDataController.php')
-rw-r--r--src/AppBundle/Controller/NewDataController.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/AppBundle/Controller/NewDataController.php b/src/AppBundle/Controller/NewDataController.php
deleted file mode 100644
index 5dd440f..0000000
--- a/src/AppBundle/Controller/NewDataController.php
+++ /dev/null
@@ -1,42 +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\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, "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']);
- $data = json_encode($data);
-
- $response = new Response($data);
- $response->headers->set('Content-Type', 'application/json');
- return $response;
- }
-
-}