diff options
| author | Nathan Neulinger <nneul@neulinger.org> | 2025-01-05 12:27:37 -0600 |
|---|---|---|
| committer | Nathan Neulinger <nneul@neulinger.org> | 2025-01-05 12:27:37 -0600 |
| commit | ebe080dfe42c1ab0bed22b2ac8975faec052c93f (patch) | |
| tree | 23aea7d8b3dd5675bcb160095703dfd1d5f50c2e /plugins/af_comics | |
| parent | d85cfb5c56ea75e1ba6fd849461cbf898ab837a1 (diff) | |
Add processing of dumbingofage.com images
Diffstat (limited to 'plugins/af_comics')
| -rw-r--r-- | plugins/af_comics/filters/af_comics_dumbingofage.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/plugins/af_comics/filters/af_comics_dumbingofage.php b/plugins/af_comics/filters/af_comics_dumbingofage.php new file mode 100644 index 000000000..5847b9a74 --- /dev/null +++ b/plugins/af_comics/filters/af_comics_dumbingofage.php @@ -0,0 +1,33 @@ +<?php +class Af_Comics_DumbingOfAge extends Af_ComicFilter { + + function supported() { + return array("Dumbing of Age"); + } + + function process(&$article) { + if (str_contains($article["link"], "dumbingofage.com")) { + $res = UrlHelper::fetch([ + 'url' => $article['link'], + 'useragent' => 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0', + ]); + + if (!$res && UrlHelper::$fetch_last_error_content) + $res = UrlHelper::$fetch_last_error_content; + + $doc = new DOMDocument(); + + if ($res && $doc->loadHTML($res)) { + $xpath = new DOMXPath($doc); + $comic = $xpath->query('//div[@id="comic-1"]')->item(0); + if ($comic) { + $article["content"] = $doc->saveHTML($comic) . $article["content"]; + } + } + + return true; + } + + return false; + } +} |