2012-12-23 11:52:18 +01:00
|
|
|
<?php
|
2012-12-27 13:55:25 +01:00
|
|
|
/* create table ttrss_plugin_storage
|
|
|
|
(id serial not null primary key, name varchar(100) not null,
|
|
|
|
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
|
|
|
|
content text not null) - not in schema yet
|
|
|
|
*/
|
2012-12-23 11:52:18 +01:00
|
|
|
class PluginHost {
|
|
|
|
private $link;
|
|
|
|
private $hooks = array();
|
|
|
|
private $plugins = array();
|
2012-12-23 20:05:51 +01:00
|
|
|
private $handlers = array();
|
2012-12-24 06:52:15 +01:00
|
|
|
private $commands = array();
|
2012-12-27 13:55:25 +01:00
|
|
|
private $storage = array();
|
|
|
|
private $owner_uid;
|
2012-12-23 11:52:18 +01:00
|
|
|
|
|
|
|
const HOOK_ARTICLE_BUTTON = 1;
|
|
|
|
const HOOK_ARTICLE_FILTER = 2;
|
2012-12-23 13:15:34 +01:00
|
|
|
const HOOK_PREFS_TAB = 3;
|
2012-12-26 22:12:28 +01:00
|
|
|
const HOOK_PREFS_TAB_SECTION = 4;
|
2012-12-23 20:36:07 +01:00
|
|
|
const HOOK_PREFS_TABS = 5;
|
2012-12-24 11:13:03 +01:00
|
|
|
const HOOK_FEED_PARSED = 6;
|
2012-12-24 11:27:15 +01:00
|
|
|
const HOOK_UPDATE_TASK = 7;
|
2012-12-27 12:14:44 +01:00
|
|
|
const HOOK_AUTH_USER = 8;
|
2012-12-23 11:52:18 +01:00
|
|
|
|
2012-12-25 07:02:08 +01:00
|
|
|
const KIND_ALL = 1;
|
|
|
|
const KIND_SYSTEM = 2;
|
|
|
|
const KIND_USER = 3;
|
|
|
|
|
2012-12-23 11:52:18 +01:00
|
|
|
function __construct($link) {
|
|
|
|
$this->link = $link;
|
2012-12-27 13:55:25 +01:00
|
|
|
|
|
|
|
$this->storage = $_SESSION["plugin_storage"];
|
|
|
|
|
|
|
|
if (!$this->storage) $this->storage = array();
|
2012-12-23 11:52:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function register_plugin($name, $plugin) {
|
|
|
|
//array_push($this->plugins, $plugin);
|
|
|
|
$this->plugins[$name] = $plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_link() {
|
|
|
|
return $this->link;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_plugins() {
|
|
|
|
return $this->plugins;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_plugin($name) {
|
|
|
|
return $this->plugins[$name];
|
|
|
|
}
|
|
|
|
|
2012-12-23 13:15:34 +01:00
|
|
|
function run_hooks($type, $method, $args) {
|
|
|
|
foreach ($this->get_hooks($type) as $hook) {
|
|
|
|
$hook->$method($args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-23 11:52:18 +01:00
|
|
|
function add_hook($type, $sender) {
|
|
|
|
if (!is_array($this->hooks[$type])) {
|
|
|
|
$this->hooks[$type] = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
array_push($this->hooks[$type], $sender);
|
|
|
|
}
|
|
|
|
|
|
|
|
function del_hook($type, $sender) {
|
|
|
|
if (is_array($this->hooks[$type])) {
|
|
|
|
$key = array_Search($this->hooks[$type], $sender);
|
|
|
|
if ($key !== FALSE) {
|
|
|
|
unset($this->hooks[$type][$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_hooks($type) {
|
2012-12-24 10:45:34 +01:00
|
|
|
if (isset($this->hooks[$type])) {
|
|
|
|
return $this->hooks[$type];
|
|
|
|
} else {
|
|
|
|
return array();
|
|
|
|
}
|
2012-12-23 11:52:18 +01:00
|
|
|
}
|
2012-12-25 07:02:08 +01:00
|
|
|
function load_all($kind) {
|
2012-12-24 12:39:42 +01:00
|
|
|
$plugins = array_map("basename", glob("plugins/*"));
|
2012-12-25 07:02:08 +01:00
|
|
|
$this->load(join(",", $plugins), $kind);
|
2012-12-24 12:39:42 +01:00
|
|
|
}
|
2012-12-23 11:52:18 +01:00
|
|
|
|
2012-12-27 13:55:25 +01:00
|
|
|
function load($classlist, $kind, $owner_uid = false) {
|
2012-12-23 11:52:18 +01:00
|
|
|
$plugins = explode(",", $classlist);
|
|
|
|
|
2012-12-27 13:55:25 +01:00
|
|
|
$this->owner_uid = (int) $owner_uid;
|
|
|
|
|
2012-12-23 11:52:18 +01:00
|
|
|
foreach ($plugins as $class) {
|
|
|
|
$class = trim($class);
|
2012-12-23 20:05:51 +01:00
|
|
|
$class_file = strtolower(basename($class));
|
2012-12-23 11:52:18 +01:00
|
|
|
$file = dirname(__FILE__)."/../plugins/$class_file/$class_file.php";
|
|
|
|
|
2012-12-24 21:45:10 +01:00
|
|
|
if (!isset($this->plugins[$class])) {
|
|
|
|
if (file_exists($file)) require_once $file;
|
2012-12-23 11:52:18 +01:00
|
|
|
|
2012-12-24 21:45:10 +01:00
|
|
|
if (class_exists($class) && is_subclass_of($class, "Plugin")) {
|
|
|
|
$plugin = new $class($this);
|
2012-12-23 11:52:18 +01:00
|
|
|
|
2012-12-25 07:02:08 +01:00
|
|
|
switch ($kind) {
|
|
|
|
case $this::KIND_SYSTEM:
|
|
|
|
if ($this->is_system($plugin)) {
|
|
|
|
$plugin->init($this);
|
|
|
|
$this->register_plugin($class, $plugin);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case $this::KIND_USER:
|
|
|
|
if (!$this->is_system($plugin)) {
|
|
|
|
$plugin->init($this);
|
|
|
|
$this->register_plugin($class, $plugin);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case $this::KIND_ALL:
|
|
|
|
$plugin->init($this);
|
|
|
|
$this->register_plugin($class, $plugin);
|
|
|
|
break;
|
|
|
|
}
|
2012-12-24 21:45:10 +01:00
|
|
|
}
|
2012-12-23 11:52:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-24 21:45:10 +01:00
|
|
|
function is_system($plugin) {
|
2012-12-25 07:02:08 +01:00
|
|
|
$about = $plugin->about();
|
2012-12-24 21:45:10 +01:00
|
|
|
|
|
|
|
return @$about[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
// only system plugins are allowed to modify routing
|
2012-12-23 20:05:51 +01:00
|
|
|
function add_handler($handler, $method, $sender) {
|
2012-12-23 20:36:07 +01:00
|
|
|
$handler = str_replace("-", "_", strtolower($handler));
|
2012-12-23 20:05:51 +01:00
|
|
|
$method = strtolower($method);
|
|
|
|
|
2012-12-24 21:45:10 +01:00
|
|
|
if ($this->is_system($sender)) {
|
|
|
|
if (!is_array($this->handlers[$handler])) {
|
|
|
|
$this->handlers[$handler] = array();
|
|
|
|
}
|
2012-12-23 20:05:51 +01:00
|
|
|
|
2012-12-24 21:45:10 +01:00
|
|
|
$this->handlers[$handler][$method] = $sender;
|
|
|
|
}
|
2012-12-23 20:05:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function del_handler($handler, $method) {
|
2012-12-23 20:36:07 +01:00
|
|
|
$handler = str_replace("-", "_", strtolower($handler));
|
2012-12-23 20:05:51 +01:00
|
|
|
$method = strtolower($method);
|
|
|
|
|
2012-12-24 21:45:10 +01:00
|
|
|
if ($this->is_system($sender)) {
|
|
|
|
unset($this->handlers[$handler][$method]);
|
|
|
|
}
|
2012-12-23 20:05:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function lookup_handler($handler, $method) {
|
2012-12-23 20:36:07 +01:00
|
|
|
$handler = str_replace("-", "_", strtolower($handler));
|
2012-12-23 20:05:51 +01:00
|
|
|
$method = strtolower($method);
|
|
|
|
|
|
|
|
if (is_array($this->handlers[$handler])) {
|
2012-12-23 20:36:07 +01:00
|
|
|
if (isset($this->handlers[$handler]["*"])) {
|
|
|
|
return $this->handlers[$handler]["*"];
|
|
|
|
} else {
|
|
|
|
return $this->handlers[$handler][$method];
|
|
|
|
}
|
2012-12-23 20:05:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-24 06:52:15 +01:00
|
|
|
|
|
|
|
function add_command($command, $description, $sender) {
|
|
|
|
$command = "-" . str_replace("-", "_", strtolower($command));
|
|
|
|
|
2012-12-25 07:02:08 +01:00
|
|
|
$this->commands[$command] = array("description" => $description,
|
|
|
|
"class" => $sender);
|
2012-12-24 06:52:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function del_command($command) {
|
|
|
|
$command = "-" . strtolower($command);
|
|
|
|
|
2012-12-25 07:02:08 +01:00
|
|
|
unset($this->commands[$command]);
|
2012-12-24 06:52:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function lookup_command($command) {
|
|
|
|
$command = "-" . strtolower($command);
|
|
|
|
|
|
|
|
if (is_array($this->commands[$command])) {
|
|
|
|
return $this->commands[$command]["class"];
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_commands() {
|
|
|
|
return $this->commands;
|
|
|
|
}
|
|
|
|
|
|
|
|
function run_commands($args) {
|
|
|
|
foreach ($this->get_commands() as $command => $data) {
|
|
|
|
if (in_array($command, $args)) {
|
|
|
|
$command = str_replace("-", "", $command);
|
|
|
|
$data["class"]->$command($args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-27 13:55:25 +01:00
|
|
|
function load_data($force = false) {
|
|
|
|
if ($this->owner_uid && (!$_SESSION["plugin_storage"] || $force)) {
|
|
|
|
$plugin = db_escape_string($plugin);
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT name, content FROM ttrss_plugin_storage
|
|
|
|
WHERE owner_uid = '".$this->owner_uid."'");
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$this->storage[$line["name"]] = unserialize($line["content"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$_SESSION["plugin_storage"] = $this->storage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function save_data($plugin) {
|
|
|
|
if ($this->owner_uid) {
|
|
|
|
$plugin = db_escape_string($plugin);
|
|
|
|
|
|
|
|
db_query($this->link, "BEGIN");
|
|
|
|
|
|
|
|
$result = db_query($this->link,"SELECT id FROM ttrss_plugin_storage WHERE
|
|
|
|
owner_uid= '".$this->owner_uid."' AND name = '$plugin'");
|
|
|
|
|
|
|
|
if (!isset($this->storage[$plugin]))
|
|
|
|
$this->storage[$plugin] = array();
|
|
|
|
|
|
|
|
$content = db_escape_string(serialize($this->storage[$plugin]));
|
|
|
|
|
|
|
|
if (db_num_rows($result) != 0) {
|
|
|
|
db_query($this->link, "UPDATE ttrss_plugin_storage SET content = '$content'
|
|
|
|
WHERE owner_uid= '".$this->owner_uid."' AND name = '$plugin'");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
db_query($this->link, "INSERT INTO ttrss_plugin_storage
|
|
|
|
(name,owner_uid,content) VALUES
|
|
|
|
('$plugin','".$this->owner_uid."','$content')");
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($this->link, "COMMIT");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function set($sender, $name, $value, $sync = true) {
|
|
|
|
$idx = get_class($sender);
|
|
|
|
|
|
|
|
if (!isset($this->storage[$idx]))
|
|
|
|
$this->storage[$idx] = array();
|
|
|
|
|
|
|
|
$this->storage[$idx][$name] = $value;
|
|
|
|
|
|
|
|
$_SESSION["plugin_storage"] = $this->storage;
|
|
|
|
|
|
|
|
if ($sync) $this->save_data(get_class($sender));
|
|
|
|
}
|
|
|
|
|
|
|
|
function get($sender, $name, $default_value) {
|
|
|
|
$idx = get_class($sender);
|
|
|
|
|
|
|
|
if (isset($this->storage[$idx][$name])) {
|
|
|
|
return $this->storage[$idx][$name];
|
|
|
|
} else {
|
|
|
|
return $default_value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_all($sender) {
|
|
|
|
$idx = get_class($sender);
|
|
|
|
|
|
|
|
return $this->storage[$idx];
|
|
|
|
}
|
2012-12-23 11:52:18 +01:00
|
|
|
}
|
|
|
|
?>
|