This commit is contained in:
Alex Besogonov 2025-02-14 14:11:44 +00:00 committed by GitHub
commit c41ccb9c85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

35
bridges/ScarletComicBridge.php Executable file
View File

@ -0,0 +1,35 @@
<?php
class ScarletComicBridge extends FeedExpander
{
const NAME = 'Scarlet Comic';
const URI = 'https://www.sandraandwoo.com';
const DESCRIPTION = 'Fetch the entire comic page';
const MAINTAINER = 'Cyberax';
const PARAMETERS = [
[
'limit' => [
'name' => 'limit (max 5)',
'type' => 'number',
'defaultValue' => 5,
'required' => true,
]
]
];
public function collectData()
{
$url = self::URI . '/scarlet/feed';
$limit = min(5, $this->getInput('limit'));
$this->collectExpandableDatas($url, $limit);
}
protected function parseItem($item)
{
$html = getSimpleHTMLDOMCached($item['uri']);
$comicImage = $html->find('div[id="spliced-comic"]', 0);
$item['content'] = $comicImage;
return $item;
}
}