2019-01-15 15:46:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace AirQuality\Repositories;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches device info from a MariaDB database.
|
|
|
|
*/
|
|
|
|
class MariaDBDeviceRepository implements IDeviceRepository {
|
|
|
|
public static $table_name = "devices";
|
|
|
|
public static $column_device_id = "device_id";
|
|
|
|
public static $column_device_name = "device_name";
|
|
|
|
public static $column_device_type = "device_type";
|
|
|
|
public static $column_owner_id = "owner_id";
|
|
|
|
public static $column_lat = "device_latitude";
|
|
|
|
public static $column_long = "device_longitude";
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The database connection.
|
|
|
|
* @var \AirQuality\Database
|
|
|
|
*/
|
|
|
|
private $database;
|
|
|
|
|
2019-01-17 15:39:50 +00:00
|
|
|
/** Function that gets a static variable by it's name. Useful in preparing SQL queries. */
|
|
|
|
private $get_static;
|
|
|
|
|
2019-01-15 15:46:24 +00:00
|
|
|
function __construct(\AirQuality\Database $in_database) {
|
|
|
|
$this->database = $in_database;
|
2019-01-17 15:39:50 +00:00
|
|
|
|
|
|
|
$this->get_static = function($name) { return self::$$name; };
|
2019-01-15 15:46:24 +00:00
|
|
|
}
|
|
|
|
|
2019-01-17 15:39:50 +00:00
|
|
|
|
|
|
|
public function get_all_devices($only_with_location) {
|
|
|
|
$s = $this->get_static;
|
|
|
|
|
|
|
|
$sql = "SELECT
|
2019-01-17 15:52:42 +00:00
|
|
|
{$s("column_device_id")} AS id,
|
|
|
|
{$s("column_device_name")} AS name,
|
|
|
|
{$s("column_lat")} AS latitude,
|
|
|
|
{$s("column_long")} AS longitude
|
2019-01-17 15:39:50 +00:00
|
|
|
FROM {$s("table_name")}";
|
|
|
|
|
|
|
|
if($only_with_location)
|
|
|
|
$sql .= "\nWHERE
|
|
|
|
{$s("column_lat")} IS NOT NULL
|
|
|
|
AND {$s("column_long")} IS NOT NULL";
|
|
|
|
|
|
|
|
$sql .= ";";
|
|
|
|
|
|
|
|
return $this->database->query($sql)->fetchAll();
|
|
|
|
}
|
2019-01-15 15:46:24 +00:00
|
|
|
}
|