summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-08-02 10:49:00 +0400
committerAndrew Dolgov <[email protected]>2013-08-02 10:49:00 +0400
commitc309f41d2dc49535b34766107c2d31a128912cf2 (patch)
tree5c79c98a0e4618127902ad189972570b09fe549a /plugins
parent89a69f9f02408b6c9f3d9c3546816129ae139878 (diff)
add af plugins for nagional geographic and sciam
Diffstat (limited to 'plugins')
-rw-r--r--plugins/af_natgeo/init.php49
-rw-r--r--plugins/af_sciam/init.php49
2 files changed, 98 insertions, 0 deletions
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 @@
+<?php
+class Af_NatGeo extends Plugin {
+
+ private $host;
+
+ function about() {
+ return array(1.0,
+ "Fetch content of National Geographic feeds",
+ "fox");
+ }
+
+ function init($host) {
+ $this->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 @@
+<?php
+class Af_SciAm extends Plugin {
+
+ private $host;
+
+ function about() {
+ return array(1.0,
+ "Fetch content of Scientific American feeds",
+ "fox");
+ }
+
+ function init($host) {
+ $this->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;
+ }
+}
+?>