141 lines
3.7 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
*
* @var mysqli Object instance
*/
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
*
* @var String Driver
*/
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
*
* @return object 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
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;
}
}
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;
}
}
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
}
}
?>