]> git.wh0rd.org - tt-rss.git/commitdiff
af_comics: add pvponline
authorAndrew Dolgov <noreply@fakecake.org>
Fri, 14 Aug 2015 05:51:53 +0000 (08:51 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Fri, 14 Aug 2015 05:51:53 +0000 (08:51 +0300)
plugins/af_comics/filters/af_comics_pvp.php [new file with mode: 0644]

diff --git a/plugins/af_comics/filters/af_comics_pvp.php b/plugins/af_comics/filters/af_comics_pvp.php
new file mode 100644 (file)
index 0000000..2094e68
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+class Af_Comics_Pvp extends Af_ComicFilter {
+
+       function supported() {
+               return array("PvP Online");
+       }
+
+       function process(&$article) {
+               if (strpos($article["guid"], "pvponline.com") !== FALSE) {
+
+                               $res = fetch_file_contents($article["link"], false, false, false,
+                                        false, false, 0,
+                                        "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)");
+
+                               $doc = new DOMDocument();
+                               @$doc->loadHTML($res);
+
+                               if ($doc) {
+                                       $xpath = new DOMXPath($doc);
+                                       $basenode = $xpath->query('//section[@class="comic-art"]')->item(0);
+
+                                       if ($basenode) {
+                                               $article["content"] = $doc->saveXML($basenode);
+                                       }
+                               }
+
+                        return true;
+               }
+
+               return false;
+       }
+}
+?>