mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-07 14:47:26 +02:00
add af_comics filter for The Oatmeal
This commit is contained in:
parent
8c42b3a3bf
commit
b045da0e5e
31
plugins/af_comics/filters/af_comics_theoatmeal.php
Normal file
31
plugins/af_comics/filters/af_comics_theoatmeal.php
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
class Af_Comics_TheOatmeal extends Af_ComicFilter {
|
||||||
|
|
||||||
|
function supported() {
|
||||||
|
return array("The Oatmeal");
|
||||||
|
}
|
||||||
|
|
||||||
|
function process(&$article) {
|
||||||
|
if (str_contains($article["guid"], "theoatmeal.com")) {
|
||||||
|
$res = UrlHelper::fetch([
|
||||||
|
'url' => $article['link'],
|
||||||
|
'useragent' => 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$doc = new DOMDocument();
|
||||||
|
|
||||||
|
if ($res && $doc->loadHTML($res)) {
|
||||||
|
$xpath = new DOMXPath($doc);
|
||||||
|
$basenode = $xpath->query('//div[@id="comic"]//img')->item(0);
|
||||||
|
|
||||||
|
if ($basenode) {
|
||||||
|
$article["content"] = $doc->saveHTML($basenode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user