summaryrefslogtreecommitdiff
path: root/plugins/af_comics/filters/af_comics_whomp.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-09-21 12:25:04 +0300
committerAndrew Dolgov <[email protected]>2015-09-21 12:25:04 +0300
commit73963a21b23d7b463042311a9cd666756b4d9984 (patch)
tree037ca1098fac24e80243e1ff328cb6fa421df64a /plugins/af_comics/filters/af_comics_whomp.php
parent9a35ed6709c685a3b2759a9d20728741f67fa699 (diff)
af_comics: fix for whomp
Diffstat (limited to 'plugins/af_comics/filters/af_comics_whomp.php')
-rw-r--r--plugins/af_comics/filters/af_comics_whomp.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/af_comics/filters/af_comics_whomp.php b/plugins/af_comics/filters/af_comics_whomp.php
new file mode 100644
index 000000000..5bc6a14e7
--- /dev/null
+++ b/plugins/af_comics/filters/af_comics_whomp.php
@@ -0,0 +1,37 @@
+<?php
+class Af_Comics_Whomp extends Af_ComicFilter {
+
+ function supported() {
+ return array("Whomp!");
+ }
+
+ function process(&$article) {
+ if (strpos($article["guid"], "whompcomic.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)");
+
+ global $fetch_last_error_content;
+
+ if (!$res && $fetch_last_error_content)
+ $res = $fetch_last_error_content;
+
+ $doc = new DOMDocument();
+
+ if (@$doc->loadHTML($res)) {
+ $xpath = new DOMXPath($doc);
+ $basenode = $xpath->query('//img[@id="cc-comic"]')->item(0);
+
+ if ($basenode) {
+ $article["content"] = $doc->saveXML($basenode);
+ }
+ }
+
+ return true;
+ }
+
+ return false;
+ }
+}
+?>