From: Dave Z Date: Wed, 7 Feb 2018 06:52:36 +0000 (+0000) Subject: af_comics: Allow subscribing to GoComics URLs via page (only this time, *actually... X-Git-Tag: 18.8~73^2~1 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=fc756975abf749fb927550555b533040e94ac6f7;p=tt-rss.git af_comics: Allow subscribing to GoComics URLs via page (only this time, *actually allow* it). --- diff --git a/plugins/af_comics/init.php b/plugins/af_comics/init.php index 66c48fcf..255ae723 100755 --- a/plugins/af_comics/init.php +++ b/plugins/af_comics/init.php @@ -14,6 +14,7 @@ class Af_Comics extends Plugin { $this->host = $host; $host->add_hook($host::HOOK_FETCH_FEED, $this); + $host->add_hook($host::HOOK_SUBSCRIBE_FEED, $this); $host->add_hook($host::HOOK_ARTICLE_FILTER, $this); $host->add_hook($host::HOOK_PREFS_TAB, $this); @@ -151,6 +152,16 @@ class Af_Comics extends Plugin { return $feed_data; } + function hook_subscribe_feed($contents, $url, $auth_login, $auth_pass) { + if ($auth_login || $auth_pass) + return $contents; + + if (preg_match('#^https?://www\.gocomics\.com/([-a-z0-9]+)$#i', $url)) + return ''; // Get is_html() to return false. + + return $contents; + } + function api_version() { return 2; }