2019-01-19 16:08:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace AirQuality\Actions;
|
|
|
|
|
|
|
|
use \SBRL\TomlConfig;
|
|
|
|
use \AirQuality\Repositories\IMeasurementDataRepository;
|
|
|
|
use \AirQuality\ApiResponseSender;
|
|
|
|
|
|
|
|
use \AirQuality\Validator;
|
2019-06-20 23:02:26 +00:00
|
|
|
|
2019-01-19 16:08:47 +00:00
|
|
|
|
|
|
|
class DeviceDataBounds implements IAction {
|
|
|
|
/** @var TomlConfig */
|
|
|
|
private $settings;
|
2019-06-20 23:02:26 +00:00
|
|
|
/** @var \SBRL\PerformanceCounter */
|
|
|
|
private $perfcounter;
|
|
|
|
|
2019-01-19 16:08:47 +00:00
|
|
|
/** @var IMeasurementDataRepository */
|
|
|
|
private $measurement_repo;
|
|
|
|
|
|
|
|
/** @var ApiResponseSender */
|
|
|
|
private $sender;
|
|
|
|
|
|
|
|
/** @var Validator */
|
|
|
|
private $validator;
|
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
TomlConfig $in_settings,
|
|
|
|
IMeasurementDataRepository $in_measurement_repo,
|
2019-06-20 23:02:26 +00:00
|
|
|
ApiResponseSender $in_sender,
|
|
|
|
\SBRL\PerformanceCounter $in_perfcounter) {
|
2019-01-19 16:08:47 +00:00
|
|
|
$this->settings = $in_settings;
|
|
|
|
$this->measurement_repo = $in_measurement_repo;
|
|
|
|
$this->sender = $in_sender;
|
2019-06-20 23:02:26 +00:00
|
|
|
$this->perfcounter = $in_perfcounter;
|
2019-01-19 16:08:47 +00:00
|
|
|
|
|
|
|
$this->validator = new Validator($_GET);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function handle() : bool {
|
|
|
|
global $start_time;
|
|
|
|
|
|
|
|
|
|
|
|
// 1: Validate params
|
|
|
|
$this->validator->is_numberish("device-id");
|
|
|
|
$this->validator->run();
|
|
|
|
|
|
|
|
|
|
|
|
// 2: Pull data from database
|
2019-06-20 23:02:26 +00:00
|
|
|
$this->perfcounter->start("sql");
|
2019-01-19 16:08:47 +00:00
|
|
|
$data = $this->measurement_repo->get_device_reading_bounds(
|
|
|
|
intval($_GET["device-id"])
|
|
|
|
);
|
2019-06-20 23:02:26 +00:00
|
|
|
$this->perfcounter->end("sql");
|
2019-01-19 16:08:47 +00:00
|
|
|
|
|
|
|
// 2.5: Validate data from database
|
|
|
|
if(empty($data)) {
|
|
|
|
http_response_code(404);
|
|
|
|
header("content-type: text/plain");
|
2019-06-20 23:02:26 +00:00
|
|
|
header("x-time-taken: " . $this->perfcounter->render());
|
2019-01-19 16:08:47 +00:00
|
|
|
echo("Error: No data has been recorded from the device id or it doesn't exist.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 3: Serialise data
|
2019-06-20 23:02:26 +00:00
|
|
|
$this->perfcounter->start("encode");
|
2019-01-19 16:08:47 +00:00
|
|
|
$response = json_encode($data);
|
2019-06-20 23:02:26 +00:00
|
|
|
$this->perfcounter->end("encode");
|
2019-01-19 16:08:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
// 4: Send response
|
|
|
|
header("content-length: " . strlen($response));
|
|
|
|
header("content-type: application/json");
|
2019-06-20 23:02:26 +00:00
|
|
|
header("x-time-taken: " . $this->perfcounter->render());
|
2019-01-19 16:08:47 +00:00
|
|
|
echo($response);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|