mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 15:35:55 +00:00
af_comics: add pvponline
This commit is contained in:
33
plugins/af_comics/filters/af_comics_pvp.php
Normal file
33
plugins/af_comics/filters/af_comics_pvp.php
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user