mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-26 15:51:28 +00:00
add af_elreg
This commit is contained in:
42
plugins/af_elreg/init.php
Normal file
42
plugins/af_elreg/init.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
class Af_ElReg extends Plugin {
|
||||
|
||||
private $host;
|
||||
|
||||
function about() {
|
||||
return array(1.0,
|
||||
"Fetch content of The Register feeds",
|
||||
"fox");
|
||||
}
|
||||
|
||||
function init($host) {
|
||||
$this->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;
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user