2012-12-23 10:52:18 +00:00
|
|
|
<?php
|
|
|
|
class PluginHost {
|
2021-11-12 21:17:31 +00:00
|
|
|
// TODO: class properties can be switched to PHP typing if/when the minimum PHP_VERSION is raised to 7.4.0+
|
|
|
|
/** @var PDO|null */
|
|
|
|
private $pdo = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* separate handle for plugin data so transaction while saving wouldn't clash with possible main
|
|
|
|
* tt-rss code transactions; only initialized when first needed
|
|
|
|
*
|
|
|
|
* @var PDO|null
|
|
|
|
*/
|
|
|
|
private $pdo_data = null;
|
2021-11-12 00:06:00 +00:00
|
|
|
|
|
|
|
/** @var array<string, array<int, array<int, Plugin>>> hook types -> priority levels -> Plugins */
|
2021-11-12 21:17:31 +00:00
|
|
|
private $hooks = [];
|
2021-11-12 00:06:00 +00:00
|
|
|
|
|
|
|
/** @var array<string, Plugin> */
|
2021-11-12 21:17:31 +00:00
|
|
|
private $plugins = [];
|
2021-11-12 00:06:00 +00:00
|
|
|
|
|
|
|
/** @var array<string, array<string, Plugin>> handler type -> method type -> Plugin */
|
2021-11-12 21:17:31 +00:00
|
|
|
private $handlers = [];
|
2021-11-12 00:06:00 +00:00
|
|
|
|
|
|
|
/** @var array<string, array{'description': string, 'suffix': string, 'arghelp': string, 'class': Plugin}> command type -> details array */
|
2021-11-12 21:17:31 +00:00
|
|
|
private $commands = [];
|
2021-11-12 00:06:00 +00:00
|
|
|
|
|
|
|
/** @var array<string, array<string, mixed>> plugin name -> (potential profile array) -> key -> value */
|
2021-11-12 21:17:31 +00:00
|
|
|
private $storage = [];
|
2021-11-12 00:06:00 +00:00
|
|
|
|
|
|
|
/** @var array<int, array<int, array{'id': int, 'title': string, 'sender': Plugin, 'icon': string}>> */
|
2021-11-12 21:17:31 +00:00
|
|
|
private $feeds = [];
|
2021-11-12 00:06:00 +00:00
|
|
|
|
|
|
|
/** @var array<string, Plugin> API method name, Plugin sender */
|
2021-11-12 21:17:31 +00:00
|
|
|
private $api_methods = [];
|
2021-11-12 00:06:00 +00:00
|
|
|
|
|
|
|
/** @var array<string, array<int, array{'action': string, 'description': string, 'sender': Plugin}>> */
|
2021-11-12 21:17:31 +00:00
|
|
|
private $plugin_actions = [];
|
|
|
|
|
|
|
|
/** @var int|null */
|
|
|
|
private $owner_uid = null;
|
|
|
|
|
|
|
|
/** @var bool */
|
|
|
|
private $data_loaded = false;
|
2021-11-12 00:06:00 +00:00
|
|
|
|
2021-11-12 21:17:31 +00:00
|
|
|
/** @var PluginHost|null */
|
|
|
|
private static $instance = null;
|
2012-12-23 10:52:18 +00:00
|
|
|
|
2013-04-19 13:31:56 +00:00
|
|
|
const API_VERSION = 2;
|
2021-02-17 06:59:14 +00:00
|
|
|
const PUBLIC_METHOD_DELIMITER = "--";
|
2013-04-19 13:26:22 +00:00
|
|
|
|
2015-06-15 18:41:55 +00:00
|
|
|
// Hooks marked with *1 are run in global context and available
|
|
|
|
// to plugins loaded in config.php only
|
|
|
|
|
2021-10-22 10:24:10 +00:00
|
|
|
/** hook_article_button($line) */
|
|
|
|
const HOOK_ARTICLE_BUTTON = "hook_article_button";
|
|
|
|
|
|
|
|
/** hook_article_filter($article) */
|
|
|
|
const HOOK_ARTICLE_FILTER = "hook_article_filter";
|
|
|
|
|
|
|
|
/** hook_prefs_tab($tab) */
|
|
|
|
const HOOK_PREFS_TAB = "hook_prefs_tab";
|
|
|
|
|
|
|
|
/** hook_prefs_tab_section($section) */
|
|
|
|
const HOOK_PREFS_TAB_SECTION = "hook_prefs_tab_section";
|
|
|
|
|
|
|
|
/** hook_prefs_tabs() */
|
|
|
|
const HOOK_PREFS_TABS = "hook_prefs_tabs";
|
|
|
|
|
|
|
|
/** hook_feed_parsed($parser, $feed_id) */
|
|
|
|
const HOOK_FEED_PARSED = "hook_feed_parsed";
|
|
|
|
|
|
|
|
/** GLOBAL: hook_update_task($cli_options) */
|
|
|
|
const HOOK_UPDATE_TASK = "hook_update_task"; //*1
|
|
|
|
|
|
|
|
/** hook_auth_user($login, $password, $service) (byref) */
|
|
|
|
const HOOK_AUTH_USER = "hook_auth_user";
|
|
|
|
|
|
|
|
/** hook_hotkey_map($hotkeys) (byref) */
|
|
|
|
const HOOK_HOTKEY_MAP = "hook_hotkey_map";
|
|
|
|
|
|
|
|
/** hook_render_article($article) */
|
|
|
|
const HOOK_RENDER_ARTICLE = "hook_render_article";
|
|
|
|
|
|
|
|
/** hook_render_article_cdm($article) */
|
|
|
|
const HOOK_RENDER_ARTICLE_CDM = "hook_render_article_cdm";
|
|
|
|
|
|
|
|
/** hook_feed_fetched($feed_data, $fetch_url, $owner_uid, $feed) (byref) */
|
|
|
|
const HOOK_FEED_FETCHED = "hook_feed_fetched";
|
|
|
|
|
|
|
|
/** hook_sanitize($doc, $site_url, $allowed_elements, $disallowed_attributes, $article_id) (byref) */
|
|
|
|
const HOOK_SANITIZE = "hook_sanitize";
|
|
|
|
|
|
|
|
/** hook_render_article_api($params) */
|
|
|
|
const HOOK_RENDER_ARTICLE_API = "hook_render_article_api";
|
|
|
|
|
|
|
|
/** hook_toolbar_button() */
|
|
|
|
const HOOK_TOOLBAR_BUTTON = "hook_toolbar_button";
|
|
|
|
|
|
|
|
/** hook_action_item() */
|
|
|
|
const HOOK_ACTION_ITEM = "hook_action_item";
|
|
|
|
|
|
|
|
/** hook_headline_toolbar_button($feed_id, $is_cat) */
|
|
|
|
const HOOK_HEADLINE_TOOLBAR_BUTTON = "hook_headline_toolbar_button";
|
|
|
|
|
|
|
|
/** hook_hotkey_info($hotkeys) (byref) */
|
|
|
|
const HOOK_HOTKEY_INFO = "hook_hotkey_info";
|
|
|
|
|
|
|
|
/** hook_article_left_button($row) */
|
|
|
|
const HOOK_ARTICLE_LEFT_BUTTON = "hook_article_left_button";
|
|
|
|
|
|
|
|
/** hook_prefs_edit_feed($feed_id) */
|
|
|
|
const HOOK_PREFS_EDIT_FEED = "hook_prefs_edit_feed";
|
|
|
|
|
|
|
|
/** hook_prefs_save_feed($feed_id) */
|
|
|
|
const HOOK_PREFS_SAVE_FEED = "hook_prefs_save_feed";
|
|
|
|
|
|
|
|
/** hook_fetch_feed($feed_data, $fetch_url, $owner_uid, $feed, $last_article_timestamp, $auth_login, $auth_pass) (byref) */
|
|
|
|
const HOOK_FETCH_FEED = "hook_fetch_feed";
|
|
|
|
|
|
|
|
/** hook_query_headlines($row) (byref) */
|
|
|
|
const HOOK_QUERY_HEADLINES = "hook_query_headlines";
|
|
|
|
|
|
|
|
/** GLOBAL: hook_house_keeping() */
|
|
|
|
const HOOK_HOUSE_KEEPING = "hook_house_keeping"; //*1
|
|
|
|
|
|
|
|
/** hook_search($query) */
|
|
|
|
const HOOK_SEARCH = "hook_search";
|
|
|
|
|
|
|
|
/** hook_format_enclosures($rv, $result, $id, $always_display_enclosures, $article_content, $hide_images) (byref) */
|
|
|
|
const HOOK_FORMAT_ENCLOSURES = "hook_format_enclosures";
|
|
|
|
|
|
|
|
/** hook_subscribe_feed($contents, $url, $auth_login, $auth_pass) (byref) */
|
|
|
|
const HOOK_SUBSCRIBE_FEED = "hook_subscribe_feed";
|
|
|
|
|
|
|
|
/** hook_headlines_before($feed, $is_cat, $qfh_ret) */
|
|
|
|
const HOOK_HEADLINES_BEFORE = "hook_headlines_before";
|
|
|
|
|
|
|
|
/** hook_render_enclosure($entry, $id, $rv) */
|
|
|
|
const HOOK_RENDER_ENCLOSURE = "hook_render_enclosure";
|
|
|
|
|
|
|
|
/** hook_article_filter_action($article, $action) */
|
|
|
|
const HOOK_ARTICLE_FILTER_ACTION = "hook_article_filter_action";
|
|
|
|
|
|
|
|
/** hook_article_export_feed($line, $feed, $is_cat, $owner_uid) (byref) */
|
|
|
|
const HOOK_ARTICLE_EXPORT_FEED = "hook_article_export_feed";
|
|
|
|
|
|
|
|
/** hook_main_toolbar_button() */
|
|
|
|
const HOOK_MAIN_TOOLBAR_BUTTON = "hook_main_toolbar_button";
|
|
|
|
|
|
|
|
/** hook_enclosure_entry($entry, $id, $rv) (byref) */
|
|
|
|
const HOOK_ENCLOSURE_ENTRY = "hook_enclosure_entry";
|
|
|
|
|
|
|
|
/** hook_format_article($html, $row) */
|
|
|
|
const HOOK_FORMAT_ARTICLE = "hook_format_article";
|
|
|
|
|
|
|
|
/** @deprecated removed, do not use */
|
|
|
|
const HOOK_FORMAT_ARTICLE_CDM = "hook_format_article_cdm";
|
|
|
|
|
|
|
|
/** hook_feed_basic_info($basic_info, $fetch_url, $owner_uid, $feed_id, $auth_login, $auth_pass) (byref) */
|
|
|
|
const HOOK_FEED_BASIC_INFO = "hook_feed_basic_info";
|
|
|
|
|
|
|
|
/** hook_send_local_file($filename) */
|
|
|
|
const HOOK_SEND_LOCAL_FILE = "hook_send_local_file";
|
|
|
|
|
|
|
|
/** hook_unsubscribe_feed($feed_id, $owner_uid) */
|
|
|
|
const HOOK_UNSUBSCRIBE_FEED = "hook_unsubscribe_feed";
|
|
|
|
|
|
|
|
/** hook_send_mail(Mailer $mailer, $params) */
|
|
|
|
const HOOK_SEND_MAIL = "hook_send_mail";
|
|
|
|
|
|
|
|
/** hook_filter_triggered($feed_id, $owner_uid, $article, $matched_filters, $matched_rules, $article_filters) */
|
|
|
|
const HOOK_FILTER_TRIGGERED = "hook_filter_triggered";
|
|
|
|
|
|
|
|
/** hook_get_full_text($url) */
|
|
|
|
const HOOK_GET_FULL_TEXT = "hook_get_full_text";
|
|
|
|
|
|
|
|
/** hook_article_image($enclosures, $content, $site_url) */
|
|
|
|
const HOOK_ARTICLE_IMAGE = "hook_article_image";
|
|
|
|
|
|
|
|
/** hook_feed_tree() */
|
|
|
|
const HOOK_FEED_TREE = "hook_feed_tree";
|
|
|
|
|
|
|
|
/** hook_iframe_whitelisted($url) */
|
|
|
|
const HOOK_IFRAME_WHITELISTED = "hook_iframe_whitelisted";
|
|
|
|
|
|
|
|
/** hook_enclosure_imported($enclosure, $feed) */
|
|
|
|
const HOOK_ENCLOSURE_IMPORTED = "hook_enclosure_imported";
|
|
|
|
|
|
|
|
/** hook_headlines_custom_sort_map() */
|
|
|
|
const HOOK_HEADLINES_CUSTOM_SORT_MAP = "hook_headlines_custom_sort_map";
|
|
|
|
|
|
|
|
/** hook_headlines_custom_sort_override($order) */
|
2021-02-08 11:24:45 +00:00
|
|
|
const HOOK_HEADLINES_CUSTOM_SORT_OVERRIDE = "hook_headlines_custom_sort_override";
|
2021-10-22 10:24:10 +00:00
|
|
|
|
|
|
|
/** hook_headline_toolbar_select_menu_item($feed_id, $is_cat) */
|
2021-02-08 11:24:45 +00:00
|
|
|
const HOOK_HEADLINE_TOOLBAR_SELECT_MENU_ITEM = "hook_headline_toolbar_select_menu_item";
|
2021-10-22 10:24:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** hook_pre_subscribe($url, $auth_login, $auth_pass) (byref) */
|
|
|
|
const HOOK_PRE_SUBSCRIBE = "hook_pre_subscribe";
|
2012-12-23 10:52:18 +00:00
|
|
|
|
2012-12-25 06:02:08 +00:00
|
|
|
const KIND_ALL = 1;
|
|
|
|
const KIND_SYSTEM = 2;
|
|
|
|
const KIND_USER = 3;
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
static function object_to_domain(Plugin $plugin): string {
|
2019-03-01 11:25:24 +00:00
|
|
|
return strtolower(get_class($plugin));
|
|
|
|
}
|
|
|
|
|
2013-04-19 04:40:19 +00:00
|
|
|
function __construct() {
|
2017-12-02 08:25:43 +00:00
|
|
|
$this->pdo = Db::pdo();
|
2021-11-12 00:06:00 +00:00
|
|
|
$this->storage = [];
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
|
|
|
|
2013-04-18 08:27:34 +00:00
|
|
|
private function __clone() {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
2021-02-08 18:06:14 +00:00
|
|
|
public static function getInstance(): PluginHost {
|
2013-04-18 08:27:34 +00:00
|
|
|
if (self::$instance == null)
|
|
|
|
self::$instance = new self();
|
|
|
|
|
|
|
|
return self::$instance;
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
private function register_plugin(string $name, Plugin $plugin): void {
|
2012-12-23 10:52:18 +00:00
|
|
|
//array_push($this->plugins, $plugin);
|
|
|
|
$this->plugins[$name] = $plugin;
|
|
|
|
}
|
|
|
|
|
2021-10-22 10:24:10 +00:00
|
|
|
/** needed for compatibility with API 1 */
|
2021-11-12 00:06:00 +00:00
|
|
|
function get_link(): bool {
|
2013-04-19 13:31:56 +00:00
|
|
|
return false;
|
2013-04-19 13:20:03 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 10:24:10 +00:00
|
|
|
/** needed for compatibility with API 2 (?) */
|
2021-11-12 00:06:00 +00:00
|
|
|
function get_dbh(): bool {
|
2021-02-22 11:41:09 +00:00
|
|
|
return false;
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
|
|
|
|
2021-02-08 18:11:56 +00:00
|
|
|
function get_pdo(): PDO {
|
2017-12-02 08:25:43 +00:00
|
|
|
return $this->pdo;
|
|
|
|
}
|
2018-11-03 12:08:43 +00:00
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @return array<int, string>
|
|
|
|
*/
|
|
|
|
function get_plugin_names(): array {
|
|
|
|
$names = [];
|
2014-03-14 11:06:37 +00:00
|
|
|
|
|
|
|
foreach ($this->plugins as $p) {
|
|
|
|
array_push($names, get_class($p));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $names;
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @return array<Plugin>
|
|
|
|
*/
|
|
|
|
function get_plugins(): array {
|
2012-12-23 10:52:18 +00:00
|
|
|
return $this->plugins;
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function get_plugin(string $name): ?Plugin {
|
2021-02-05 20:41:32 +00:00
|
|
|
return $this->plugins[strtolower($name)] ?? null;
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @param mixed $args
|
|
|
|
*/
|
|
|
|
function run_hooks(string $hook, ...$args): void {
|
2021-02-08 11:24:45 +00:00
|
|
|
$method = strtolower($hook);
|
|
|
|
|
|
|
|
foreach ($this->get_hooks($hook) as $plugin) {
|
2021-02-08 13:14:48 +00:00
|
|
|
//Debug::log("invoking: " . get_class($plugin) . "->$hook()", Debug::$LOG_VERBOSE);
|
2021-02-08 11:24:45 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
$plugin->$method(...$args);
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
user_error($ex, E_USER_WARNING);
|
|
|
|
} catch (Error $err) {
|
|
|
|
user_error($err, E_USER_WARNING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @param mixed $args
|
|
|
|
* @param mixed $check
|
|
|
|
*/
|
|
|
|
function run_hooks_until(string $hook, $check, ...$args): bool {
|
2021-02-08 13:14:48 +00:00
|
|
|
$method = strtolower($hook);
|
|
|
|
|
|
|
|
foreach ($this->get_hooks($hook) as $plugin) {
|
|
|
|
try {
|
|
|
|
$result = $plugin->$method(...$args);
|
|
|
|
|
|
|
|
if ($result == $check)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
user_error($ex, E_USER_WARNING);
|
|
|
|
} catch (Error $err) {
|
|
|
|
user_error($err, E_USER_WARNING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @param mixed $args
|
|
|
|
*/
|
|
|
|
function run_hooks_callback(string $hook, Closure $callback, ...$args): void {
|
2021-02-08 11:24:45 +00:00
|
|
|
$method = strtolower($hook);
|
|
|
|
|
|
|
|
foreach ($this->get_hooks($hook) as $plugin) {
|
|
|
|
//Debug::log("invoking: " . get_class($plugin) . "->$hook()", Debug::$LOG_VERBOSE);
|
|
|
|
|
|
|
|
try {
|
2021-02-08 13:14:48 +00:00
|
|
|
if ($callback($plugin->$method(...$args), $plugin))
|
|
|
|
break;
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
user_error($ex, E_USER_WARNING);
|
|
|
|
} catch (Error $err) {
|
|
|
|
user_error($err, E_USER_WARNING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @param mixed $args
|
|
|
|
*/
|
|
|
|
function chain_hooks_callback(string $hook, Closure $callback, &...$args): void {
|
2021-02-08 13:14:48 +00:00
|
|
|
$method = strtolower($hook);
|
|
|
|
|
|
|
|
foreach ($this->get_hooks($hook) as $plugin) {
|
|
|
|
//Debug::log("invoking: " . get_class($plugin) . "->$hook()", Debug::$LOG_VERBOSE);
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ($callback($plugin->$method(...$args), $plugin))
|
|
|
|
break;
|
2021-02-08 11:24:45 +00:00
|
|
|
} catch (Exception $ex) {
|
|
|
|
user_error($ex, E_USER_WARNING);
|
|
|
|
} catch (Error $err) {
|
|
|
|
user_error($err, E_USER_WARNING);
|
|
|
|
}
|
2012-12-23 12:15:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function add_hook(string $type, Plugin $sender, int $priority = 50): void {
|
2019-08-15 12:34:09 +00:00
|
|
|
$priority = (int) $priority;
|
|
|
|
|
2021-02-08 16:16:53 +00:00
|
|
|
if (!method_exists($sender, strtolower($type))) {
|
|
|
|
user_error(
|
|
|
|
sprintf("Plugin %s tried to register a hook without implementation: %s",
|
|
|
|
get_class($sender), $type),
|
|
|
|
E_USER_WARNING
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-05 20:41:32 +00:00
|
|
|
if (empty($this->hooks[$type])) {
|
2019-08-15 12:34:09 +00:00
|
|
|
$this->hooks[$type] = [];
|
|
|
|
}
|
|
|
|
|
2021-02-05 20:41:32 +00:00
|
|
|
if (empty($this->hooks[$type][$priority])) {
|
2019-08-15 12:34:09 +00:00
|
|
|
$this->hooks[$type][$priority] = [];
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
|
|
|
|
2019-08-15 12:34:09 +00:00
|
|
|
array_push($this->hooks[$type][$priority], $sender);
|
|
|
|
ksort($this->hooks[$type]);
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function del_hook(string $type, Plugin $sender): void {
|
2012-12-23 10:52:18 +00:00
|
|
|
if (is_array($this->hooks[$type])) {
|
2019-08-15 12:34:09 +00:00
|
|
|
foreach (array_keys($this->hooks[$type]) as $prio) {
|
|
|
|
$key = array_search($sender, $this->hooks[$type][$prio]);
|
|
|
|
|
2020-09-17 16:02:27 +00:00
|
|
|
if ($key !== false) {
|
2019-08-15 12:34:09 +00:00
|
|
|
unset($this->hooks[$type][$prio][$key]);
|
|
|
|
}
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @return array<int, Plugin>
|
|
|
|
*/
|
2021-02-08 18:38:03 +00:00
|
|
|
function get_hooks(string $type) {
|
2012-12-24 09:45:34 +00:00
|
|
|
if (isset($this->hooks[$type])) {
|
2019-08-15 12:34:09 +00:00
|
|
|
$tmp = [];
|
|
|
|
|
|
|
|
foreach (array_keys($this->hooks[$type]) as $prio) {
|
|
|
|
$tmp = array_merge($tmp, $this->hooks[$type][$prio]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $tmp;
|
2012-12-24 09:45:34 +00:00
|
|
|
}
|
2021-11-12 00:06:00 +00:00
|
|
|
return [];
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
2021-11-12 00:06:00 +00:00
|
|
|
function load_all(int $kind, int $owner_uid = null, bool $skip_init = false): void {
|
2015-06-05 14:54:52 +00:00
|
|
|
|
2015-06-05 15:10:17 +00:00
|
|
|
$plugins = array_merge(glob("plugins/*"), glob("plugins.local/*"));
|
|
|
|
$plugins = array_filter($plugins, "is_dir");
|
|
|
|
$plugins = array_map("basename", $plugins);
|
2015-06-05 14:54:52 +00:00
|
|
|
|
|
|
|
asort($plugins);
|
|
|
|
|
2015-10-08 14:02:32 +00:00
|
|
|
$this->load(join(",", $plugins), $kind, $owner_uid, $skip_init);
|
2012-12-24 11:39:42 +00:00
|
|
|
}
|
2012-12-23 10:52:18 +00:00
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function load(string $classlist, int $kind, int $owner_uid = null, bool $skip_init = false): void {
|
2012-12-23 10:52:18 +00:00
|
|
|
$plugins = explode(",", $classlist);
|
|
|
|
|
2012-12-27 12:55:25 +00:00
|
|
|
$this->owner_uid = (int) $owner_uid;
|
|
|
|
|
2012-12-23 10:52:18 +00:00
|
|
|
foreach ($plugins as $class) {
|
|
|
|
$class = trim($class);
|
2020-09-14 16:46:52 +00:00
|
|
|
$class_file = strtolower(basename(clean($class)));
|
2013-04-16 16:20:38 +00:00
|
|
|
|
2015-06-05 14:54:52 +00:00
|
|
|
// try system plugin directory first
|
2021-03-02 10:38:03 +00:00
|
|
|
$file = dirname(__DIR__) . "/plugins/$class_file/init.php";
|
2013-04-16 16:20:38 +00:00
|
|
|
|
2015-06-05 14:54:52 +00:00
|
|
|
if (!file_exists($file)) {
|
2021-03-02 10:38:03 +00:00
|
|
|
$file = dirname(__DIR__) . "/plugins.local/$class_file/init.php";
|
|
|
|
|
|
|
|
if (!file_exists($file))
|
|
|
|
continue;
|
2015-06-05 14:54:52 +00:00
|
|
|
}
|
2012-12-23 10:52:18 +00:00
|
|
|
|
2012-12-24 20:45:10 +00:00
|
|
|
if (!isset($this->plugins[$class])) {
|
2021-02-08 09:14:12 +00:00
|
|
|
try {
|
2021-11-01 20:31:42 +00:00
|
|
|
require_once $file;
|
2021-02-08 09:14:12 +00:00
|
|
|
} catch (Error $err) {
|
|
|
|
user_error($err, E_USER_WARNING);
|
|
|
|
continue;
|
|
|
|
}
|
2012-12-23 10:52:18 +00:00
|
|
|
|
2012-12-24 20:45:10 +00:00
|
|
|
if (class_exists($class) && is_subclass_of($class, "Plugin")) {
|
2018-08-07 11:36:45 +00:00
|
|
|
|
2012-12-24 20:45:10 +00:00
|
|
|
$plugin = new $class($this);
|
2013-04-19 13:26:22 +00:00
|
|
|
$plugin_api = $plugin->api_version();
|
|
|
|
|
2020-09-22 11:54:15 +00:00
|
|
|
if ($plugin_api < self::API_VERSION) {
|
|
|
|
user_error("Plugin $class is not compatible with current API version (need: " . self::API_VERSION . ", got: $plugin_api)", E_USER_WARNING);
|
2013-04-19 13:26:22 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-03-01 11:25:24 +00:00
|
|
|
if (file_exists(dirname($file) . "/locale")) {
|
|
|
|
_bindtextdomain($class, dirname($file) . "/locale");
|
|
|
|
_bind_textdomain_codeset($class, "UTF-8");
|
|
|
|
}
|
|
|
|
|
2021-02-08 09:10:25 +00:00
|
|
|
try {
|
|
|
|
switch ($kind) {
|
|
|
|
case $this::KIND_SYSTEM:
|
|
|
|
if ($this->is_system($plugin)) {
|
|
|
|
if (!$skip_init) $plugin->init($this);
|
|
|
|
$this->register_plugin($class, $plugin);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case $this::KIND_USER:
|
|
|
|
if (!$this->is_system($plugin)) {
|
|
|
|
if (!$skip_init) $plugin->init($this);
|
|
|
|
$this->register_plugin($class, $plugin);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case $this::KIND_ALL:
|
|
|
|
if (!$skip_init) $plugin->init($this);
|
|
|
|
$this->register_plugin($class, $plugin);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
user_error($ex, E_USER_WARNING);
|
|
|
|
} catch (Error $err) {
|
|
|
|
user_error($err, E_USER_WARNING);
|
2012-12-25 06:02:08 +00:00
|
|
|
}
|
2012-12-24 20:45:10 +00:00
|
|
|
}
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-15 05:32:06 +00:00
|
|
|
|
|
|
|
$this->load_data();
|
2012-12-23 10:52:18 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function is_system(Plugin $plugin): bool {
|
2012-12-25 06:02:08 +00:00
|
|
|
$about = $plugin->about();
|
2012-12-24 20:45:10 +00:00
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
return ($about[3] ?? false) === true;
|
2012-12-24 20:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// only system plugins are allowed to modify routing
|
2021-11-12 00:06:00 +00:00
|
|
|
function add_handler(string $handler, string $method, Plugin $sender): void {
|
2012-12-23 19:36:07 +00:00
|
|
|
$handler = str_replace("-", "_", strtolower($handler));
|
2012-12-23 19:05:51 +00:00
|
|
|
$method = strtolower($method);
|
|
|
|
|
2012-12-24 20:45:10 +00:00
|
|
|
if ($this->is_system($sender)) {
|
2021-03-15 20:20:38 +00:00
|
|
|
if (!isset($this->handlers[$handler])) {
|
2021-11-12 00:06:00 +00:00
|
|
|
$this->handlers[$handler] = [];
|
2012-12-24 20:45:10 +00:00
|
|
|
}
|
2012-12-23 19:05:51 +00:00
|
|
|
|
2012-12-24 20:45:10 +00:00
|
|
|
$this->handlers[$handler][$method] = $sender;
|
|
|
|
}
|
2012-12-23 19:05:51 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function del_handler(string $handler, string $method, Plugin $sender): void {
|
2012-12-23 19:36:07 +00:00
|
|
|
$handler = str_replace("-", "_", strtolower($handler));
|
2012-12-23 19:05:51 +00:00
|
|
|
$method = strtolower($method);
|
|
|
|
|
2012-12-24 20:45:10 +00:00
|
|
|
if ($this->is_system($sender)) {
|
|
|
|
unset($this->handlers[$handler][$method]);
|
|
|
|
}
|
2012-12-23 19:05:51 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @return false|Plugin false if the handler couldn't be found, otherwise the Plugin/handler
|
|
|
|
*/
|
|
|
|
function lookup_handler(string $handler, string $method) {
|
2012-12-23 19:36:07 +00:00
|
|
|
$handler = str_replace("-", "_", strtolower($handler));
|
2012-12-23 19:05:51 +00:00
|
|
|
$method = strtolower($method);
|
|
|
|
|
2021-02-05 20:41:32 +00:00
|
|
|
if (isset($this->handlers[$handler])) {
|
2012-12-23 19:36:07 +00:00
|
|
|
if (isset($this->handlers[$handler]["*"])) {
|
|
|
|
return $this->handlers[$handler]["*"];
|
|
|
|
} else {
|
|
|
|
return $this->handlers[$handler][$method];
|
|
|
|
}
|
2012-12-23 19:05:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-24 05:52:15 +00:00
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function add_command(string $command, string $description, Plugin $sender, string $suffix = "", string $arghelp = ""): void {
|
2013-03-21 10:48:47 +00:00
|
|
|
$command = str_replace("-", "_", strtolower($command));
|
2012-12-24 05:52:15 +00:00
|
|
|
|
2012-12-25 06:02:08 +00:00
|
|
|
$this->commands[$command] = array("description" => $description,
|
2013-03-28 14:37:36 +00:00
|
|
|
"suffix" => $suffix,
|
|
|
|
"arghelp" => $arghelp,
|
2012-12-25 06:02:08 +00:00
|
|
|
"class" => $sender);
|
2012-12-24 05:52:15 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function del_command(string $command): void {
|
2012-12-24 05:52:15 +00:00
|
|
|
$command = "-" . strtolower($command);
|
|
|
|
|
2012-12-25 06:02:08 +00:00
|
|
|
unset($this->commands[$command]);
|
2012-12-24 05:52:15 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @return false|Plugin false if the command couldn't be found, otherwise the registered Plugin
|
|
|
|
*/
|
|
|
|
function lookup_command(string $command) {
|
2012-12-24 05:52:15 +00:00
|
|
|
$command = "-" . strtolower($command);
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
if (array_key_exists($command, $this->commands) && is_array($this->commands[$command])) {
|
2012-12-24 05:52:15 +00:00
|
|
|
return $this->commands[$command]["class"];
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/** @return array<string, array{'description': string, 'suffix': string, 'arghelp': string, 'class': Plugin}>> command type -> details array */
|
2012-12-24 05:52:15 +00:00
|
|
|
function get_commands() {
|
|
|
|
return $this->commands;
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @param array<string, mixed> $args
|
|
|
|
*/
|
|
|
|
function run_commands(array $args): void {
|
2012-12-24 05:52:15 +00:00
|
|
|
foreach ($this->get_commands() as $command => $data) {
|
2013-03-21 10:48:47 +00:00
|
|
|
if (isset($args[$command])) {
|
2012-12-24 05:52:15 +00:00
|
|
|
$command = str_replace("-", "", $command);
|
|
|
|
$data["class"]->$command($args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
private function load_data(): void {
|
2021-01-15 05:35:05 +00:00
|
|
|
if ($this->owner_uid && !$this->data_loaded && get_schema_version() > 100) {
|
2017-12-02 08:25:43 +00:00
|
|
|
$sth = $this->pdo->prepare("SELECT name, content FROM ttrss_plugin_storage
|
|
|
|
WHERE owner_uid = ?");
|
|
|
|
$sth->execute([$this->owner_uid]);
|
2012-12-27 12:55:25 +00:00
|
|
|
|
2017-12-02 08:25:43 +00:00
|
|
|
while ($line = $sth->fetch()) {
|
2012-12-27 12:55:25 +00:00
|
|
|
$this->storage[$line["name"]] = unserialize($line["content"]);
|
|
|
|
}
|
2021-01-15 05:32:06 +00:00
|
|
|
|
|
|
|
$this->data_loaded = true;
|
2012-12-27 12:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
private function save_data(string $plugin): void {
|
2012-12-27 12:55:25 +00:00
|
|
|
if ($this->owner_uid) {
|
|
|
|
|
2020-03-10 05:14:00 +00:00
|
|
|
if (!$this->pdo_data)
|
|
|
|
$this->pdo_data = Db::instance()->pdo_connect();
|
|
|
|
|
|
|
|
$this->pdo_data->beginTransaction();
|
|
|
|
|
|
|
|
$sth = $this->pdo_data->prepare("SELECT id FROM ttrss_plugin_storage WHERE
|
2017-12-02 08:25:43 +00:00
|
|
|
owner_uid= ? AND name = ?");
|
|
|
|
$sth->execute([$this->owner_uid, $plugin]);
|
2012-12-27 12:55:25 +00:00
|
|
|
|
|
|
|
if (!isset($this->storage[$plugin]))
|
2021-11-12 00:06:00 +00:00
|
|
|
$this->storage[$plugin] = [];
|
2012-12-27 12:55:25 +00:00
|
|
|
|
2017-12-02 08:31:02 +00:00
|
|
|
$content = serialize($this->storage[$plugin]);
|
2012-12-27 12:55:25 +00:00
|
|
|
|
2017-12-02 08:25:43 +00:00
|
|
|
if ($sth->fetch()) {
|
2020-03-10 05:14:00 +00:00
|
|
|
$sth = $this->pdo_data->prepare("UPDATE ttrss_plugin_storage SET content = ?
|
2017-12-02 08:25:43 +00:00
|
|
|
WHERE owner_uid= ? AND name = ?");
|
2021-02-06 14:38:24 +00:00
|
|
|
$sth->execute([$content, $this->owner_uid, $plugin]);
|
2012-12-27 12:55:25 +00:00
|
|
|
|
|
|
|
} else {
|
2020-03-10 05:14:00 +00:00
|
|
|
$sth = $this->pdo_data->prepare("INSERT INTO ttrss_plugin_storage
|
2012-12-27 12:55:25 +00:00
|
|
|
(name,owner_uid,content) VALUES
|
2017-12-02 08:25:43 +00:00
|
|
|
(?, ?, ?)");
|
2021-02-06 14:38:24 +00:00
|
|
|
$sth->execute([$plugin, $this->owner_uid, $content]);
|
2012-12-27 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2020-03-10 05:14:00 +00:00
|
|
|
$this->pdo_data->commit();
|
2012-12-27 12:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* same as set(), but sets data to current preference profile
|
|
|
|
*
|
|
|
|
* @param mixed $value
|
|
|
|
*/
|
|
|
|
function profile_set(Plugin $sender, string $name, $value): void {
|
2021-04-09 11:01:30 +00:00
|
|
|
$profile_id = $_SESSION["profile"] ?? null;
|
|
|
|
|
|
|
|
if ($profile_id) {
|
|
|
|
$idx = get_class($sender);
|
|
|
|
|
|
|
|
if (!isset($this->storage[$idx])) {
|
|
|
|
$this->storage[$idx] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($this->storage[$idx][$profile_id])) {
|
|
|
|
$this->storage[$idx][$profile_id] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->storage[$idx][$profile_id][$name] = $value;
|
|
|
|
|
|
|
|
$this->save_data(get_class($sender));
|
|
|
|
} else {
|
2021-11-12 00:06:00 +00:00
|
|
|
$this->set($sender, $name, $value);
|
2021-04-09 11:01:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @param mixed $value
|
|
|
|
*/
|
|
|
|
function set(Plugin $sender, string $name, $value): void {
|
2012-12-27 12:55:25 +00:00
|
|
|
$idx = get_class($sender);
|
|
|
|
|
|
|
|
if (!isset($this->storage[$idx]))
|
2021-11-12 00:06:00 +00:00
|
|
|
$this->storage[$idx] = [];
|
2012-12-27 12:55:25 +00:00
|
|
|
|
|
|
|
$this->storage[$idx][$name] = $value;
|
|
|
|
|
2021-03-07 12:21:31 +00:00
|
|
|
$this->save_data(get_class($sender));
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @param array<int|string, mixed> $params
|
|
|
|
*/
|
|
|
|
function set_array(Plugin $sender, array $params): void {
|
2021-03-07 12:21:31 +00:00
|
|
|
$idx = get_class($sender);
|
|
|
|
|
|
|
|
if (!isset($this->storage[$idx]))
|
2021-11-12 00:06:00 +00:00
|
|
|
$this->storage[$idx] = [];
|
2021-03-07 12:21:31 +00:00
|
|
|
|
|
|
|
foreach ($params as $name => $value)
|
|
|
|
$this->storage[$idx][$name] = $value;
|
|
|
|
|
|
|
|
$this->save_data(get_class($sender));
|
2012-12-27 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* same as get(), but sets data to current preference profile
|
|
|
|
*
|
|
|
|
* @param mixed $default_value
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2021-04-09 11:01:30 +00:00
|
|
|
function profile_get(Plugin $sender, string $name, $default_value = false) {
|
|
|
|
$profile_id = $_SESSION["profile"] ?? null;
|
|
|
|
|
|
|
|
if ($profile_id) {
|
|
|
|
$idx = get_class($sender);
|
|
|
|
|
|
|
|
$this->load_data();
|
|
|
|
|
|
|
|
if (isset($this->storage[$idx][$profile_id][$name])) {
|
|
|
|
return $this->storage[$idx][$profile_id][$name];
|
|
|
|
} else {
|
|
|
|
return $default_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return $this->get($sender, $name, $default_value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @param mixed $default_value
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2021-02-08 18:38:03 +00:00
|
|
|
function get(Plugin $sender, string $name, $default_value = false) {
|
2012-12-27 12:55:25 +00:00
|
|
|
$idx = get_class($sender);
|
|
|
|
|
2021-01-15 05:32:06 +00:00
|
|
|
$this->load_data();
|
|
|
|
|
2012-12-27 12:55:25 +00:00
|
|
|
if (isset($this->storage[$idx][$name])) {
|
|
|
|
return $this->storage[$idx][$name];
|
|
|
|
} else {
|
|
|
|
return $default_value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @param array<int|string, mixed> $default_value
|
|
|
|
* @return array<int|string, mixed>
|
|
|
|
*/
|
2021-02-26 12:33:59 +00:00
|
|
|
function get_array(Plugin $sender, string $name, array $default_value = []) {
|
|
|
|
$tmp = $this->get($sender, $name);
|
|
|
|
|
|
|
|
if (!is_array($tmp)) $tmp = $default_value;
|
|
|
|
|
|
|
|
return $tmp;
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @return array<string, mixed>
|
|
|
|
*/
|
|
|
|
function get_all(Plugin $sender) {
|
2012-12-27 12:55:25 +00:00
|
|
|
$idx = get_class($sender);
|
|
|
|
|
2021-02-05 20:41:32 +00:00
|
|
|
return $this->storage[$idx] ?? [];
|
2012-12-27 12:55:25 +00:00
|
|
|
}
|
2012-12-27 15:20:12 +00:00
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function clear_data(Plugin $sender): void {
|
2012-12-27 15:20:12 +00:00
|
|
|
if ($this->owner_uid) {
|
|
|
|
$idx = get_class($sender);
|
|
|
|
|
|
|
|
unset($this->storage[$idx]);
|
|
|
|
|
2017-12-02 08:25:43 +00:00
|
|
|
$sth = $this->pdo->prepare("DELETE FROM ttrss_plugin_storage WHERE name = ?
|
|
|
|
AND owner_uid = ?");
|
|
|
|
$sth->execute([$idx, $this->owner_uid]);
|
2012-12-27 15:20:12 +00:00
|
|
|
}
|
|
|
|
}
|
2013-02-26 15:30:19 +00:00
|
|
|
|
2013-03-27 12:14:27 +00:00
|
|
|
// Plugin feed functions are *EXPERIMENTAL*!
|
|
|
|
|
|
|
|
// cat_id: only -1 is supported (Special)
|
2021-11-12 00:06:00 +00:00
|
|
|
function add_feed(int $cat_id, string $title, string $icon, Plugin $sender): int {
|
2021-02-09 07:20:58 +00:00
|
|
|
|
|
|
|
if (empty($this->feeds[$cat_id]))
|
|
|
|
$this->feeds[$cat_id] = [];
|
2013-03-27 12:14:27 +00:00
|
|
|
|
|
|
|
$id = count($this->feeds[$cat_id]);
|
|
|
|
|
|
|
|
array_push($this->feeds[$cat_id],
|
2021-02-09 07:20:58 +00:00
|
|
|
['id' => $id, 'title' => $title, 'sender' => $sender, 'icon' => $icon]);
|
2013-03-27 12:14:27 +00:00
|
|
|
|
|
|
|
return $id;
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @return array<int, array{'id': int, 'title': string, 'sender': Plugin, 'icon': string}>
|
|
|
|
*/
|
2021-02-08 18:38:03 +00:00
|
|
|
function get_feeds(int $cat_id) {
|
2021-02-05 20:41:32 +00:00
|
|
|
return $this->feeds[$cat_id] ?? [];
|
2013-03-27 12:14:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// convert feed_id (e.g. -129) to pfeed_id first
|
2021-11-12 00:06:00 +00:00
|
|
|
function get_feed_handler(int $pfeed_id): ?Plugin {
|
2013-03-27 12:14:27 +00:00
|
|
|
foreach ($this->feeds as $cat) {
|
|
|
|
foreach ($cat as $feed) {
|
|
|
|
if ($feed['id'] == $pfeed_id) {
|
|
|
|
return $feed['sender'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-12 00:06:00 +00:00
|
|
|
return null;
|
2013-03-27 12:14:27 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
static function pfeed_to_feed_id(int $pfeed): int {
|
2021-02-08 18:38:03 +00:00
|
|
|
return PLUGIN_FEED_BASE_INDEX - 1 - abs($pfeed);
|
2013-03-27 12:14:27 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
static function feed_to_pfeed_id(int $feed): int {
|
2013-03-27 12:14:27 +00:00
|
|
|
return PLUGIN_FEED_BASE_INDEX - 1 + abs($feed);
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function add_api_method(string $name, Plugin $sender): void {
|
2013-04-12 04:18:43 +00:00
|
|
|
if ($this->is_system($sender)) {
|
|
|
|
$this->api_methods[strtolower($name)] = $sender;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function get_api_method(string $name): ?Plugin {
|
|
|
|
return $this->api_methods[$name] ?? null;
|
2013-04-12 04:18:43 +00:00
|
|
|
}
|
2015-08-11 20:28:41 +00:00
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function add_filter_action(Plugin $sender, string $action_name, string $action_desc): void {
|
2015-08-11 20:28:41 +00:00
|
|
|
$sender_class = get_class($sender);
|
|
|
|
|
|
|
|
if (!isset($this->plugin_actions[$sender_class]))
|
2021-11-12 00:06:00 +00:00
|
|
|
$this->plugin_actions[$sender_class] = [];
|
2015-08-11 20:28:41 +00:00
|
|
|
|
|
|
|
array_push($this->plugin_actions[$sender_class],
|
|
|
|
array("action" => $action_name, "description" => $action_desc, "sender" => $sender));
|
|
|
|
}
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* @return array<string, array<int, array{'action': string, 'description': string, 'sender': Plugin}>>
|
|
|
|
*/
|
2015-08-11 20:28:41 +00:00
|
|
|
function get_filter_actions() {
|
|
|
|
return $this->plugin_actions;
|
|
|
|
}
|
2019-08-13 13:40:21 +00:00
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function get_owner_uid(): ?int {
|
2019-08-13 13:40:21 +00:00
|
|
|
return $this->owner_uid;
|
|
|
|
}
|
2019-08-15 17:23:45 +00:00
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* handled by classes/pluginhandler.php, requires valid session
|
|
|
|
*
|
|
|
|
* @param array<int|string, mixed> $params
|
|
|
|
*/
|
|
|
|
function get_method_url(Plugin $sender, string $method, array $params = []): string {
|
2021-03-02 05:16:41 +00:00
|
|
|
return Config::get_self_url() . "/backend.php?" .
|
2019-08-15 17:23:45 +00:00
|
|
|
http_build_query(
|
|
|
|
array_merge(
|
|
|
|
[
|
|
|
|
"op" => "pluginhandler",
|
|
|
|
"plugin" => strtolower(get_class($sender)),
|
2019-08-15 17:27:21 +00:00
|
|
|
"method" => $method
|
2019-08-15 17:23:45 +00:00
|
|
|
],
|
|
|
|
$params));
|
|
|
|
}
|
|
|
|
|
2021-02-17 18:44:21 +00:00
|
|
|
// shortcut syntax (disabled for now)
|
|
|
|
/* function get_method_url(Plugin $sender, string $method, $params) {
|
2021-03-02 05:16:41 +00:00
|
|
|
return Config::get_self_url() . "/backend.php?" .
|
2021-02-17 18:44:21 +00:00
|
|
|
http_build_query(
|
|
|
|
array_merge(
|
|
|
|
[
|
|
|
|
"op" => strtolower(get_class($sender) . self::PUBLIC_METHOD_DELIMITER . $method),
|
|
|
|
],
|
|
|
|
$params));
|
|
|
|
} */
|
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
/**
|
|
|
|
* WARNING: endpoint in public.php, exposed to unauthenticated users
|
|
|
|
*
|
|
|
|
* @param array<int|string, mixed> $params
|
|
|
|
*/
|
|
|
|
function get_public_method_url(Plugin $sender, string $method, array $params = []): ?string {
|
2019-08-15 17:23:45 +00:00
|
|
|
if ($sender->is_public_method($method)) {
|
2021-03-02 05:16:41 +00:00
|
|
|
return Config::get_self_url() . "/public.php?" .
|
2019-08-15 17:23:45 +00:00
|
|
|
http_build_query(
|
|
|
|
array_merge(
|
|
|
|
[
|
2021-02-17 18:44:21 +00:00
|
|
|
"op" => strtolower(get_class($sender) . self::PUBLIC_METHOD_DELIMITER . $method),
|
2019-08-15 17:23:45 +00:00
|
|
|
],
|
|
|
|
$params));
|
|
|
|
}
|
2021-11-12 00:06:00 +00:00
|
|
|
user_error("get_public_method_url: requested method '$method' of '" . get_class($sender) . "' is private.");
|
|
|
|
return null;
|
2019-08-15 17:23:45 +00:00
|
|
|
}
|
2021-03-03 16:35:11 +00:00
|
|
|
|
2021-11-12 00:06:00 +00:00
|
|
|
function get_plugin_dir(Plugin $plugin): string {
|
2021-03-03 16:35:11 +00:00
|
|
|
$ref = new ReflectionClass(get_class($plugin));
|
2021-03-03 20:38:52 +00:00
|
|
|
return dirname($ref->getFileName());
|
|
|
|
}
|
2021-03-03 16:35:11 +00:00
|
|
|
|
2021-03-03 20:38:52 +00:00
|
|
|
// TODO: use get_plugin_dir()
|
2021-11-12 00:06:00 +00:00
|
|
|
function is_local(Plugin $plugin): bool {
|
2021-03-03 20:38:52 +00:00
|
|
|
$ref = new ReflectionClass(get_class($plugin));
|
2021-03-03 16:35:11 +00:00
|
|
|
return basename(dirname(dirname($ref->getFileName()))) == "plugins.local";
|
|
|
|
}
|
2017-09-25 00:37:49 +00:00
|
|
|
}
|