mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
Merge 523b556139
into b52f01505d
This commit is contained in:
commit
c41ccb9c85
35
bridges/ScarletComicBridge.php
Executable file
35
bridges/ScarletComicBridge.php
Executable 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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user