2013-11-09 11:06:04 +01:00
|
|
|
<?php
|
|
|
|
|
2013-11-12 15:48:25 +01:00
|
|
|
namespace ManiaControl\Plugins;
|
|
|
|
|
|
|
|
require_once __DIR__ . '/Plugin.php';
|
2013-12-04 00:40:37 +01:00
|
|
|
require_once __DIR__ . '/PluginMenu.php';
|
2013-11-12 15:48:25 +01:00
|
|
|
|
|
|
|
use ManiaControl\ManiaControl;
|
2013-11-09 11:06:04 +01:00
|
|
|
|
|
|
|
/**
|
2013-11-12 15:48:25 +01:00
|
|
|
* Class managing plugins
|
2013-11-09 11:06:04 +01:00
|
|
|
*
|
2013-11-12 15:48:25 +01:00
|
|
|
* @author steeffeen & kremsy
|
2013-11-09 11:06:04 +01:00
|
|
|
*/
|
2013-11-12 15:48:25 +01:00
|
|
|
class PluginManager {
|
2013-11-10 02:55:08 +01:00
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
const TABLE_PLUGINS = 'mc_plugins';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Private properties
|
|
|
|
*/
|
|
|
|
private $maniaControl = null;
|
2013-12-04 00:40:37 +01:00
|
|
|
private $pluginMenu = null;
|
2013-11-10 02:55:08 +01:00
|
|
|
private $activePlugins = array();
|
|
|
|
private $pluginClasses = array();
|
2013-11-09 11:06:04 +01:00
|
|
|
|
2013-11-10 02:55:08 +01:00
|
|
|
/**
|
2013-11-12 19:33:25 +01:00
|
|
|
* Construct plugin manager
|
2013-11-10 02:55:08 +01:00
|
|
|
*
|
2013-11-12 15:48:25 +01:00
|
|
|
* @param \ManiaControl\ManiaControl $maniaControl
|
2013-11-10 02:55:08 +01:00
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
|
|
|
$this->initTables();
|
2013-12-04 00:40:37 +01:00
|
|
|
|
|
|
|
$this->pluginMenu = new PluginMenu($maniaControl);
|
|
|
|
$this->maniaControl->configurator->addMenu($this->pluginMenu);
|
2013-11-10 02:55:08 +01:00
|
|
|
}
|
2013-11-09 11:06:04 +01:00
|
|
|
|
2013-11-10 02:55:08 +01:00
|
|
|
/**
|
|
|
|
* Initialize necessary database tables
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function initTables() {
|
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
|
|
|
$pluginsTableQuery = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_PLUGINS . "` (
|
|
|
|
`index` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
`className` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
|
`active` tinyint(1) NOT NULL DEFAULT '0',
|
|
|
|
`changed` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
|
|
PRIMARY KEY (`index`)
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='ManiaControl plugin status' AUTO_INCREMENT=1;";
|
|
|
|
$tableStatement = $mysqli->prepare($pluginsTableQuery);
|
|
|
|
if ($mysqli->error) {
|
|
|
|
trigger_error($mysqli->error, E_USER_ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$tableStatement->execute();
|
|
|
|
if ($tableStatement->error) {
|
|
|
|
trigger_error($tableStatement->error, E_USER_ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$tableStatement->close();
|
|
|
|
return true;
|
|
|
|
}
|
2013-11-09 11:06:04 +01:00
|
|
|
|
2013-11-10 02:55:08 +01:00
|
|
|
/**
|
|
|
|
* Save plugin status in database
|
|
|
|
*
|
|
|
|
* @param string $className
|
|
|
|
* @param bool $active
|
|
|
|
* @return bool
|
|
|
|
*/
|
2013-12-09 20:31:02 +01:00
|
|
|
public function savePluginStatus($className, $active) {
|
2013-11-10 02:55:08 +01:00
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
|
|
|
$pluginStatusQuery = "INSERT INTO `" . self::TABLE_PLUGINS . "` (
|
|
|
|
`className`,
|
|
|
|
`active`
|
|
|
|
) VALUES (
|
|
|
|
?, ?
|
|
|
|
) ON DUPLICATE KEY UPDATE
|
|
|
|
`active` = VALUES(`active`);";
|
|
|
|
$pluginStatement = $mysqli->prepare($pluginStatusQuery);
|
|
|
|
if ($mysqli->error) {
|
|
|
|
trigger_error($mysqli->error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$activeInt = ($active ? 1 : 0);
|
|
|
|
$pluginStatement->bind_param('si', $className, $activeInt);
|
|
|
|
$pluginStatement->execute();
|
|
|
|
if ($pluginStatement->error) {
|
|
|
|
trigger_error($pluginStatement->error);
|
2013-11-12 16:52:23 +01:00
|
|
|
$pluginStatement->close();
|
2013-11-10 02:55:08 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$pluginStatement->close();
|
|
|
|
return true;
|
|
|
|
}
|
2013-11-09 13:29:18 +01:00
|
|
|
|
2013-11-10 02:55:08 +01:00
|
|
|
/**
|
|
|
|
* Get plugin status from database
|
|
|
|
*
|
|
|
|
* @param string $className
|
|
|
|
* @return bool
|
|
|
|
*/
|
2013-12-09 20:31:02 +01:00
|
|
|
public function getPluginStatus($className) {
|
2013-11-10 02:55:08 +01:00
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
|
|
|
$pluginStatusQuery = "SELECT `active` FROM `" . self::TABLE_PLUGINS . "`
|
|
|
|
WHERE `className` = ?;";
|
|
|
|
$pluginStatement = $mysqli->prepare($pluginStatusQuery);
|
|
|
|
if ($mysqli->error) {
|
|
|
|
trigger_error($mysqli->error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$pluginStatement->bind_param('s', $className);
|
|
|
|
$pluginStatement->execute();
|
|
|
|
if ($pluginStatement->error) {
|
|
|
|
trigger_error($pluginStatement->error);
|
|
|
|
$pluginStatement->close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$pluginStatement->store_result();
|
|
|
|
if ($pluginStatement->num_rows <= 0) {
|
|
|
|
$pluginStatement->free_result();
|
|
|
|
$pluginStatement->close();
|
2013-11-12 19:33:25 +01:00
|
|
|
$this->savePluginStatus($className, false);
|
2013-11-10 02:55:08 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$pluginStatement->bind_result($activeInt);
|
|
|
|
$pluginStatement->fetch();
|
|
|
|
$active = ($activeInt === 1);
|
|
|
|
$pluginStatement->free_result();
|
|
|
|
$pluginStatement->close();
|
|
|
|
return $active;
|
|
|
|
}
|
2013-11-09 13:34:36 +01:00
|
|
|
|
2013-12-12 19:41:37 +01:00
|
|
|
/**
|
|
|
|
* Activate and start the plugin with the given name
|
|
|
|
*
|
|
|
|
* @param string $pluginClass
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function activatePlugin($pluginClass) {
|
|
|
|
if (!in_array($pluginClass, $this->pluginClasses)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (isset($this->activePlugins[$pluginClass])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$this->savePluginStatus($pluginClass, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deactivate the plugin with the given name
|
|
|
|
*
|
|
|
|
* @param string $pluginClass
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function deactivatePlugin($pluginClass) {
|
|
|
|
if (!in_array($pluginClass, $this->pluginClasses)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!isset($this->activePlugins[$pluginClass])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$this->savePluginStatus($pluginClass, false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-10 02:55:08 +01:00
|
|
|
/**
|
|
|
|
* Load complete plugins directory and start all configured plugins
|
|
|
|
*/
|
|
|
|
public function loadPlugins() {
|
|
|
|
$pluginsDirectory = ManiaControlDir . '/plugins/';
|
|
|
|
$pluginFiles = scandir($pluginsDirectory, 0);
|
|
|
|
foreach ($pluginFiles as $pluginFile) {
|
|
|
|
if (stripos($pluginFile, '.') === 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$classesBefore = get_declared_classes();
|
|
|
|
$success = include_once $pluginsDirectory . $pluginFile;
|
|
|
|
if (!$success) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$classesAfter = get_declared_classes();
|
|
|
|
$newClasses = array_diff($classesAfter, $classesBefore);
|
|
|
|
foreach ($newClasses as $className) {
|
2013-12-03 22:21:17 +01:00
|
|
|
if (!in_array(Plugin::PLUGIN_INTERFACE, class_implements($className))) {
|
2013-11-10 02:55:08 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
array_push($this->pluginClasses, $className);
|
|
|
|
$active = $this->getPluginStatus($className);
|
|
|
|
if (!$active) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$plugin = new $className($this->maniaControl);
|
2013-12-12 19:41:37 +01:00
|
|
|
$this->activePlugins[$className] = $plugin;
|
2013-11-10 02:55:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-09 20:31:02 +01:00
|
|
|
|
|
|
|
/**
|
2013-12-12 19:41:37 +01:00
|
|
|
* Get all declared plugin class names
|
|
|
|
*
|
2013-12-09 20:31:02 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
2013-12-12 19:41:37 +01:00
|
|
|
public function getPluginClasses() {
|
2013-12-09 20:31:02 +01:00
|
|
|
return $this->pluginClasses;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-12-12 19:41:37 +01:00
|
|
|
* Get all active plugins
|
|
|
|
*
|
2013-12-09 20:31:02 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
2013-12-12 19:41:37 +01:00
|
|
|
public function getActivePlugins() {
|
2013-12-09 20:31:02 +01:00
|
|
|
return $this->activePlugins;
|
|
|
|
}
|
2013-11-10 02:55:08 +01:00
|
|
|
}
|
2013-11-09 13:34:36 +01:00
|
|
|
|
2013-11-10 02:55:08 +01:00
|
|
|
?>
|