TrackManiaControl/application/core/Plugins/PluginManager.php

320 lines
8.3 KiB
PHP
Raw Normal View History

2013-11-09 11:06:04 +01:00
<?php
namespace ManiaControl\Plugins;
use ManiaControl\Callbacks\CallbackListener;
2014-01-18 10:42:19 +01:00
use ManiaControl\ManiaControl;
use ManiaControl\Manialinks\ManialinkPageAnswerListener;
2013-11-09 11:06:04 +01:00
/**
* Class managing Plugins
2013-11-09 11:06:04 +01:00
*
* @author steeffeen & kremsy
2013-11-09 11:06:04 +01:00
*/
class PluginManager {
/**
* Constants
*/
const TABLE_PLUGINS = 'mc_plugins';
2014-01-18 10:42:19 +01:00
/**
* Private properties
*/
private $maniaControl = null;
private $pluginMenu = null;
private $activePlugins = array();
private $pluginClasses = array();
2013-11-09 11:06:04 +01:00
/**
* Construct plugin manager
*
2013-12-31 15:09:25 +01:00
* @param \ManiaControl\ManiaControl $maniaControl
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
$this->initTables();
2014-01-18 10:42:19 +01:00
$this->pluginMenu = new PluginMenu($maniaControl);
$this->maniaControl->configurator->addMenu($this->pluginMenu);
}
2013-11-09 11:06:04 +01:00
/**
* Initialize necessary database tables
*
* @return bool
*/
private function initTables() {
2014-01-18 10:42:19 +01:00
$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`),
UNIQUE KEY `className` (`className`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='ManiaControl plugin status' AUTO_INCREMENT=1;";
2014-01-18 10:42:19 +01:00
$tableStatement = $mysqli->prepare($pluginsTableQuery);
2014-01-27 20:46:42 +01:00
if ($mysqli->error) {
trigger_error($mysqli->error, E_USER_ERROR);
return false;
}
$tableStatement->execute();
2014-01-27 20:46:42 +01:00
if ($tableStatement->error) {
trigger_error($tableStatement->error, E_USER_ERROR);
return false;
}
$tableStatement->close();
return true;
}
2013-11-09 11:06:04 +01:00
/**
* Check if the plugin is running
*
2013-12-31 15:09:25 +01:00
* @param string $pluginClass
* @return bool
*/
public function isPluginActive($pluginClass) {
2014-01-27 20:46:42 +01:00
if (is_object($pluginClass)) {
$pluginClass = get_class($pluginClass);
}
return isset($this->activePlugins[$pluginClass]);
}
/**
* Check if the given class implements the plugin interface
*
2013-12-31 15:09:25 +01:00
* @param string $pluginClass
* @return bool
*/
public function isPluginClass($pluginClass) {
2014-01-27 20:46:42 +01:00
if (is_object($pluginClass)) {
$pluginClass = get_class($pluginClass);
}
2014-01-27 20:46:42 +01:00
if (!in_array(Plugin::PLUGIN_INTERFACE, class_implements($pluginClass))) {
return false;
}
return true;
}
2013-11-09 13:29:18 +01:00
/**
* Add the class to array of loaded plugin classes
*
2013-12-31 15:09:25 +01:00
* @param string $pluginClass
* @return bool
*/
public function addPluginClass($pluginClass) {
2014-01-27 20:46:42 +01:00
if (is_object($pluginClass)) {
$pluginClass = get_class($pluginClass);
}
2014-01-27 20:46:42 +01:00
if (in_array($pluginClass, $this->pluginClasses)) {
return false;
}
2014-01-27 20:46:42 +01:00
if (!$this->isPluginClass($pluginClass)) {
return false;
}
array_push($this->pluginClasses, $pluginClass);
return true;
}
2013-11-09 13:34:36 +01:00
/**
* Activate and start the plugin with the given name
*
2013-12-31 15:09:25 +01:00
* @param string $pluginClass
2014-01-18 10:42:19 +01:00
* @param string $adminLogin
* @return bool
*/
2014-01-18 22:06:07 +01:00
public function activatePlugin($pluginClass, $adminLogin = null) {
2014-01-27 20:46:42 +01:00
if (!is_string($pluginClass)) {
return false;
}
2014-01-27 20:46:42 +01:00
if (!$this->isPluginClass($pluginClass)) {
return false;
}
2014-01-27 20:46:42 +01:00
if ($this->isPluginActive($pluginClass)) {
return false;
}
2014-02-13 00:46:41 +01:00
$plugin = new $pluginClass();
/** @var Plugin $plugin */
$this->activePlugins[$pluginClass] = $plugin;
$this->savePluginStatus($pluginClass, true);
2014-01-18 10:42:19 +01:00
try {
$plugin->load($this->maniaControl);
} catch(\Exception $e) {
2014-01-18 22:06:54 +01:00
$this->maniaControl->chat->sendError('Error while plugin activating ' . $pluginClass . ': ' . $e->getMessage(), $adminLogin);
$this->maniaControl->log('Error while plugin activation: ' . $pluginClass . ': ' . $e->getMessage());
unset($this->activePlugins[$pluginClass]);
$this->savePluginStatus($pluginClass, false);
2014-01-18 10:42:19 +01:00
return false;
}
$this->savePluginStatus($pluginClass, true);
return true;
}
/**
* Deactivate the plugin with the given class
*
2013-12-31 15:09:25 +01:00
* @param string $pluginClass
* @return bool
*/
public function deactivatePlugin($pluginClass) {
2014-01-27 20:46:42 +01:00
if (is_object($pluginClass)) {
$pluginClass = get_class($pluginClass);
}
2014-01-27 20:46:42 +01:00
if (!$this->isPluginActive($pluginClass)) {
return false;
}
$plugin = $this->activePlugins[$pluginClass];
2014-02-13 00:46:41 +01:00
/** @var Plugin $plugin */
unset($this->activePlugins[$pluginClass]);
$plugin->unload();
$interfaces = class_implements($pluginClass);
2014-01-27 20:46:42 +01:00
if (in_array(CallbackListener::CALLBACKLISTENER_INTERFACE, $interfaces)) {
$this->maniaControl->callbackManager->unregisterCallbackListener($plugin);
$this->maniaControl->callbackManager->unregisterScriptCallbackListener($plugin);
}
2014-01-27 20:46:42 +01:00
if (in_array(ManialinkPageAnswerListener::MANIALINKPAGEANSWERLISTENER_INTERFACE, $interfaces)) {
$this->maniaControl->manialinkManager->unregisterManialinkPageAnswerListener($plugin);
}
$this->savePluginStatus($pluginClass, false);
return true;
}
/**
* Load complete plugins directory and start all configured plugins
*/
public function loadPlugins() {
$pluginsDirectory = ManiaControlDir . '/plugins/';
2014-01-18 10:42:19 +01:00
$pluginFiles = scandir($pluginsDirectory, 0);
foreach($pluginFiles as $pluginFile) {
2014-01-27 20:46:42 +01:00
if (stripos($pluginFile, '.') === 0) {
continue;
}
$classesBefore = get_declared_classes();
2014-01-18 10:42:19 +01:00
$success = include_once $pluginsDirectory . $pluginFile;
2014-01-27 20:46:42 +01:00
if (!$success) {
continue;
}
$classesAfter = get_declared_classes();
2014-01-18 10:42:19 +01:00
$newClasses = array_diff($classesAfter, $classesBefore);
foreach($newClasses as $className) {
2014-01-27 20:46:42 +01:00
if (!$this->isPluginClass($className)) {
continue;
}
2014-02-06 00:27:49 +01:00
//Prepare Plugin
$className::prepare($this->maniaControl);
$this->addPluginClass($className);
2014-01-27 20:46:42 +01:00
if ($this->isPluginActive($className)) {
continue;
}
2014-01-27 20:46:42 +01:00
if (!$this->getSavedPluginStatus($className)) {
continue;
}
$this->activatePlugin($className);
}
}
}
2013-12-09 20:31:02 +01:00
2013-12-29 19:21:29 +01:00
/**
2013-12-31 15:09:25 +01:00
* Returns an Plugin if it is activated
*
* @param string $pluginClass
* @return Plugin
2013-12-29 19:21:29 +01:00
*/
public function getPlugin($pluginClass) {
2014-01-27 20:46:42 +01:00
if ($this->isPluginActive($pluginClass)) {
2013-12-29 19:21:29 +01:00
return $this->activePlugins[$pluginClass];
}
return null;
}
2013-12-09 20:31:02 +01:00
/**
* Get all declared plugin class names
*
2013-12-09 20:31:02 +01:00
* @return array
*/
public function getPluginClasses() {
2013-12-09 20:31:02 +01:00
return $this->pluginClasses;
}
/**
* Get all active plugins
*
2013-12-09 20:31:02 +01:00
* @return array
*/
public function getActivePlugins() {
2013-12-09 20:31:02 +01:00
return $this->activePlugins;
}
/**
* Save plugin status in database
*
2013-12-31 15:09:25 +01:00
* @param string $className
2014-01-18 10:42:19 +01:00
* @param bool $active
* @return bool
*/
private function savePluginStatus($className, $active) {
2014-01-18 10:42:19 +01:00
$mysqli = $this->maniaControl->database->mysqli;
$pluginStatusQuery = "INSERT INTO `" . self::TABLE_PLUGINS . "` (
`className`,
`active`
) VALUES (
?, ?
) ON DUPLICATE KEY UPDATE
`active` = VALUES(`active`);";
2014-01-18 10:42:19 +01:00
$pluginStatement = $mysqli->prepare($pluginStatusQuery);
2014-01-27 20:46:42 +01:00
if ($mysqli->error) {
trigger_error($mysqli->error);
return false;
}
$activeInt = ($active ? 1 : 0);
$pluginStatement->bind_param('si', $className, $activeInt);
$pluginStatement->execute();
2014-01-27 20:46:42 +01:00
if ($pluginStatement->error) {
trigger_error($pluginStatement->error);
$pluginStatement->close();
return false;
}
$pluginStatement->close();
return true;
}
/**
* Get plugin status from database
*
2013-12-31 15:09:25 +01:00
* @param string $className
* @return bool
*/
private function getSavedPluginStatus($className) {
2014-01-18 10:42:19 +01:00
$mysqli = $this->maniaControl->database->mysqli;
$pluginStatusQuery = "SELECT `active` FROM `" . self::TABLE_PLUGINS . "`
WHERE `className` = ?;";
2014-01-18 10:42:19 +01:00
$pluginStatement = $mysqli->prepare($pluginStatusQuery);
2014-01-27 20:46:42 +01:00
if ($mysqli->error) {
trigger_error($mysqli->error);
return false;
}
$pluginStatement->bind_param('s', $className);
$pluginStatement->execute();
2014-01-27 20:46:42 +01:00
if ($pluginStatement->error) {
trigger_error($pluginStatement->error);
$pluginStatement->close();
return false;
}
$pluginStatement->store_result();
2014-01-27 20:46:42 +01:00
if ($pluginStatement->num_rows <= 0) {
$pluginStatement->free_result();
$pluginStatement->close();
$this->savePluginStatus($className, false);
return false;
}
$pluginStatement->bind_result($activeInt);
$pluginStatement->fetch();
$active = ($activeInt === 1);
$pluginStatement->free_result();
$pluginStatement->close();
return $active;
}
}