mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-07 06:37:44 +02:00
Add processing of dumbingofage.com images
This commit is contained in:
parent
d85cfb5c56
commit
ebe080dfe4
33
plugins/af_comics/filters/af_comics_dumbingofage.php
Normal file
33
plugins/af_comics/filters/af_comics_dumbingofage.php
Normal file
@ -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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user