2014-04-02 17:30:58 +00:00
|
|
|
<?php
|
|
|
|
|
2014-04-02 20:14:20 +00:00
|
|
|
###
|
2014-10-21 11:45:11 +00:00
|
|
|
# @name Plugins Module
|
2015-02-01 21:08:37 +00:00
|
|
|
# @copyright 2015 by Tobias Reich
|
2014-04-02 20:14:20 +00:00
|
|
|
###
|
2014-04-02 17:30:58 +00:00
|
|
|
|
2014-04-16 08:13:30 +00:00
|
|
|
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|
|
|
|
2016-01-19 10:45:41 +00:00
|
|
|
final class Plugins implements \SplSubject {
|
2014-04-02 17:30:58 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
private static $instance = null;
|
2014-04-02 17:30:58 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
private $observers = array();
|
2014-04-02 17:30:58 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
public $action = null;
|
|
|
|
public $args = null;
|
2014-04-02 17:30:58 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
public static function get() {
|
2014-04-02 17:30:58 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
if (!self::$instance) {
|
2014-04-02 17:30:58 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
$files = Settings::get()['plugins'];
|
|
|
|
|
|
|
|
self::$instance = new self($files);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::$instance;
|
|
|
|
|
|
|
|
}
|
2014-05-17 14:51:56 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
private function __construct(array $plugins) {
|
2014-05-17 14:51:56 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
# Load plugins
|
|
|
|
foreach ($plugins as $plugin) {
|
2014-05-17 14:51:56 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
if ($plugin==='') continue;
|
2014-05-17 14:51:56 +00:00
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
$this->attach(new $plugin);
|
2014-05-17 14:51:56 +00:00
|
|
|
|
2014-04-02 17:30:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function attach(\SplObserver $observer) {
|
|
|
|
|
|
|
|
if (!isset($observer)) return false;
|
|
|
|
|
2014-04-02 20:14:20 +00:00
|
|
|
# Add observer
|
2014-04-02 17:30:58 +00:00
|
|
|
$this->observers[] = $observer;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function detach(\SplObserver $observer) {
|
|
|
|
|
|
|
|
if (!isset($observer)) return false;
|
|
|
|
|
2014-04-02 20:14:20 +00:00
|
|
|
# Remove observer
|
2014-04-02 17:30:58 +00:00
|
|
|
$key = array_search($observer, $this->observers, true);
|
|
|
|
if ($key) unset($this->observers[$key]);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function notify() {
|
|
|
|
|
2014-04-02 20:14:20 +00:00
|
|
|
# Notify each observer
|
2014-04-02 17:30:58 +00:00
|
|
|
foreach ($this->observers as $value) $value->update($this);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function activate($action, $args) {
|
|
|
|
|
|
|
|
if (!isset($action, $args)) return false;
|
|
|
|
|
2014-04-02 20:14:20 +00:00
|
|
|
# Save vars
|
2014-04-02 17:30:58 +00:00
|
|
|
$this->action = $action;
|
|
|
|
$this->args = $args;
|
|
|
|
|
2014-04-02 20:14:20 +00:00
|
|
|
# Notify observers
|
2014-04-02 17:30:58 +00:00
|
|
|
$this->notify();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-24 21:14:20 +00:00
|
|
|
?>
|