2013-01-23 11:54:03 +01:00
|
|
|
<?php
|
|
|
|
class Af_Buttersafe extends Plugin {
|
|
|
|
|
|
|
|
private $link;
|
|
|
|
private $host;
|
|
|
|
|
|
|
|
function about() {
|
|
|
|
return array(1.0,
|
|
|
|
"Strip unnecessary stuff from Buttersafe feeds",
|
|
|
|
"fox");
|
|
|
|
}
|
|
|
|
|
|
|
|
function init($host) {
|
|
|
|
$this->link = $host->get_link();
|
|
|
|
$this->host = $host;
|
|
|
|
|
|
|
|
$host->add_hook($host::HOOK_ARTICLE_FILTER, $this);
|
|
|
|
}
|
|
|
|
|
|
|
|
function hook_article_filter($article) {
|
|
|
|
$owner_uid = $article["owner_uid"];
|
|
|
|
|
2013-02-23 09:07:46 +01:00
|
|
|
if (strpos($article["guid"], "buttersafe.com") !== FALSE) {
|
|
|
|
if (strpos($article["plugin_data"], "buttersafe,$owner_uid:") === FALSE) {
|
2013-01-23 11:54:03 +01:00
|
|
|
|
2013-02-23 09:07:46 +01:00
|
|
|
$doc = new DOMDocument();
|
|
|
|
@$doc->loadHTML(fetch_file_contents($article["link"]));
|
2013-01-23 11:54:03 +01:00
|
|
|
|
2013-02-23 09:07:46 +01:00
|
|
|
$basenode = false;
|
2013-01-23 11:54:03 +01:00
|
|
|
|
2013-02-23 09:07:46 +01:00
|
|
|
if ($doc) {
|
|
|
|
$xpath = new DOMXPath($doc);
|
|
|
|
$entries = $xpath->query('(//img[@src])');
|
2013-01-23 11:54:03 +01:00
|
|
|
|
2013-02-23 09:07:46 +01:00
|
|
|
$matches = array();
|
2013-01-23 11:54:03 +01:00
|
|
|
|
2013-02-23 09:07:46 +01:00
|
|
|
foreach ($entries as $entry) {
|
2013-01-23 11:54:03 +01:00
|
|
|
|
2013-02-23 09:07:46 +01:00
|
|
|
if (preg_match("/(http:\/\/buttersafe.com\/comics\/\d{4}.*)/i", $entry->getAttribute("src"), $matches)) {
|
2013-01-23 11:54:03 +01:00
|
|
|
|
2013-02-23 09:07:46 +01:00
|
|
|
$basenode = $entry;
|
|
|
|
break;
|
|
|
|
}
|
2013-01-23 11:54:03 +01:00
|
|
|
}
|
|
|
|
|
2013-02-23 09:07:46 +01:00
|
|
|
if ($basenode) {
|
|
|
|
$article["content"] = $doc->saveXML($basenode, LIBXML_NOEMPTYTAG);
|
|
|
|
$article["plugin_data"] = "buttersafe,$owner_uid:" . $article["plugin_data"];
|
|
|
|
}
|
2013-01-23 11:54:03 +01:00
|
|
|
}
|
2013-02-23 09:07:46 +01:00
|
|
|
} else if (isset($article["stored"]["content"])) {
|
|
|
|
$article["content"] = $article["stored"]["content"];
|
2013-01-23 11:54:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $article;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|