2015-02-08 16:29:39 +00:00
|
|
|
<?php
|
2015-08-29 15:43:13 +00:00
|
|
|
/**
|
|
|
|
* FuzeWorks
|
|
|
|
*
|
|
|
|
* The FuzeWorks MVC PHP FrameWork
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 TechFuze
|
|
|
|
*
|
|
|
|
* This program 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/>.
|
|
|
|
*
|
|
|
|
* @author TechFuze
|
|
|
|
* @copyright Copyright (c) 2013 - 2015, Techfuze. (http://techfuze.net)
|
|
|
|
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
|
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
|
|
|
|
* @link http://fuzeworks.techfuze.net
|
|
|
|
* @since Version 0.0.1
|
|
|
|
* @version Version 0.0.1
|
|
|
|
*/
|
2015-02-08 16:29:39 +00:00
|
|
|
|
2015-04-30 19:19:07 +00:00
|
|
|
namespace Module\Database;
|
2015-04-29 15:18:33 +00:00
|
|
|
use \FuzeWorks\Module;
|
|
|
|
use \PDO;
|
2015-05-06 16:26:19 +00:00
|
|
|
use \FuzeWorks\DatabaseException;
|
2015-04-29 15:18:33 +00:00
|
|
|
|
2015-08-29 15:43:13 +00:00
|
|
|
/**
|
|
|
|
* Database Class
|
|
|
|
*
|
|
|
|
* This class is a wrapper for PDO.
|
|
|
|
*
|
|
|
|
* @package net.techfuze.fuzeworks.database
|
|
|
|
* @author Abel Hoogeveen <abel@techfuze.net>
|
|
|
|
* @copyright Copyright (c) 2013 - 2015, Techfuze. (http://techfuze.net)
|
|
|
|
*/
|
2015-04-30 19:19:07 +00:00
|
|
|
class Main extends Module {
|
2015-02-08 16:29:39 +00:00
|
|
|
|
2015-04-30 19:19:07 +00:00
|
|
|
/**
|
|
|
|
* The default database connection
|
|
|
|
* @access private
|
|
|
|
* @var PDO Class
|
|
|
|
*/
|
2015-02-08 16:29:39 +00:00
|
|
|
private $DBH;
|
|
|
|
public $prefix;
|
|
|
|
|
|
|
|
public function __construct(&$core) {
|
|
|
|
parent::__construct($core);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function onLoad() {
|
|
|
|
$this->config->dbActive = true;
|
|
|
|
}
|
|
|
|
|
2015-05-06 16:26:19 +00:00
|
|
|
/**
|
|
|
|
* Connect to a database
|
|
|
|
* @access public
|
|
|
|
* @param StdObject Config, like the database config in Application/Config
|
|
|
|
*/
|
2015-04-30 19:19:07 +00:00
|
|
|
public function connect($config = null) {
|
|
|
|
// If nothing is given, connect to database from the main config, otherwise use the served configuration
|
|
|
|
if (is_null($config)) {
|
|
|
|
$db = $this->mods->config->database;
|
2015-02-08 16:29:39 +00:00
|
|
|
} else {
|
2015-04-30 19:19:07 +00:00
|
|
|
$db = $config;
|
2015-02-08 16:29:39 +00:00
|
|
|
}
|
2015-05-06 16:26:19 +00:00
|
|
|
|
|
|
|
if (empty($db->type) || empty($db->host)) {
|
|
|
|
throw (new DatabaseException('Database is not configured!'));
|
|
|
|
}
|
2015-04-30 19:19:07 +00:00
|
|
|
|
|
|
|
// Get the DSN for popular types of databases or a custom DSN
|
|
|
|
switch (strtolower($db->type)) {
|
|
|
|
case 'mysql':
|
|
|
|
$dsn = "mysql:host=".$db->host.";";
|
|
|
|
$dsn .= (!empty($db->database) ? "dbname=".$db->database.";" : "");
|
2015-02-08 16:29:39 +00:00
|
|
|
break;
|
2015-04-30 19:19:07 +00:00
|
|
|
case 'custom':
|
|
|
|
$dsn = $db->dsn;
|
2015-02-08 16:29:39 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-04-30 19:19:07 +00:00
|
|
|
try {
|
|
|
|
$this->mods->logger->logInfo("Connecting to '".$dsn."'", "Database");
|
|
|
|
// And create the connection
|
|
|
|
$this->DBH = new PDO($dsn, $db->username, $db->password, (isset($db->options) ? $db->options : null));
|
|
|
|
$this->DBH->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
|
|
$this->mods->logger->logInfo("Connected to database", "Database");
|
|
|
|
|
|
|
|
// And set the prefix
|
|
|
|
$this->prefix = $db->prefix;
|
|
|
|
} catch (Exception $e) {
|
2015-05-06 16:26:19 +00:00
|
|
|
throw (new DatabaseException('Could not connect to the database: "'. $e->getMessage() . '"'));
|
2015-04-30 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPrefix() {
|
2015-07-28 10:06:40 +00:00
|
|
|
if (!$this->is_active()) {
|
|
|
|
$this->connect();
|
|
|
|
}
|
2015-04-30 19:19:07 +00:00
|
|
|
return $this->prefix;
|
|
|
|
}
|
2015-02-08 16:29:39 +00:00
|
|
|
|
2015-04-30 19:19:07 +00:00
|
|
|
public function is_active() {
|
|
|
|
if($this->DBH === null){
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
2015-02-08 16:29:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __call($name, $params) {
|
|
|
|
if ($this->is_active()) {
|
2015-08-29 15:43:13 +00:00
|
|
|
return call_user_func_array(array($this->DBH, $name), $params);
|
2015-02-08 16:29:39 +00:00
|
|
|
} else {
|
2015-04-30 19:19:07 +00:00
|
|
|
$this->connect();
|
2015-08-29 15:43:13 +00:00
|
|
|
return call_user_func_array(array($this->DBH, $name), $params);
|
2015-02-08 16:29:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __get($name) {
|
|
|
|
if ($this->is_active()) {
|
2015-08-29 15:43:13 +00:00
|
|
|
return $this->DBH->$name;
|
2015-02-08 16:29:39 +00:00
|
|
|
} else {
|
2015-04-30 19:19:07 +00:00
|
|
|
$this->connect();
|
2015-08-29 15:43:13 +00:00
|
|
|
return $this->DBH->$name;
|
|
|
|
}
|
2015-02-08 16:29:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function __set($name, $value) {
|
|
|
|
if ($this->is_active()) {
|
2015-08-29 15:43:13 +00:00
|
|
|
$this->DBH->$name = $value;
|
2015-02-08 16:29:39 +00:00
|
|
|
} else {
|
2015-04-30 19:19:07 +00:00
|
|
|
$this->connect();
|
2015-08-29 15:43:13 +00:00
|
|
|
$this->DBH->$name = $value;
|
|
|
|
}
|
2015-02-08 16:29:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|