[ScarletComicBridge] Add Scarlet Comic bridge

This bridge allows retreival of full comic pages from the RSS feed.
The comic is licensed under CC BY-NC-ND 4.0.
This commit is contained in:
Aleksei Besogonov 2024-11-16 17:27:33 -08:00
parent 6c86e2c1f7
commit 523b556139
No known key found for this signature in database
GPG Key ID: 4BBFA4A7A13B161F

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;
}
}