]> git.wh0rd.org - tt-rss.git/blame - classes/pluginhost.php
rewrite_relative_url: only skip urls like magnet: instead of everything with :
[tt-rss.git] / classes / pluginhost.php
CommitLineData
19c73507
AD
1<?php
2class PluginHost {
6322ac79 3 private $dbh;
19c73507
AD
4 private $hooks = array();
5 private $plugins = array();
8dcb2b47 6 private $handlers = array();
73f28fe9 7 private $commands = array();
d8a1d2a2 8 private $storage = array();
a413f53e 9 private $feeds = array();
79f9bef7 10 private $api_methods = array();
b8774453 11 private $plugin_actions = array();
d8a1d2a2 12 private $owner_uid;
be178857 13 private $debug;
726bd48e 14 private $last_registered;
1ffe3391 15 private static $instance;
19c73507 16
106a3de9 17 const API_VERSION = 2;
ddf28801 18
5914f319
AD
19 // Hooks marked with *1 are run in global context and available
20 // to plugins loaded in config.php only
21
19c73507
AD
22 const HOOK_ARTICLE_BUTTON = 1;
23 const HOOK_ARTICLE_FILTER = 2;
6065f3ad 24 const HOOK_PREFS_TAB = 3;
699daf58 25 const HOOK_PREFS_TAB_SECTION = 4;
6cbe53c9 26 const HOOK_PREFS_TABS = 5;
4412b877 27 const HOOK_FEED_PARSED = 6;
5914f319 28 const HOOK_UPDATE_TASK = 7; // *1
0f28f81f 29 const HOOK_AUTH_USER = 8;
e218c5f5 30 const HOOK_HOTKEY_MAP = 9;
84d952f1
AD
31 const HOOK_RENDER_ARTICLE = 10;
32 const HOOK_RENDER_ARTICLE_CDM = 11;
017401dd 33 const HOOK_FEED_FETCHED = 12;
e9b86f0a 34 const HOOK_SANITIZE = 13;
b6604c96 35 const HOOK_RENDER_ARTICLE_API = 14;
ceb78471
AD
36 const HOOK_TOOLBAR_BUTTON = 15;
37 const HOOK_ACTION_ITEM = 16;
38 const HOOK_HEADLINE_TOOLBAR_BUTTON = 17;
47854200 39 const HOOK_HOTKEY_INFO = 18;
ccb2b8dd 40 const HOOK_ARTICLE_LEFT_BUTTON = 19;
057177eb 41 const HOOK_PREFS_EDIT_FEED = 20;
8cefe38a 42 const HOOK_PREFS_SAVE_FEED = 21;
ee65bef4 43 const HOOK_FETCH_FEED = 22;
891e36f5 44 const HOOK_QUERY_HEADLINES = 23;
5914f319 45 const HOOK_HOUSE_KEEPING = 24; // *1
baaf4c30 46 const HOOK_SEARCH = 25;
2bb11658 47 const HOOK_FORMAT_ENCLOSURES = 26;
01465325 48 const HOOK_SUBSCRIBE_FEED = 27;
7eb87b80 49 const HOOK_HEADLINES_BEFORE = 28;
945346cb 50 const HOOK_RENDER_ENCLOSURE = 29;
b8774453 51 const HOOK_ARTICLE_FILTER_ACTION = 30;
19c73507 52
d2a421e3
AD
53 const KIND_ALL = 1;
54 const KIND_SYSTEM = 2;
55 const KIND_USER = 3;
56
48ed517e 57 function __construct() {
1ffe3391 58 $this->dbh = Db::get();
d8a1d2a2 59
d48398e6 60 $this->storage = array();
19c73507
AD
61 }
62
1ffe3391
AD
63 private function __clone() {
64 //
65 }
66
67 public static function getInstance() {
68 if (self::$instance == null)
69 self::$instance = new self();
70
71 return self::$instance;
72 }
73
19c73507
AD
74 private function register_plugin($name, $plugin) {
75 //array_push($this->plugins, $plugin);
76 $this->plugins[$name] = $plugin;
77 }
78
106a3de9 79 // needed for compatibility with API 1
726bd48e 80 function get_link() {
106a3de9 81 return false;
726bd48e
AD
82 }
83
6322ac79
AD
84 function get_dbh() {
85 return $this->dbh;
19c73507
AD
86 }
87
84e36b61
AD
88 function get_plugin_names() {
89 $names = array();
90
91 foreach ($this->plugins as $p) {
92 array_push($names, get_class($p));
93 }
94
95 return $names;
96 }
97
19c73507
AD
98 function get_plugins() {
99 return $this->plugins;
100 }
101
102 function get_plugin($name) {
b8774453 103 return $this->plugins[strtolower($name)];
19c73507
AD
104 }
105
6065f3ad
AD
106 function run_hooks($type, $method, $args) {
107 foreach ($this->get_hooks($type) as $hook) {
108 $hook->$method($args);
109 }
110 }
111
19c73507
AD
112 function add_hook($type, $sender) {
113 if (!is_array($this->hooks[$type])) {
114 $this->hooks[$type] = array();
115 }
116
117 array_push($this->hooks[$type], $sender);
118 }
119
120 function del_hook($type, $sender) {
121 if (is_array($this->hooks[$type])) {
a96bb3d8 122 $key = array_Search($sender, $this->hooks[$type]);
19c73507
AD
123 if ($key !== FALSE) {
124 unset($this->hooks[$type][$key]);
125 }
126 }
127 }
128
129 function get_hooks($type) {
19b3992b
AD
130 if (isset($this->hooks[$type])) {
131 return $this->hooks[$type];
132 } else {
133 return array();
134 }
19c73507 135 }
583f163f 136 function load_all($kind, $owner_uid = false, $skip_init = false) {
7c0a2ab2 137
ca5d39e8
AD
138 $plugins = array_merge(glob("plugins/*"), glob("plugins.local/*"));
139 $plugins = array_filter($plugins, "is_dir");
140 $plugins = array_map("basename", $plugins);
7c0a2ab2
AD
141
142 asort($plugins);
143
583f163f 144 $this->load(join(",", $plugins), $kind, $owner_uid, $skip_init);
7a866114 145 }
19c73507 146
583f163f 147 function load($classlist, $kind, $owner_uid = false, $skip_init = false) {
19c73507
AD
148 $plugins = explode(",", $classlist);
149
d8a1d2a2
AD
150 $this->owner_uid = (int) $owner_uid;
151
19c73507
AD
152 foreach ($plugins as $class) {
153 $class = trim($class);
8dcb2b47 154 $class_file = strtolower(basename($class));
b8c7f835 155
7c0a2ab2
AD
156 if (!is_dir(__DIR__."/../plugins/$class_file") &&
157 !is_dir(__DIR__."/../plugins.local/$class_file")) continue;
158
159 // try system plugin directory first
160 $file = __DIR__ . "/../plugins/$class_file/init.php";
b8c7f835 161
7c0a2ab2
AD
162 if (!file_exists($file)) {
163 $file = __DIR__ . "/../plugins.local/$class_file/init.php";
164 }
19c73507 165
de612e7a
AD
166 if (!isset($this->plugins[$class])) {
167 if (file_exists($file)) require_once $file;
19c73507 168
de612e7a
AD
169 if (class_exists($class) && is_subclass_of($class, "Plugin")) {
170 $plugin = new $class($this);
19c73507 171
ddf28801
AD
172 $plugin_api = $plugin->api_version();
173
174 if ($plugin_api < PluginHost::API_VERSION) {
175 user_error("Plugin $class is not compatible with current API version (need: " . PluginHost::API_VERSION . ", got: $plugin_api)", E_USER_WARNING);
176 continue;
177 }
178
726bd48e
AD
179 $this->last_registered = $class;
180
d2a421e3
AD
181 switch ($kind) {
182 case $this::KIND_SYSTEM:
183 if ($this->is_system($plugin)) {
583f163f 184 if (!$skip_init) $plugin->init($this);
d2a421e3
AD
185 $this->register_plugin($class, $plugin);
186 }
187 break;
188 case $this::KIND_USER:
189 if (!$this->is_system($plugin)) {
583f163f 190 if (!$skip_init) $plugin->init($this);
d2a421e3
AD
191 $this->register_plugin($class, $plugin);
192 }
193 break;
194 case $this::KIND_ALL:
583f163f 195 if (!$skip_init) $plugin->init($this);
d2a421e3
AD
196 $this->register_plugin($class, $plugin);
197 break;
198 }
de612e7a 199 }
19c73507
AD
200 }
201 }
202 }
203
de612e7a 204 function is_system($plugin) {
d2a421e3 205 $about = $plugin->about();
de612e7a
AD
206
207 return @$about[3];
208 }
209
210 // only system plugins are allowed to modify routing
8dcb2b47 211 function add_handler($handler, $method, $sender) {
6cbe53c9 212 $handler = str_replace("-", "_", strtolower($handler));
8dcb2b47
AD
213 $method = strtolower($method);
214
de612e7a
AD
215 if ($this->is_system($sender)) {
216 if (!is_array($this->handlers[$handler])) {
217 $this->handlers[$handler] = array();
218 }
8dcb2b47 219
de612e7a
AD
220 $this->handlers[$handler][$method] = $sender;
221 }
8dcb2b47
AD
222 }
223
6f7798b6 224 function del_handler($handler, $method, $sender) {
6cbe53c9 225 $handler = str_replace("-", "_", strtolower($handler));
8dcb2b47
AD
226 $method = strtolower($method);
227
de612e7a
AD
228 if ($this->is_system($sender)) {
229 unset($this->handlers[$handler][$method]);
230 }
8dcb2b47
AD
231 }
232
233 function lookup_handler($handler, $method) {
6cbe53c9 234 $handler = str_replace("-", "_", strtolower($handler));
8dcb2b47
AD
235 $method = strtolower($method);
236
237 if (is_array($this->handlers[$handler])) {
6cbe53c9
AD
238 if (isset($this->handlers[$handler]["*"])) {
239 return $this->handlers[$handler]["*"];
240 } else {
241 return $this->handlers[$handler][$method];
242 }
8dcb2b47
AD
243 }
244
245 return false;
246 }
73f28fe9 247
4cf0f9a9 248 function add_command($command, $description, $sender, $suffix = "", $arghelp = "") {
764555ff 249 $command = str_replace("-", "_", strtolower($command));
73f28fe9 250
d2a421e3 251 $this->commands[$command] = array("description" => $description,
4cf0f9a9
AD
252 "suffix" => $suffix,
253 "arghelp" => $arghelp,
d2a421e3 254 "class" => $sender);
73f28fe9
AD
255 }
256
257 function del_command($command) {
258 $command = "-" . strtolower($command);
259
d2a421e3 260 unset($this->commands[$command]);
73f28fe9
AD
261 }
262
263 function lookup_command($command) {
264 $command = "-" . strtolower($command);
265
266 if (is_array($this->commands[$command])) {
267 return $this->commands[$command]["class"];
268 } else {
269 return false;
270 }
271
272 return false;
273 }
274
275 function get_commands() {
276 return $this->commands;
277 }
278
279 function run_commands($args) {
280 foreach ($this->get_commands() as $command => $data) {
764555ff 281 if (isset($args[$command])) {
73f28fe9
AD
282 $command = str_replace("-", "", $command);
283 $data["class"]->$command($args);
284 }
285 }
286 }
287
d8a1d2a2 288 function load_data($force = false) {
d48398e6 289 if ($this->owner_uid) {
d9c85e0f 290 $result = $this->dbh->query("SELECT name, content FROM ttrss_plugin_storage
d8a1d2a2
AD
291 WHERE owner_uid = '".$this->owner_uid."'");
292
d9c85e0f 293 while ($line = $this->dbh->fetch_assoc($result)) {
d8a1d2a2
AD
294 $this->storage[$line["name"]] = unserialize($line["content"]);
295 }
d8a1d2a2
AD
296 }
297 }
298
299 private function save_data($plugin) {
300 if ($this->owner_uid) {
d9c85e0f 301 $plugin = $this->dbh->escape_string($plugin);
d8a1d2a2 302
d9c85e0f 303 $this->dbh->query("BEGIN");
d8a1d2a2 304
d9c85e0f 305 $result = $this->dbh->query("SELECT id FROM ttrss_plugin_storage WHERE
d8a1d2a2
AD
306 owner_uid= '".$this->owner_uid."' AND name = '$plugin'");
307
308 if (!isset($this->storage[$plugin]))
309 $this->storage[$plugin] = array();
310
14c84904
AD
311 $content = $this->dbh->escape_string(serialize($this->storage[$plugin]),
312 false);
d8a1d2a2 313
d9c85e0f
AD
314 if ($this->dbh->num_rows($result) != 0) {
315 $this->dbh->query("UPDATE ttrss_plugin_storage SET content = '$content'
d8a1d2a2
AD
316 WHERE owner_uid= '".$this->owner_uid."' AND name = '$plugin'");
317
318 } else {
d9c85e0f 319 $this->dbh->query("INSERT INTO ttrss_plugin_storage
d8a1d2a2
AD
320 (name,owner_uid,content) VALUES
321 ('$plugin','".$this->owner_uid."','$content')");
322 }
323
d9c85e0f 324 $this->dbh->query("COMMIT");
d8a1d2a2
AD
325 }
326 }
327
328 function set($sender, $name, $value, $sync = true) {
329 $idx = get_class($sender);
330
331 if (!isset($this->storage[$idx]))
332 $this->storage[$idx] = array();
333
334 $this->storage[$idx][$name] = $value;
335
d8a1d2a2
AD
336 if ($sync) $this->save_data(get_class($sender));
337 }
338
5d9abb1e 339 function get($sender, $name, $default_value = false) {
d8a1d2a2
AD
340 $idx = get_class($sender);
341
342 if (isset($this->storage[$idx][$name])) {
343 return $this->storage[$idx][$name];
344 } else {
345 return $default_value;
346 }
347 }
348
349 function get_all($sender) {
350 $idx = get_class($sender);
351
352 return $this->storage[$idx];
353 }
5d9abb1e
AD
354
355 function clear_data($sender) {
356 if ($this->owner_uid) {
357 $idx = get_class($sender);
358
359 unset($this->storage[$idx]);
360
d9c85e0f 361 $this->dbh->query("DELETE FROM ttrss_plugin_storage WHERE name = '$idx'
5d9abb1e 362 AND owner_uid = " . $this->owner_uid);
5d9abb1e
AD
363 }
364 }
be178857
AD
365
366 function set_debug($debug) {
367 $this->debug = $debug;
368 }
369
370 function get_debug() {
371 return $this->debug;
372 }
a413f53e
AD
373
374 // Plugin feed functions are *EXPERIMENTAL*!
375
376 // cat_id: only -1 is supported (Special)
377 function add_feed($cat_id, $title, $icon, $sender) {
378 if (!$this->feeds[$cat_id]) $this->feeds[$cat_id] = array();
379
380 $id = count($this->feeds[$cat_id]);
381
382 array_push($this->feeds[$cat_id],
383 array('id' => $id, 'title' => $title, 'sender' => $sender, 'icon' => $icon));
384
385 return $id;
386 }
387
388 function get_feeds($cat_id) {
389 return $this->feeds[$cat_id];
390 }
391
392 // convert feed_id (e.g. -129) to pfeed_id first
393 function get_feed_handler($pfeed_id) {
394 foreach ($this->feeds as $cat) {
395 foreach ($cat as $feed) {
396 if ($feed['id'] == $pfeed_id) {
397 return $feed['sender'];
398 }
399 }
400 }
401 }
402
403 static function pfeed_to_feed_id($label) {
404 return PLUGIN_FEED_BASE_INDEX - 1 - abs($label);
405 }
406
407 static function feed_to_pfeed_id($feed) {
408 return PLUGIN_FEED_BASE_INDEX - 1 + abs($feed);
409 }
410
79f9bef7
AD
411 function add_api_method($name, $sender) {
412 if ($this->is_system($sender)) {
413 $this->api_methods[strtolower($name)] = $sender;
414 }
415 }
416
417 function get_api_method($name) {
418 return $this->api_methods[$name];
419 }
b8774453
AD
420
421 function add_filter_action($sender, $action_name, $action_desc) {
422 $sender_class = get_class($sender);
423
424 if (!isset($this->plugin_actions[$sender_class]))
425 $this->plugin_actions[$sender_class] = array();
426
427 array_push($this->plugin_actions[$sender_class],
428 array("action" => $action_name, "description" => $action_desc, "sender" => $sender));
429 }
430
431 function get_filter_actions() {
432 return $this->plugin_actions;
433 }
19c73507
AD
434}
435?>