pluginhost.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. <?php
  2. class PluginHost {
  3. private $dbh;
  4. private $pdo;
  5. private $hooks = array();
  6. private $plugins = array();
  7. private $handlers = array();
  8. private $commands = array();
  9. private $storage = array();
  10. private $feeds = array();
  11. private $api_methods = array();
  12. private $plugin_actions = array();
  13. private $owner_uid;
  14. private $debug;
  15. private $last_registered;
  16. private static $instance;
  17. const API_VERSION = 2;
  18. // Hooks marked with *1 are run in global context and available
  19. // to plugins loaded in config.php only
  20. const HOOK_ARTICLE_BUTTON = 1;
  21. const HOOK_ARTICLE_FILTER = 2;
  22. const HOOK_PREFS_TAB = 3;
  23. const HOOK_PREFS_TAB_SECTION = 4;
  24. const HOOK_PREFS_TABS = 5;
  25. const HOOK_FEED_PARSED = 6;
  26. const HOOK_UPDATE_TASK = 7; // *1
  27. const HOOK_AUTH_USER = 8;
  28. const HOOK_HOTKEY_MAP = 9;
  29. const HOOK_RENDER_ARTICLE = 10;
  30. const HOOK_RENDER_ARTICLE_CDM = 11;
  31. const HOOK_FEED_FETCHED = 12;
  32. const HOOK_SANITIZE = 13;
  33. const HOOK_RENDER_ARTICLE_API = 14;
  34. const HOOK_TOOLBAR_BUTTON = 15;
  35. const HOOK_ACTION_ITEM = 16;
  36. const HOOK_HEADLINE_TOOLBAR_BUTTON = 17;
  37. const HOOK_HOTKEY_INFO = 18;
  38. const HOOK_ARTICLE_LEFT_BUTTON = 19;
  39. const HOOK_PREFS_EDIT_FEED = 20;
  40. const HOOK_PREFS_SAVE_FEED = 21;
  41. const HOOK_FETCH_FEED = 22;
  42. const HOOK_QUERY_HEADLINES = 23;
  43. const HOOK_HOUSE_KEEPING = 24; // *1
  44. const HOOK_SEARCH = 25;
  45. const HOOK_FORMAT_ENCLOSURES = 26;
  46. const HOOK_SUBSCRIBE_FEED = 27;
  47. const HOOK_HEADLINES_BEFORE = 28;
  48. const HOOK_RENDER_ENCLOSURE = 29;
  49. const HOOK_ARTICLE_FILTER_ACTION = 30;
  50. const HOOK_ARTICLE_EXPORT_FEED = 31;
  51. const HOOK_MAIN_TOOLBAR_BUTTON = 32;
  52. const HOOK_ENCLOSURE_ENTRY = 33;
  53. const HOOK_FORMAT_ARTICLE = 34;
  54. const HOOK_FORMAT_ARTICLE_CDM = 35;
  55. const HOOK_FEED_BASIC_INFO = 36;
  56. const HOOK_SEND_LOCAL_FILE = 37;
  57. const KIND_ALL = 1;
  58. const KIND_SYSTEM = 2;
  59. const KIND_USER = 3;
  60. function __construct() {
  61. $this->dbh = Db::get();
  62. $this->pdo = Db::pdo();
  63. $this->storage = array();
  64. }
  65. private function __clone() {
  66. //
  67. }
  68. public static function getInstance() {
  69. if (self::$instance == null)
  70. self::$instance = new self();
  71. return self::$instance;
  72. }
  73. private function register_plugin($name, $plugin) {
  74. //array_push($this->plugins, $plugin);
  75. $this->plugins[$name] = $plugin;
  76. }
  77. // needed for compatibility with API 1
  78. function get_link() {
  79. return false;
  80. }
  81. function get_dbh() {
  82. return $this->dbh;
  83. }
  84. function get_pdo() {
  85. return $this->pdo;
  86. }
  87. function get_plugin_names() {
  88. $names = array();
  89. foreach ($this->plugins as $p) {
  90. array_push($names, get_class($p));
  91. }
  92. return $names;
  93. }
  94. function get_plugins() {
  95. return $this->plugins;
  96. }
  97. function get_plugin($name) {
  98. return $this->plugins[strtolower($name)];
  99. }
  100. function run_hooks($type, $method, $args) {
  101. foreach ($this->get_hooks($type) as $hook) {
  102. $hook->$method($args);
  103. }
  104. }
  105. function add_hook($type, $sender) {
  106. if (!is_array($this->hooks[$type])) {
  107. $this->hooks[$type] = array();
  108. }
  109. array_push($this->hooks[$type], $sender);
  110. }
  111. function del_hook($type, $sender) {
  112. if (is_array($this->hooks[$type])) {
  113. $key = array_Search($sender, $this->hooks[$type]);
  114. if ($key !== FALSE) {
  115. unset($this->hooks[$type][$key]);
  116. }
  117. }
  118. }
  119. function get_hooks($type) {
  120. if (isset($this->hooks[$type])) {
  121. return $this->hooks[$type];
  122. } else {
  123. return array();
  124. }
  125. }
  126. function load_all($kind, $owner_uid = false, $skip_init = false) {
  127. $plugins = array_merge(glob("plugins/*"), glob("plugins.local/*"));
  128. $plugins = array_filter($plugins, "is_dir");
  129. $plugins = array_map("basename", $plugins);
  130. asort($plugins);
  131. $this->load(join(",", $plugins), $kind, $owner_uid, $skip_init);
  132. }
  133. function load($classlist, $kind, $owner_uid = false, $skip_init = false) {
  134. $plugins = explode(",", $classlist);
  135. $this->owner_uid = (int) $owner_uid;
  136. foreach ($plugins as $class) {
  137. $class = trim($class);
  138. $class_file = strtolower(basename($class));
  139. if (!is_dir(__DIR__."/../plugins/$class_file") &&
  140. !is_dir(__DIR__."/../plugins.local/$class_file")) continue;
  141. // try system plugin directory first
  142. $file = __DIR__ . "/../plugins/$class_file/init.php";
  143. if (!file_exists($file)) {
  144. $file = __DIR__ . "/../plugins.local/$class_file/init.php";
  145. }
  146. if (!isset($this->plugins[$class])) {
  147. if (file_exists($file)) require_once $file;
  148. if (class_exists($class) && is_subclass_of($class, "Plugin")) {
  149. $plugin = new $class($this);
  150. $plugin_api = $plugin->api_version();
  151. if ($plugin_api < PluginHost::API_VERSION) {
  152. user_error("Plugin $class is not compatible with current API version (need: " . PluginHost::API_VERSION . ", got: $plugin_api)", E_USER_WARNING);
  153. continue;
  154. }
  155. $this->last_registered = $class;
  156. switch ($kind) {
  157. case $this::KIND_SYSTEM:
  158. if ($this->is_system($plugin)) {
  159. if (!$skip_init) $plugin->init($this);
  160. $this->register_plugin($class, $plugin);
  161. }
  162. break;
  163. case $this::KIND_USER:
  164. if (!$this->is_system($plugin)) {
  165. if (!$skip_init) $plugin->init($this);
  166. $this->register_plugin($class, $plugin);
  167. }
  168. break;
  169. case $this::KIND_ALL:
  170. if (!$skip_init) $plugin->init($this);
  171. $this->register_plugin($class, $plugin);
  172. break;
  173. }
  174. }
  175. }
  176. }
  177. }
  178. function is_system($plugin) {
  179. $about = $plugin->about();
  180. return @$about[3];
  181. }
  182. // only system plugins are allowed to modify routing
  183. function add_handler($handler, $method, $sender) {
  184. $handler = str_replace("-", "_", strtolower($handler));
  185. $method = strtolower($method);
  186. if ($this->is_system($sender)) {
  187. if (!is_array($this->handlers[$handler])) {
  188. $this->handlers[$handler] = array();
  189. }
  190. $this->handlers[$handler][$method] = $sender;
  191. }
  192. }
  193. function del_handler($handler, $method, $sender) {
  194. $handler = str_replace("-", "_", strtolower($handler));
  195. $method = strtolower($method);
  196. if ($this->is_system($sender)) {
  197. unset($this->handlers[$handler][$method]);
  198. }
  199. }
  200. function lookup_handler($handler, $method) {
  201. $handler = str_replace("-", "_", strtolower($handler));
  202. $method = strtolower($method);
  203. if (is_array($this->handlers[$handler])) {
  204. if (isset($this->handlers[$handler]["*"])) {
  205. return $this->handlers[$handler]["*"];
  206. } else {
  207. return $this->handlers[$handler][$method];
  208. }
  209. }
  210. return false;
  211. }
  212. function add_command($command, $description, $sender, $suffix = "", $arghelp = "") {
  213. $command = str_replace("-", "_", strtolower($command));
  214. $this->commands[$command] = array("description" => $description,
  215. "suffix" => $suffix,
  216. "arghelp" => $arghelp,
  217. "class" => $sender);
  218. }
  219. function del_command($command) {
  220. $command = "-" . strtolower($command);
  221. unset($this->commands[$command]);
  222. }
  223. function lookup_command($command) {
  224. $command = "-" . strtolower($command);
  225. if (is_array($this->commands[$command])) {
  226. return $this->commands[$command]["class"];
  227. } else {
  228. return false;
  229. }
  230. return false;
  231. }
  232. function get_commands() {
  233. return $this->commands;
  234. }
  235. function run_commands($args) {
  236. foreach ($this->get_commands() as $command => $data) {
  237. if (isset($args[$command])) {
  238. $command = str_replace("-", "", $command);
  239. $data["class"]->$command($args);
  240. }
  241. }
  242. }
  243. function load_data() {
  244. if ($this->owner_uid) {
  245. $sth = $this->pdo->prepare("SELECT name, content FROM ttrss_plugin_storage
  246. WHERE owner_uid = ?");
  247. $sth->execute([$this->owner_uid]);
  248. while ($line = $sth->fetch()) {
  249. $this->storage[$line["name"]] = unserialize($line["content"]);
  250. }
  251. }
  252. }
  253. private function save_data($plugin) {
  254. if ($this->owner_uid) {
  255. $this->pdo->beginTransaction();
  256. $sth = $this->pdo->prepare("SELECT id FROM ttrss_plugin_storage WHERE
  257. owner_uid= ? AND name = ?");
  258. $sth->execute([$this->owner_uid, $plugin]);
  259. if (!isset($this->storage[$plugin]))
  260. $this->storage[$plugin] = array();
  261. $content = serialize($this->storage[$plugin]);
  262. if ($sth->fetch()) {
  263. $sth = $this->pdo->prepare("UPDATE ttrss_plugin_storage SET content = ?
  264. WHERE owner_uid= ? AND name = ?");
  265. $sth->execute([(string)$content, $this->owner_uid, $plugin]);
  266. } else {
  267. $sth = $this->pdo->prepare("INSERT INTO ttrss_plugin_storage
  268. (name,owner_uid,content) VALUES
  269. (?, ?, ?)");
  270. $sth->execute([$plugin, $this->owner_uid, (string)$content]);
  271. }
  272. $this->pdo->commit();
  273. }
  274. }
  275. function set($sender, $name, $value, $sync = true) {
  276. $idx = get_class($sender);
  277. if (!isset($this->storage[$idx]))
  278. $this->storage[$idx] = array();
  279. $this->storage[$idx][$name] = $value;
  280. if ($sync) $this->save_data(get_class($sender));
  281. }
  282. function get($sender, $name, $default_value = false) {
  283. $idx = get_class($sender);
  284. if (isset($this->storage[$idx][$name])) {
  285. return $this->storage[$idx][$name];
  286. } else {
  287. return $default_value;
  288. }
  289. }
  290. function get_all($sender) {
  291. $idx = get_class($sender);
  292. return $this->storage[$idx];
  293. }
  294. function clear_data($sender) {
  295. if ($this->owner_uid) {
  296. $idx = get_class($sender);
  297. unset($this->storage[$idx]);
  298. $sth = $this->pdo->prepare("DELETE FROM ttrss_plugin_storage WHERE name = ?
  299. AND owner_uid = ?");
  300. $sth->execute([$idx, $this->owner_uid]);
  301. }
  302. }
  303. function set_debug($debug) {
  304. $this->debug = $debug;
  305. }
  306. function get_debug() {
  307. return $this->debug;
  308. }
  309. // Plugin feed functions are *EXPERIMENTAL*!
  310. // cat_id: only -1 is supported (Special)
  311. function add_feed($cat_id, $title, $icon, $sender) {
  312. if (!$this->feeds[$cat_id]) $this->feeds[$cat_id] = array();
  313. $id = count($this->feeds[$cat_id]);
  314. array_push($this->feeds[$cat_id],
  315. array('id' => $id, 'title' => $title, 'sender' => $sender, 'icon' => $icon));
  316. return $id;
  317. }
  318. function get_feeds($cat_id) {
  319. return $this->feeds[$cat_id];
  320. }
  321. // convert feed_id (e.g. -129) to pfeed_id first
  322. function get_feed_handler($pfeed_id) {
  323. foreach ($this->feeds as $cat) {
  324. foreach ($cat as $feed) {
  325. if ($feed['id'] == $pfeed_id) {
  326. return $feed['sender'];
  327. }
  328. }
  329. }
  330. }
  331. static function pfeed_to_feed_id($label) {
  332. return PLUGIN_FEED_BASE_INDEX - 1 - abs($label);
  333. }
  334. static function feed_to_pfeed_id($feed) {
  335. return PLUGIN_FEED_BASE_INDEX - 1 + abs($feed);
  336. }
  337. function add_api_method($name, $sender) {
  338. if ($this->is_system($sender)) {
  339. $this->api_methods[strtolower($name)] = $sender;
  340. }
  341. }
  342. function get_api_method($name) {
  343. return $this->api_methods[$name];
  344. }
  345. function add_filter_action($sender, $action_name, $action_desc) {
  346. $sender_class = get_class($sender);
  347. if (!isset($this->plugin_actions[$sender_class]))
  348. $this->plugin_actions[$sender_class] = array();
  349. array_push($this->plugin_actions[$sender_class],
  350. array("action" => $action_name, "description" => $action_desc, "sender" => $sender));
  351. }
  352. function get_filter_actions() {
  353. return $this->plugin_actions;
  354. }
  355. }