2019-07-18 20:19:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace AirQuality\Repositories;
|
|
|
|
|
|
|
|
use Location\Coordinate;
|
|
|
|
use Location\Distance\Vincenty;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches device info from a MariaDB database.
|
|
|
|
*/
|
2019-07-18 21:18:30 +00:00
|
|
|
class MariaDBSensorRepository implements ISensorRepository {
|
2019-07-18 20:19:16 +00:00
|
|
|
public static $table_name = "sensors";
|
|
|
|
public static $col_id = "id";
|
|
|
|
public static $col_type = "Type";
|
2019-07-18 21:18:30 +00:00
|
|
|
public static $col_description = "Description";
|
2019-07-18 20:19:16 +00:00
|
|
|
|
|
|
|
public static $table_name_assoc = "device_sensors";
|
|
|
|
public static $col_assoc_device_id = "device_id";
|
|
|
|
public static $col_assoc_sensor_id = "sensors_id";
|
|
|
|
|
2021-01-30 18:26:50 +00:00
|
|
|
public static $table_name_rtassoc = "sensor_reading_value_types";
|
|
|
|
public static $col_rtassoc_sensor_id = "sensor_id";
|
|
|
|
public static $col_rtassoc_rvt_id = "reading_value_types_id";
|
|
|
|
|
2019-07-18 20:19:16 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The database connection.
|
|
|
|
* @var \AirQuality\Database
|
|
|
|
*/
|
|
|
|
private $database;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function that gets a static variable by it's name. Useful in preparing SQL queries.
|
|
|
|
* @var callable
|
|
|
|
*/
|
|
|
|
private $get_static;
|
|
|
|
/**
|
|
|
|
* Function that gets a static variable by it's name & class. Useful in preparing SQL queries.
|
|
|
|
* @var callable
|
|
|
|
*/
|
|
|
|
private $get_static_extra;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new ISensorRepository implementation that's designed for
|
|
|
|
* talking to MariaDB databases.
|
|
|
|
* @param \AirQuality\Database $in_database The database connection instance to use to talk to the database.
|
|
|
|
*/
|
|
|
|
function __construct(\AirQuality\Database $in_database) {
|
|
|
|
$this->database = $in_database;
|
|
|
|
|
|
|
|
$this->get_static = function($name) { return self::$$name; };
|
|
|
|
$this->get_static_extra = function($class_name, $name) {
|
|
|
|
return $class_name::$$name;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function get_all_sensors() {
|
|
|
|
$s = $this->get_static;
|
|
|
|
|
|
|
|
return $this->database->query(
|
|
|
|
"SELECT
|
|
|
|
{$s("table_name")}.{$s("col_id")} AS id,
|
|
|
|
{$s("table_name")}.{$s("col_type")} AS type,
|
2019-07-18 21:18:30 +00:00
|
|
|
{$s("table_name")}.{$s("col_description")} AS description
|
2019-07-18 20:19:16 +00:00
|
|
|
FROM {$s("table_name")};", [
|
|
|
|
|
|
|
|
]
|
|
|
|
)->fetchAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_device_sensors(int $device_id) : array {
|
|
|
|
$s = $this->get_static;
|
|
|
|
|
|
|
|
return $this->database->query(
|
|
|
|
"SELECT
|
|
|
|
{$s("table_name")}.{$s("col_id")} AS id,
|
|
|
|
{$s("table_name")}.{$s("col_type")} AS type,
|
2019-07-18 21:18:30 +00:00
|
|
|
{$s("table_name")}.{$s("col_description")} AS description
|
|
|
|
FROM {$s("table_name_assoc")}
|
|
|
|
JOIN {$s("table_name")}
|
|
|
|
ON {$s("table_name")}.{$s("col_id")} = {$s("table_name_assoc")}.{$s("col_assoc_sensor_id")}
|
2019-07-18 20:19:16 +00:00
|
|
|
WHERE {$s("table_name_assoc")}.{$s("col_assoc_device_id")} = :device_id;", [
|
|
|
|
"device_id" => $device_id
|
|
|
|
]
|
|
|
|
)->fetchAll();
|
|
|
|
}
|
|
|
|
}
|