186 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			186 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace ManiaControl\Database;
 | |
| 
 | |
| use ManiaControl\Callbacks\TimerListener;
 | |
| use ManiaControl\ManiaControl;
 | |
| 
 | |
| /**
 | |
|  * Database Connection Class
 | |
|  *
 | |
|  * @author    ManiaControl Team <mail@maniacontrol.com>
 | |
|  * @copyright 2014 ManiaControl Team
 | |
|  * @license   http://www.gnu.org/licenses/ GNU General Public License, Version 3
 | |
|  */
 | |
| class Database implements TimerListener {
 | |
| 	/*
 | |
| 	 * Public Properties
 | |
| 	 */
 | |
| 	public $mysqli = null;
 | |
| 	public $migrationHelper = null;
 | |
| 
 | |
| 	/*
 | |
| 	 * Private Properties
 | |
| 	 */
 | |
| 	private $maniaControl = null;
 | |
| 
 | |
| 	/**
 | |
| 	 * Construct a new Database Connection
 | |
| 	 *
 | |
| 	 * @param ManiaControl $maniaControl
 | |
| 	 */
 | |
| 	public function __construct(ManiaControl $maniaControl) {
 | |
| 		$this->maniaControl = $maniaControl;
 | |
| 
 | |
| 		// Get mysql server information
 | |
| 		/** @var \SimpleXMLElement $databaseXmlTag */
 | |
| 		$databaseXmlTag = $this->maniaControl->config->database;
 | |
| 		$host = $databaseXmlTag->xpath('host');
 | |
| 		if (!$host) {
 | |
| 			$message = "Invalid database configuration (host).";
 | |
| 			$this->maniaControl->quit($message, true);
 | |
| 		}
 | |
| 		$port = $databaseXmlTag->xpath('port');
 | |
| 		if (!$port) {
 | |
| 			$message = "Invalid database configuration (port).";
 | |
| 			$this->maniaControl->quit($message, true);
 | |
| 		}
 | |
| 		$user = $databaseXmlTag->xpath('user');
 | |
| 		if (!$user) {
 | |
| 			$message = "Invalid database configuration (user).";
 | |
| 			$this->maniaControl->quit($message, true);
 | |
| 		}
 | |
| 		$pass = $databaseXmlTag->xpath('pass');
 | |
| 		if (!$pass) {
 | |
| 			$message = "Invalid database configuration (pass).";
 | |
| 			$this->maniaControl->quit($message, true);
 | |
| 		}
 | |
| 
 | |
| 		$host = (string)$host[0];
 | |
| 		$port = (int)$port[0];
 | |
| 		$user = (string)$user[0];
 | |
| 		$pass = (string)$pass[0];
 | |
| 
 | |
| 		// Enable mysqli Reconnect
 | |
| 		ini_set('mysqli.reconnect', 'on');
 | |
| 
 | |
| 		// Open database connection
 | |
| 		$this->mysqli = @new \mysqli($host, $user, $pass, null, $port);
 | |
| 		if ($this->mysqli->connect_error) {
 | |
| 			$message = "Couldn't connect to Database: '{$this->mysqli->connect_error}'";
 | |
| 			$this->maniaControl->quit($message, true);
 | |
| 		}
 | |
| 		$this->mysqli->set_charset("utf8");
 | |
| 
 | |
| 		$this->initDatabase();
 | |
| 		$this->optimizeTables();
 | |
| 
 | |
| 		// Register Method which checks the Database Connection every 5 seconds
 | |
| 		$this->maniaControl->timerManager->registerTimerListening($this, 'checkConnection', 5000);
 | |
| 
 | |
| 		// Create migration helper
 | |
| 		$this->migrationHelper = new MigrationHelper($maniaControl);
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Connect to the defined database (create it if needed)
 | |
| 	 *
 | |
| 	 * @return bool
 | |
| 	 */
 | |
| 	private function initDatabase() {
 | |
| 		$dbName = $this->maniaControl->config->database->xpath('db_name');
 | |
| 		if (!$dbName) {
 | |
| 			$this->maniaControl->quit("Invalid Database Configuration (db_name).", true);
 | |
| 			return false;
 | |
| 		}
 | |
| 		$dbName = (string)$dbName[0];
 | |
| 
 | |
| 		// Try to connect
 | |
| 		$result = $this->mysqli->select_db($dbName);
 | |
| 		if ($result) {
 | |
| 			return true;
 | |
| 		}
 | |
| 
 | |
| 		// Create database
 | |
| 		$databaseQuery     = "CREATE DATABASE ?;";
 | |
| 		$databaseStatement = $this->mysqli->prepare($databaseQuery);
 | |
| 		if ($this->mysqli->error) {
 | |
| 			$this->maniaControl->quit($this->mysqli->error, true);
 | |
| 			return false;
 | |
| 		}
 | |
| 		$databaseStatement->bind_param('s', $dbName);
 | |
| 		$databaseStatement->execute();
 | |
| 		if ($databaseStatement->error) {
 | |
| 			$this->maniaControl->quit($databaseStatement->error, true);
 | |
| 			return false;
 | |
| 		}
 | |
| 		$databaseStatement->close();
 | |
| 
 | |
| 		// Connect to new database
 | |
| 		$this->mysqli->select_db($dbName);
 | |
| 		if ($this->mysqli->error) {
 | |
| 			$message = "Couldn't select database '{$dbName}'. {$this->mysqli->error}";
 | |
| 			$this->maniaControl->quit($message, true);
 | |
| 			return false;
 | |
| 		}
 | |
| 		return true;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Optimize all existing tables
 | |
| 	 *
 | |
| 	 * @return bool
 | |
| 	 */
 | |
| 	private function optimizeTables() {
 | |
| 		$showQuery = "SHOW TABLES;";
 | |
| 		$result    = $this->mysqli->query($showQuery);
 | |
| 		if ($this->mysqli->error) {
 | |
| 			trigger_error($this->mysqli->error);
 | |
| 			return false;
 | |
| 		}
 | |
| 		$count = $result->num_rows;
 | |
| 		if ($count <= 0) {
 | |
| 			$result->free();
 | |
| 			return true;
 | |
| 		}
 | |
| 		$optimizeQuery = "OPTIMIZE TABLE ";
 | |
| 		$index         = 0;
 | |
| 		while ($row = $result->fetch_row()) {
 | |
| 			$tableName = $row[0];
 | |
| 			$optimizeQuery .= "`{$tableName}`";
 | |
| 			if ($index < $count - 1) {
 | |
| 				$optimizeQuery .= ", ";
 | |
| 			}
 | |
| 			$index++;
 | |
| 		}
 | |
| 		$result->free();
 | |
| 		$optimizeQuery .= ";";
 | |
| 		$this->mysqli->query($optimizeQuery);
 | |
| 		if ($this->mysqli->error) {
 | |
| 			trigger_error($this->mysqli->error);
 | |
| 			return false;
 | |
| 		}
 | |
| 		return true;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Check if Connection still exists every 5 seconds
 | |
| 	 *
 | |
| 	 * @param float $time
 | |
| 	 */
 | |
| 	public function checkConnection($time = null) {
 | |
| 		if (!$this->mysqli || !$this->mysqli->ping()) {
 | |
| 			$this->maniaControl->quit("The MySQL server has gone away!", true);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Destruct database connection
 | |
| 	 */
 | |
| 	public function __destruct() {
 | |
| 		if ($this->mysqli && !$this->mysqli->connect_error) {
 | |
| 			$this->mysqli->close();
 | |
| 		}
 | |
| 	}
 | |
| }
 |