mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
This bridge allows retreival of full comic pages from the RSS feed. The comic is licensed under CC BY-NC-ND 4.0.
36 lines
895 B
PHP
Executable File
36 lines
895 B
PHP
Executable File
<?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;
|
|
}
|
|
}
|