From 35dfbdc573097ebd18b8d2e0194818ac04209cec Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 22 Aug 2014 15:40:41 +0400 Subject: add af_elreg --- plugins/af_elreg/init.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 plugins/af_elreg/init.php (limited to 'plugins/af_elreg/init.php') diff --git a/plugins/af_elreg/init.php b/plugins/af_elreg/init.php new file mode 100644 index 000000000..a652d25d1 --- /dev/null +++ b/plugins/af_elreg/init.php @@ -0,0 +1,42 @@ +host = $host; + + $host->add_hook($host::HOOK_ARTICLE_FILTER, $this); + } + + function hook_article_filter($article) { + if (strpos($article["link"], "theregister.co.uk") !== FALSE) { + + $doc = new DOMDocument(); + @$doc->loadHTML(fetch_file_contents($article["link"])); + + $basenode = false; + + if ($doc) { + $basenode = $doc->getElementById("body"); + + if ($basenode) { + $article["content"] = $doc->saveXML($basenode); + } + } + } + + return $article; + } + + function api_version() { + return 2; + } +} +?> -- cgit v1.2.3-54-g00ecf From 2242bb38d2e5a23e01973d079c42cc63484aeb8e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 22 Aug 2014 15:49:20 +0400 Subject: af_elreg: remove ads --- plugins/af_elreg/init.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'plugins/af_elreg/init.php') diff --git a/plugins/af_elreg/init.php b/plugins/af_elreg/init.php index a652d25d1..c8d5516ee 100644 --- a/plugins/af_elreg/init.php +++ b/plugins/af_elreg/init.php @@ -24,6 +24,14 @@ class Af_ElReg extends Plugin { $basenode = false; if ($doc) { + $xpath = new DOMXPath($doc); + + $trash = $xpath->query("//*[@class='wptl top' or @class='wptl btm']"); + + foreach ($trash as $t) { + $t->parentNode->removeChild($t); + } + $basenode = $doc->getElementById("body"); if ($basenode) { -- cgit v1.2.3-54-g00ecf