mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-26 19:36:52 +03:00
33da1476c9
This change preserves the prior behavior of fetching all items. This particular feed always has exactly 10 items.
37 lines
835 B
PHP
37 lines
835 B
PHP
<?php
|
|
class AcrimedBridge extends FeedExpander {
|
|
|
|
const MAINTAINER = 'qwertygc';
|
|
const NAME = 'Acrimed Bridge';
|
|
const URI = 'https://www.acrimed.org/';
|
|
const CACHE_TIMEOUT = 4800; //2hours
|
|
const DESCRIPTION = 'Returns the newest articles';
|
|
|
|
const PARAMETERS = [
|
|
[
|
|
'limit' => [
|
|
'name' => 'limit',
|
|
'type' => 'number',
|
|
'defaultValue' => -1,
|
|
]
|
|
]
|
|
];
|
|
|
|
public function collectData(){
|
|
$this->collectExpandableDatas(
|
|
static::URI . 'spip.php?page=backend',
|
|
$this->getInput('limit')
|
|
);
|
|
}
|
|
|
|
protected function parseItem($newsItem){
|
|
$item = parent::parseItem($newsItem);
|
|
|
|
$articlePage = getSimpleHTMLDOM($newsItem->link);
|
|
$article = sanitize($articlePage->find('article.article1', 0)->innertext);
|
|
$article = defaultLinkTo($article, static::URI);
|
|
$item['content'] = $article;
|
|
|
|
return $item;
|
|
}
|
|
}
|