forked from blallo/rss-bridge
bba216073c
That's the source code manager job to keep this information consistent Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
class AcrimedBridge extends RssExpander{
|
|
|
|
public function loadMetadatas() {
|
|
|
|
$this->maintainer = "qwertygc";
|
|
$this->name = "Acrimed Bridge";
|
|
$this->uri = "http://www.acrimed.org/";
|
|
$this->description = "Returns the newest articles.";
|
|
|
|
}
|
|
|
|
public function collectData(array $param){
|
|
|
|
parent::collectExpandableDatas($param, "http://www.acrimed.org/spip.php?page=backend");
|
|
|
|
}
|
|
|
|
protected function parseRSSItem($newsItem) {
|
|
|
|
$hs = new HTMLSanitizer();
|
|
|
|
$namespaces = $newsItem->getNameSpaces(true);
|
|
$dc = $newsItem->children($namespaces['dc']);
|
|
|
|
$item = new Item();
|
|
$item->uri = trim($newsItem->link);
|
|
$item->title = trim($newsItem->title);
|
|
$item->timestamp = strtotime($dc->date);
|
|
|
|
$articlePage = $this->getSimpleHTMLDOM($newsItem->link);
|
|
$article = $hs->sanitize($articlePage->find('article.article1', 0)->innertext);
|
|
$article = HTMLSanitizer::defaultImageSrcTo($article, "http://www.acrimed.org/");
|
|
|
|
$item->content = $article;
|
|
|
|
|
|
return $item;
|
|
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 4800; // 2 hours
|
|
}
|
|
}
|