mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-10-31 03:23:01 +00:00
55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace AirQuality;
|
|
|
|
use \SBRL\TomlConfig;
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
/**
|
|
* Holds the main database connection.
|
|
*/
|
|
class Database
|
|
{
|
|
// Whether the database connection should be read only or not.
|
|
// Defaults to true, as we don't need to write _anything_ to the database.
|
|
private const read_only = true;
|
|
private $connection;
|
|
|
|
private $pdo_options = [
|
|
// https://devdocs.io/php/pdo.setattribute
|
|
\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
|
|
\PDO::ATTR_DEFAULT_FETCH_MODE => \PDO::FETCH_ASSOC,
|
|
\PDO::ATTR_EMULATE_PREPARES => false,
|
|
\PDO::ATTR_AUTOCOMMIT => false
|
|
];
|
|
|
|
function __construct(TomlConfig $in_settings) {
|
|
$this->settings = $in_settings;
|
|
|
|
$this->connect(); // Connect automagically
|
|
}
|
|
|
|
public function connect() {
|
|
$this->connection = new \PDO(
|
|
$this->get_connection_string(),
|
|
$this->settings->get("database.username"),
|
|
$this->settings->get("database.password"),
|
|
$this->pdo_options
|
|
);
|
|
// Make this connection read-only
|
|
if(self::read_only)
|
|
$this->connection->query("SET SESSION TRANSACTION READ ONLY;");
|
|
}
|
|
|
|
public function query($sql, $variables = []) {
|
|
// FUTURE: Optionally cache prepared statements?
|
|
$statement = $this->connection->prepare($sql);
|
|
$statement->execute($variables);
|
|
return $statement; // fetchColumn(), fetchAll(), etc. are defined on the statement, not the return value of execute()
|
|
}
|
|
|
|
private function get_connection_string() {
|
|
return "{$this->settings->get("database.type")}:host={$this->settings->get("database.host")};dbname={$this->settings->get("database.name")};charset=utf8mb4";
|
|
}
|
|
|
|
}
|