]> git.wh0rd.org - tt-rss.git/blobdiff - classes/pluginhost.php
pluginhost: allow loading user plugins from plugins.local
[tt-rss.git] / classes / pluginhost.php
index a1bd1b36400a195c341e3399be5c7ba5fe8907fd..13da7e7ab697d508e4808944a341a336029eac64 100644 (file)
@@ -38,6 +38,12 @@ class PluginHost {
        const HOOK_PREFS_SAVE_FEED = 21;
        const HOOK_FETCH_FEED = 22;
        const HOOK_QUERY_HEADLINES = 23;
+       const HOOK_HOUSE_KEEPING = 24;
+       const HOOK_SEARCH = 25;
+       const HOOK_FORMAT_ENCLOSURES = 26;
+       const HOOK_SUBSCRIBE_FEED = 27;
+       const HOOK_HEADLINES_BEFORE = 28;
+       const HOOK_RENDER_ENCLOSURE = 29;
 
        const KIND_ALL = 1;
        const KIND_SYSTEM = 2;
@@ -74,6 +80,16 @@ class PluginHost {
                return $this->dbh;
        }
 
+       function get_plugin_names() {
+               $names = array();
+
+               foreach ($this->plugins as $p) {
+                       array_push($names, get_class($p));
+               }
+
+               return $names;
+       }
+
        function get_plugins() {
                return $this->plugins;
        }
@@ -98,7 +114,7 @@ class PluginHost {
 
        function del_hook($type, $sender) {
                if (is_array($this->hooks[$type])) {
-                       $key = array_Search($this->hooks[$type], $sender);
+                       $key = array_Search($sender, $this->hooks[$type]);
                        if ($key !== FALSE) {
                                unset($this->hooks[$type][$key]);
                        }
@@ -113,7 +129,15 @@ class PluginHost {
                }
        }
        function load_all($kind, $owner_uid = false) {
-               $plugins = array_map("basename", glob("plugins/*"));
+               $plugins = array_map("basename", array_filter(glob("plugins/*"), "is_dir"));
+
+               if (is_dir("plugins.local")) {
+                       $plugins = array_merge($plugins, array_map("basename",
+                               array_filter(glob("plugins.local/*"), "is_dir")));
+               }
+
+               asort($plugins);
+
                $this->load(join(",", $plugins), $kind, $owner_uid);
        }
 
@@ -126,9 +150,15 @@ class PluginHost {
                        $class = trim($class);
                        $class_file = strtolower(basename($class));
 
-                       if (!is_dir(dirname(__FILE__)."/../plugins/$class_file")) continue;
+                       if (!is_dir(__DIR__."/../plugins/$class_file") &&
+                                       !is_dir(__DIR__."/../plugins.local/$class_file")) continue;
 
-                       $file = dirname(__FILE__)."/../plugins/$class_file/init.php";
+                       // try system plugin directory first
+                       $file = __DIR__ . "/../plugins/$class_file/init.php";
+
+                       if (!file_exists($file)) {
+                               $file = __DIR__ . "/../plugins.local/$class_file/init.php";
+                       }
 
                        if (!isset($this->plugins[$class])) {
                                if (file_exists($file)) require_once $file;