mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-26 19:36:52 +03:00
36 lines
874 B
PHP
36 lines
874 B
PHP
|
<?php
|
||
|
|
||
|
class OglafBridge extends FeedExpander
|
||
|
{
|
||
|
const NAME = 'Oglaf';
|
||
|
const URI = 'https://www.oglaf.com/';
|
||
|
const DESCRIPTION = 'Fetch the entire comic image';
|
||
|
const MAINTAINER = 'tillcash';
|
||
|
const PARAMETERS = [
|
||
|
[
|
||
|
'limit' => [
|
||
|
'name' => 'limit (max 20)',
|
||
|
'type' => 'number',
|
||
|
'defaultValue' => 10,
|
||
|
'required' => true,
|
||
|
]
|
||
|
]
|
||
|
];
|
||
|
|
||
|
public function collectData()
|
||
|
{
|
||
|
$url = self::URI . 'feeds/rss/';
|
||
|
$limit = min(20, $this->getInput('limit'));
|
||
|
$this->collectExpandableDatas($url, $limit);
|
||
|
}
|
||
|
|
||
|
protected function parseItem($item)
|
||
|
{
|
||
|
$html = getSimpleHTMLDOMCached($item['uri']);
|
||
|
$comicImage = $html->find('img[id="strip"]', 0);
|
||
|
$item['content'] = $comicImage;
|
||
|
|
||
|
return $item;
|
||
|
}
|
||
|
}
|