From eb1921efeeadd07dfa887704dd645607a93a0749 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 31 Mar 2014 14:39:57 +0400 Subject: add af_habr --- plugins/af_habr/init.php | 49 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 plugins/af_habr/init.php (limited to 'plugins') diff --git a/plugins/af_habr/init.php b/plugins/af_habr/init.php new file mode 100644 index 000000000..222be6681 --- /dev/null +++ b/plugins/af_habr/init.php @@ -0,0 +1,49 @@ +host = $host; + + $host->add_hook($host::HOOK_ARTICLE_FILTER, $this); + } + + function hook_article_filter($article) { + $owner_uid = $article["owner_uid"]; + + if (strpos($article["link"], "habrahabr.ru") !== FALSE) { + if (strpos($article["plugin_data"], "af_habr,$owner_uid:") === FALSE) { + + $doc = new DOMDocument(); + @$doc->loadHTML(fetch_file_contents($article["link"])); + + $basenode = false; + + if ($doc) { + $xpath = new DOMXPath($doc); + + $basenode = $xpath->query("//div[@class='content_html_format']")->item(0); + + if ($basenode) { + $article["content"] = $doc->saveXML($basenode); + $article["plugin_data"] = "af_habr,$owner_uid:" . $article["plugin_data"]; + } + } + } else if (isset($article["stored"]["content"])) { + $article["content"] = $article["stored"]["content"]; + } + } + + return $article; + } + + function api_version() { + return 2; + } +} +?> -- cgit v1.2.3