185 lines
4.8 KiB
PHP
Raw Normal View History

<?php
/* μlogger
*
* Copyright(C) 2017 Bartek Fabiszewski (www.fabiszewski.net)
*
* This is free software; you can redistribute it and/or modify it under
2017-04-07 00:05:28 +02:00
* the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
2017-04-07 00:05:28 +02:00
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
2017-04-11 17:00:40 +02:00
require_once(ROOT_DIR . "/helpers/config.php");
2017-04-09 23:35:55 +02:00
/**
2019-01-23 12:23:25 +01:00
* PDO wrapper
2017-04-09 23:35:55 +02:00
*/
2019-01-23 12:23:25 +01:00
class uDb extends PDO {
2017-04-09 23:35:55 +02:00
/**
* Singleton instance
*
2019-05-15 11:48:24 +02:00
* @var uDb Object instance
2017-04-09 23:35:55 +02:00
*/
protected static $instance;
2017-04-17 22:04:33 +02:00
/**
* Table names
*
* @var array Array of names
*/
protected static $tables;
2019-01-28 23:03:03 +01:00
/**
* Database driver name
*
2019-05-15 11:48:24 +02:00
* @var string Driver
2019-01-28 23:03:03 +01:00
*/
protected static $driver;
2017-04-09 23:35:55 +02:00
/**
2019-01-23 12:23:25 +01:00
* PDO constuctor
2017-04-09 23:35:55 +02:00
*
2019-01-23 12:23:25 +01:00
* @param string $dsn
2017-04-09 23:35:55 +02:00
* @param string $user
* @param string $pass
*/
2019-01-23 12:23:25 +01:00
public function __construct($dsn, $user, $pass) {
try {
$options = [
PDO::ATTR_EMULATE_PREPARES => false, // try to use native prepared statements
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, // throw exceptions
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, // return assoc array by default
];
@parent::__construct($dsn, $user, $pass, $options);
2019-01-28 23:03:03 +01:00
self::$driver = $this->getAttribute(PDO::ATTR_DRIVER_NAME);
2019-01-24 19:07:41 +01:00
$this->setCharset("utf8");
2019-01-23 12:23:25 +01:00
$this->initTables();
} catch (PDOException $e) {
2017-08-25 13:59:19 +02:00
header("HTTP/1.1 503 Service Unavailable");
2019-01-23 12:23:25 +01:00
die("Database connection error (" . $e->getMessage() . ")");
}
}
/**
* Initialize table names based on config
*/
private function initTables() {
self::$tables = [];
$prefix = preg_replace('/[^a-z0-9_]/i', '', uConfig::$dbprefix);
self::$tables['positions'] = $prefix . "positions";
self::$tables['tracks'] = $prefix . "tracks";
self::$tables['users'] = $prefix . "users";
}
2017-04-09 23:35:55 +02:00
/**
* Returns singleton instance
*
2019-05-15 11:48:24 +02:00
* @return uDb Singleton instance
2017-04-09 23:35:55 +02:00
*/
public static function getInstance() {
if (!self::$instance) {
2019-01-23 12:23:25 +01:00
self::$instance = new self(uConfig::$dbdsn, uConfig::$dbuser, uConfig::$dbpass);
2017-04-09 23:35:55 +02:00
}
return self::$instance;
}
2017-04-17 22:04:33 +02:00
/**
* Get full table name including prefix
*
* @param string $name Name
* @return string Full table name
*/
public function table($name) {
return self::$tables[$name];
}
2019-01-24 19:07:41 +01:00
/**
* Returns function name for getting date-time column value as unix timestamp
* @param string $column
* @return string
*/
2019-01-24 19:07:41 +01:00
public function unix_timestamp($column) {
2019-01-28 23:03:03 +01:00
switch (self::$driver) {
2019-01-24 19:07:41 +01:00
default:
case "mysql":
return "UNIX_TIMESTAMP($column)";
break;
case "pgsql":
return "EXTRACT(EPOCH FROM $column)";
break;
case "sqlite":
return "STRFTIME('%s', $column)";
break;
}
}
/**
* Returns function name for getting date-time column value as 'YYYY-MM-DD hh:mm:ss'
* @param string $column
* @return string
*/
2019-01-24 19:07:41 +01:00
public function from_unixtime($column) {
2019-01-28 23:03:03 +01:00
switch (self::$driver) {
2019-01-24 19:07:41 +01:00
default:
case "mysql":
return "FROM_UNIXTIME($column)";
break;
case "pgsql":
return "TO_TIMESTAMP($column)";
break;
case "sqlite":
2019-01-28 23:03:03 +01:00
return "DATETIME($column, 'unixepoch')";
2019-01-24 19:07:41 +01:00
break;
}
}
/**
* Set character set
* @param string $charset
*/
2019-01-24 19:07:41 +01:00
private function setCharset($charset) {
2019-01-28 23:03:03 +01:00
if (self::$driver == "pgsql" || self::$driver == "mysql") {
$this->query("SET NAMES '$charset'");
}
2019-01-24 19:07:41 +01:00
}
/**
* Extract database name from DSN
* @param string $dsn
* @return string Empty string if not found
*/
static public function getDbName($dsn) {
$name = "";
if (strpos($dsn, ":") !== false) {
list($scheme, $dsnWithoutScheme) = explode(":", $dsn, 2);
switch ($scheme) {
case "sqlite":
case "sqlite2":
case "sqlite3":
$pattern = "/(.+)/";
break;
case "pgsql":
$pattern = "/dbname=([^; ]+)/";
break;
default:
$pattern = "/dbname=([^;]+)/";
break;
}
$result = preg_match($pattern, $dsnWithoutScheme, $matches);
if ($result === 1) {
$name = $matches[1];
}
}
return $name;
}
}
?>