]> git.wh0rd.org - tt-rss.git/blobdiff - plugins/af_pennyarcade/init.php
remove $link
[tt-rss.git] / plugins / af_pennyarcade / init.php
index ec03990626400c3cb7595002236ad8abcb4036cf..d897d85ca363edad823cde1d12517b408a3ad1c7 100644 (file)
@@ -1,17 +1,15 @@
 <?php
 class Af_PennyArcade extends Plugin {
 
-       private $link;
        private $host;
 
        function about() {
-               return array(1.0,
+               return array(1.1,
                        "Strip unnecessary stuff from PA feeds",
                        "fox");
        }
 
        function init($host) {
-               $this->link = $host->get_link();
                $this->host = $host;
 
                $host->add_hook($host::HOOK_ARTICLE_FILTER, $this);
@@ -20,36 +18,66 @@ class Af_PennyArcade extends Plugin {
        function hook_article_filter($article) {
                $owner_uid = $article["owner_uid"];
 
-               if (strpos($article["link"], "penny-arcade.com") !== FALSE && strpos($article["title"], "Comic:") !== FALSE &&
-                               strpos($article["guid"], "pennyarcade,$owner_uid:") === FALSE) {
+               if (strpos($article["link"], "penny-arcade.com") !== FALSE && strpos($article["title"], "Comic:") !== FALSE) {
+                       if (strpos($article["plugin_data"], "pennyarcade,$owner_uid:") === FALSE) {
 
-                       $doc = new DOMDocument();
-                       @$doc->loadHTML(fetch_file_contents($article["link"]));
+                               if ($debug_enabled) {
+                                       _debug("af_pennyarcade: Processing comic");
+                               }
+
+                               $doc = new DOMDocument();
+                               $doc->loadHTML(fetch_file_contents($article["link"]));
 
-                       $basenode = false;
+                               $basenode = false;
 
-                       if ($doc) {
-                               $xpath = new DOMXPath($doc);
-                               $entries = $xpath->query('(//img[@src])'); // we might also check for img[@class='strip'] I guess...
+                               if ($doc) {
+                                       $xpath = new DOMXPath($doc);
+                                       $entries = $xpath->query('(//div[@class="post comic"])');
+
+                                       foreach ($entries as $entry) {
+                                               $basenode = $entry;
+                                       }
+
+                                       if ($basenode) {
+                                               $article["content"] = $doc->saveXML($basenode);
+                                               $article["plugin_data"] = "pennyarcade,$owner_uid:" . $article["plugin_data"];
+                                       }
+                               }
+                       } else if (isset($article["stored"]["content"])) {
+                               $article["content"] = $article["stored"]["content"];
+                       }
+               }
 
-                               $matches = array();
+               if (strpos($article["link"], "penny-arcade.com") !== FALSE && strpos($article["title"], "News Post:") !== FALSE) {
+                       if (strpos($article["plugin_data"], "pennyarcade,$owner_uid:") === FALSE) {
+                               if ($debug_enabled) {
+                                       _debug("af_pennyarcade: Processing news post");
+                               }
+                               $doc = new DOMDocument();
+                               $doc->loadHTML(fetch_file_contents($article["link"]));
 
-                               foreach ($entries as $entry) {
+                               if ($doc) {
+                                       $xpath = new DOMXPath($doc);
+                                       $entries = $xpath->query('(//div[@class="post"])');
 
-                                       if (preg_match("/(http:\/\/art.penny-arcade.com\/.*)/i", $entry->getAttribute("src"), $matches)) {
+                                       $basenode = false;
 
+                                       foreach ($entries as $entry) {
                                                $basenode = $entry;
-                                               break;
                                        }
-                               }
 
-                               if ($basenode) {
-                                       $article["content"] = $doc->saveXML($basenode, LIBXML_NOEMPTYTAG);
+                                       $uninteresting = $xpath->query('(//div[@class="heading"])');
+                                       foreach ($uninteresting as $i) {
+                                               $i->parentNode->removeChild($i);
+                                       }
 
-                                       // we need to update guid with owner_uid because our local article is different from the one
-                                       // other users with this plugin disabled might get
-                                       $article["guid"] = "pennyarcade,$owner_uid:" . $article["guid"];
+                                       if ($basenode){
+                                               $article["content"] = $doc->saveXML($basenode);
+                                               $article["plugin_data"] = "pennyarcade,$owner_uid:" . $article["plugin_data"];
+                                       }
                                }
+                       } else if (isset($article["stored"]["content"])) {
+                               $article["content"] = $article["stored"]["content"];
                        }
                }