Rss-Bridge/bridges/AcrimedBridge.php

29 lines
848 B
PHP
Raw Normal View History

<?php
2016-09-04 13:47:13 +02:00
class AcrimedBridge extends FeedExpander {
2016-09-04 13:47:13 +02:00
const MAINTAINER = "qwertygc";
const NAME = "Acrimed Bridge";
const URI = "http://www.acrimed.org/";
const DESCRIPTION = "Returns the newest articles.";
2016-09-04 13:47:13 +02:00
public function collectData(){
$this->collectExpandableDatas(static::URI.'spip.php?page=backend');
2016-09-04 13:47:13 +02:00
}
2016-09-04 13:47:13 +02:00
protected function parseItem($newsItem){
$item = $this->parseRSS_2_0_Item($newsItem);
2016-09-04 13:47:13 +02:00
$hs = new HTMLSanitizer();
$articlePage = $this->getSimpleHTMLDOM($newsItem->link);
$article = $hs->sanitize($articlePage->find('article.article1', 0)->innertext);
$article = HTMLSanitizer::defaultImageSrcTo($article, static::URI);
2016-09-04 13:47:13 +02:00
$item['content'] = $article;
2016-09-04 13:47:13 +02:00
return $item;
}
public function getCacheDuration(){
2016-02-26 19:42:52 +01:00
return 4800; // 2 hours
}
}