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