2019-01-23 12:23:25 +01:00

96 lines
2.6 KiB
PHP

<?php
/* μlogger
*
* Copyright(C) 2017 Bartek Fabiszewski (www.fabiszewski.net)
*
* This is free software; you can redistribute it and/or modify it under
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
require_once(ROOT_DIR . "/helpers/config.php");
/**
* PDO wrapper
*/
class uDb extends PDO {
/**
* Singleton instance
*
* @var mysqli Object instance
*/
protected static $instance;
/**
* Table names
*
* @var array Array of names
*/
protected static $tables;
/**
* PDO constuctor
*
* @param string $dsn
* @param string $user
* @param string $pass
*/
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);
$this->initTables();
} catch (PDOException $e) {
header("HTTP/1.1 503 Service Unavailable");
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";
}
/**
* Returns singleton instance
*
* @return object Singleton instance
*/
public static function getInstance() {
if (!self::$instance) {
self::$instance = new self(uConfig::$dbdsn, uConfig::$dbuser, uConfig::$dbpass);
}
return self::$instance;
}
/**
* Get full table name including prefix
*
* @param string $name Name
* @return string Full table name
*/
public function table($name) {
return self::$tables[$name];
}
}
?>