4 private $hooks = array();
5 private $plugins = array();
6 private $handlers = array();
7 private $commands = array();
8 private $storage = array();
9 private $feeds = array();
10 private $api_methods = array();
13 private $last_registered;
14 private static $instance;
16 const API_VERSION = 2;
18 const HOOK_ARTICLE_BUTTON = 1;
19 const HOOK_ARTICLE_FILTER = 2;
20 const HOOK_PREFS_TAB = 3;
21 const HOOK_PREFS_TAB_SECTION = 4;
22 const HOOK_PREFS_TABS = 5;
23 const HOOK_FEED_PARSED = 6;
24 const HOOK_UPDATE_TASK = 7;
25 const HOOK_AUTH_USER = 8;
26 const HOOK_HOTKEY_MAP = 9;
27 const HOOK_RENDER_ARTICLE = 10;
28 const HOOK_RENDER_ARTICLE_CDM = 11;
29 const HOOK_FEED_FETCHED = 12;
30 const HOOK_SANITIZE = 13;
31 const HOOK_RENDER_ARTICLE_API = 14;
32 const HOOK_TOOLBAR_BUTTON = 15;
33 const HOOK_ACTION_ITEM = 16;
34 const HOOK_HEADLINE_TOOLBAR_BUTTON = 17;
35 const HOOK_HOTKEY_INFO = 18;
36 const HOOK_ARTICLE_LEFT_BUTTON = 19;
37 const HOOK_PREFS_EDIT_FEED = 20;
38 const HOOK_PREFS_SAVE_FEED = 21;
39 const HOOK_FETCH_FEED = 22;
40 const HOOK_QUERY_HEADLINES = 23;
41 const HOOK_HOUSE_KEEPING = 24;
42 const HOOK_SEARCH = 25;
43 const HOOK_FORMAT_ENCLOSURES = 26;
44 const HOOK_SUBSCRIBE_FEED = 27;
47 const KIND_SYSTEM = 2;
50 function __construct() {
51 $this->dbh = Db::get();
53 $this->storage = array();
56 private function __clone() {
60 public static function getInstance() {
61 if (self::$instance == null)
62 self::$instance = new self();
64 return self::$instance;
67 private function register_plugin($name, $plugin) {
68 //array_push($this->plugins, $plugin);
69 $this->plugins[$name] = $plugin;
72 // needed for compatibility with API 1
81 function get_plugin_names() {
84 foreach ($this->plugins as $p) {
85 array_push($names, get_class($p));
91 function get_plugins() {
92 return $this->plugins;
95 function get_plugin($name) {
96 return $this->plugins[$name];
99 function run_hooks($type, $method, $args) {
100 foreach ($this->get_hooks($type) as $hook) {
101 $hook->$method($args);
105 function add_hook($type, $sender) {
106 if (!is_array($this->hooks[$type])) {
107 $this->hooks[$type] = array();
110 array_push($this->hooks[$type], $sender);
113 function del_hook($type, $sender) {
114 if (is_array($this->hooks[$type])) {
115 $key = array_Search($sender, $this->hooks[$type]);
116 if ($key !== FALSE) {
117 unset($this->hooks[$type][$key]);
122 function get_hooks($type) {
123 if (isset($this->hooks[$type])) {
124 return $this->hooks[$type];
129 function load_all($kind, $owner_uid = false) {
130 $plugins = array_map("basename", glob("plugins/*"));
131 $this->load(join(",", $plugins), $kind, $owner_uid);
134 function load($classlist, $kind, $owner_uid = false) {
135 $plugins = explode(",", $classlist);
137 $this->owner_uid = (int) $owner_uid;
139 foreach ($plugins as $class) {
140 $class = trim($class);
141 $class_file = strtolower(basename($class));
143 if (!is_dir(dirname(__FILE__)."/../plugins/$class_file")) continue;
145 $file = dirname(__FILE__)."/../plugins/$class_file/init.php";
147 if (!isset($this->plugins[$class])) {
148 if (file_exists($file)) require_once $file;
150 if (class_exists($class) && is_subclass_of($class, "Plugin")) {
151 $plugin = new $class($this);
153 $plugin_api = $plugin->api_version();
155 if ($plugin_api < PluginHost::API_VERSION) {
156 user_error("Plugin $class is not compatible with current API version (need: " . PluginHost::API_VERSION . ", got: $plugin_api)", E_USER_WARNING);
160 $this->last_registered = $class;
163 case $this::KIND_SYSTEM:
164 if ($this->is_system($plugin)) {
165 $plugin->init($this);
166 $this->register_plugin($class, $plugin);
169 case $this::KIND_USER:
170 if (!$this->is_system($plugin)) {
171 $plugin->init($this);
172 $this->register_plugin($class, $plugin);
175 case $this::KIND_ALL:
176 $plugin->init($this);
177 $this->register_plugin($class, $plugin);
185 function is_system($plugin) {
186 $about = $plugin->about();
191 // only system plugins are allowed to modify routing
192 function add_handler($handler, $method, $sender) {
193 $handler = str_replace("-", "_", strtolower($handler));
194 $method = strtolower($method);
196 if ($this->is_system($sender)) {
197 if (!is_array($this->handlers[$handler])) {
198 $this->handlers[$handler] = array();
201 $this->handlers[$handler][$method] = $sender;
205 function del_handler($handler, $method, $sender) {
206 $handler = str_replace("-", "_", strtolower($handler));
207 $method = strtolower($method);
209 if ($this->is_system($sender)) {
210 unset($this->handlers[$handler][$method]);
214 function lookup_handler($handler, $method) {
215 $handler = str_replace("-", "_", strtolower($handler));
216 $method = strtolower($method);
218 if (is_array($this->handlers[$handler])) {
219 if (isset($this->handlers[$handler]["*"])) {
220 return $this->handlers[$handler]["*"];
222 return $this->handlers[$handler][$method];
229 function add_command($command, $description, $sender, $suffix = "", $arghelp = "") {
230 $command = str_replace("-", "_", strtolower($command));
232 $this->commands[$command] = array("description" => $description,
234 "arghelp" => $arghelp,
238 function del_command($command) {
239 $command = "-" . strtolower($command);
241 unset($this->commands[$command]);
244 function lookup_command($command) {
245 $command = "-" . strtolower($command);
247 if (is_array($this->commands[$command])) {
248 return $this->commands[$command]["class"];
256 function get_commands() {
257 return $this->commands;
260 function run_commands($args) {
261 foreach ($this->get_commands() as $command => $data) {
262 if (isset($args[$command])) {
263 $command = str_replace("-", "", $command);
264 $data["class"]->$command($args);
269 function load_data($force = false) {
270 if ($this->owner_uid) {
271 $result = $this->dbh->query("SELECT name, content FROM ttrss_plugin_storage
272 WHERE owner_uid = '".$this->owner_uid."'");
274 while ($line = $this->dbh->fetch_assoc($result)) {
275 $this->storage[$line["name"]] = unserialize($line["content"]);
280 private function save_data($plugin) {
281 if ($this->owner_uid) {
282 $plugin = $this->dbh->escape_string($plugin);
284 $this->dbh->query("BEGIN");
286 $result = $this->dbh->query("SELECT id FROM ttrss_plugin_storage WHERE
287 owner_uid= '".$this->owner_uid."' AND name = '$plugin'");
289 if (!isset($this->storage[$plugin]))
290 $this->storage[$plugin] = array();
292 $content = $this->dbh->escape_string(serialize($this->storage[$plugin]),
295 if ($this->dbh->num_rows($result) != 0) {
296 $this->dbh->query("UPDATE ttrss_plugin_storage SET content = '$content'
297 WHERE owner_uid= '".$this->owner_uid."' AND name = '$plugin'");
300 $this->dbh->query("INSERT INTO ttrss_plugin_storage
301 (name,owner_uid,content) VALUES
302 ('$plugin','".$this->owner_uid."','$content')");
305 $this->dbh->query("COMMIT");
309 function set($sender, $name, $value, $sync = true) {
310 $idx = get_class($sender);
312 if (!isset($this->storage[$idx]))
313 $this->storage[$idx] = array();
315 $this->storage[$idx][$name] = $value;
317 if ($sync) $this->save_data(get_class($sender));
320 function get($sender, $name, $default_value = false) {
321 $idx = get_class($sender);
323 if (isset($this->storage[$idx][$name])) {
324 return $this->storage[$idx][$name];
326 return $default_value;
330 function get_all($sender) {
331 $idx = get_class($sender);
333 return $this->storage[$idx];
336 function clear_data($sender) {
337 if ($this->owner_uid) {
338 $idx = get_class($sender);
340 unset($this->storage[$idx]);
342 $this->dbh->query("DELETE FROM ttrss_plugin_storage WHERE name = '$idx'
343 AND owner_uid = " . $this->owner_uid);
347 function set_debug($debug) {
348 $this->debug = $debug;
351 function get_debug() {
355 // Plugin feed functions are *EXPERIMENTAL*!
357 // cat_id: only -1 is supported (Special)
358 function add_feed($cat_id, $title, $icon, $sender) {
359 if (!$this->feeds[$cat_id]) $this->feeds[$cat_id] = array();
361 $id = count($this->feeds[$cat_id]);
363 array_push($this->feeds[$cat_id],
364 array('id' => $id, 'title' => $title, 'sender' => $sender, 'icon' => $icon));
369 function get_feeds($cat_id) {
370 return $this->feeds[$cat_id];
373 // convert feed_id (e.g. -129) to pfeed_id first
374 function get_feed_handler($pfeed_id) {
375 foreach ($this->feeds as $cat) {
376 foreach ($cat as $feed) {
377 if ($feed['id'] == $pfeed_id) {
378 return $feed['sender'];
384 static function pfeed_to_feed_id($label) {
385 return PLUGIN_FEED_BASE_INDEX - 1 - abs($label);
388 static function feed_to_pfeed_id($feed) {
389 return PLUGIN_FEED_BASE_INDEX - 1 + abs($feed);
392 function add_api_method($name, $sender) {
393 if ($this->is_system($sender)) {
394 $this->api_methods[strtolower($name)] = $sender;
398 function get_api_method($name) {
399 return $this->api_methods[$name];