2017-04-06 18:07:15 +02:00
|
|
|
<?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
|
2017-04-06 18:07:15 +02:00
|
|
|
* (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-06 18:07:15 +02:00
|
|
|
|
2017-04-11 17:00:40 +02:00
|
|
|
require_once(ROOT_DIR . "/helpers/config.php");
|
2017-04-06 18:07:15 +02:00
|
|
|
|
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;
|
|
|
|
|
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);
|
|
|
|
$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() . ")");
|
2017-04-06 18:07:15 +02:00
|
|
|
}
|
2017-08-17 17:19:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-06 18:07:15 +02:00
|
|
|
}
|
|
|
|
|
2017-04-09 23:35:55 +02:00
|
|
|
/**
|
|
|
|
* Returns singleton instance
|
2017-08-17 17:19:47 +02:00
|
|
|
*
|
|
|
|
* @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-06 18:07:15 +02:00
|
|
|
}
|
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];
|
|
|
|
}
|
2017-04-06 18:07:15 +02:00
|
|
|
}
|
2017-04-19 21:35:29 +02:00
|
|
|
?>
|