diff --git a/plugins/af_natgeo/init.php b/plugins/af_natgeo/init.php new file mode 100644 index 000000000..7dc7116dd --- /dev/null +++ b/plugins/af_natgeo/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"], "nationalgeographic.com") !== FALSE) { + if (strpos($article["plugin_data"], "natgeo,$owner_uid:") === FALSE) { + + $doc = new DOMDocument(); + @$doc->loadHTML(fetch_file_contents($article["link"])); + + $basenode = false; + + if ($doc) { + $basenode = $doc->getElementById("content_mainA"); + + if ($basenode) { + $article["content"] = $doc->saveXML($basenode); + $article["plugin_data"] = "natgeo,$owner_uid:" . $article["plugin_data"]; + } + } + } else if (isset($article["stored"]["content"])) { + $article["content"] = $article["stored"]["content"]; + } + } + + return $article; + } + + function api_version() { + return 2; + } +} +?> diff --git a/plugins/af_sciam/init.php b/plugins/af_sciam/init.php new file mode 100644 index 000000000..cb5559433 --- /dev/null +++ b/plugins/af_sciam/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"], "scientificamerican.com") !== FALSE) { + if (strpos($article["plugin_data"], "sciam,$owner_uid:") === FALSE) { + + $doc = new DOMDocument(); + @$doc->loadHTML(fetch_file_contents($article["link"])); + + $basenode = false; + + if ($doc) { + $basenode = $doc->getElementById("article_content"); + + if ($basenode) { + $article["content"] = $doc->saveXML($basenode); + $article["plugin_data"] = "sciam,$owner_uid:" . $article["plugin_data"]; + } + } + } else if (isset($article["stored"]["content"])) { + $article["content"] = $article["stored"]["content"]; + } + } + + return $article; + } + + function api_version() { + return 2; + } +} +?>