2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
2016-02-26 19:41:35 +01:00
|
|
|
class AcrimedBridge extends RssExpander{
|
2015-11-03 23:28:44 +01:00
|
|
|
|
2015-11-03 15:36:19 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "qwertygc";
|
|
|
|
$this->name = "Acrimed Bridge";
|
|
|
|
$this->uri = "http://www.acrimed.org/";
|
|
|
|
$this->description = "Returns the newest articles.";
|
|
|
|
$this->update = "2014-05-25";
|
|
|
|
|
|
|
|
}
|
2016-02-26 19:41:35 +01:00
|
|
|
|
2015-11-03 15:36:19 +01:00
|
|
|
public function collectData(array $param){
|
2014-05-26 00:30:46 +02:00
|
|
|
|
2016-02-26 19:41:35 +01:00
|
|
|
parent::collectExpandableDatas($param, "http://www.acrimed.org/spip.php?page=backend");
|
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
|
|
|
|
2016-02-26 19:41:35 +01:00
|
|
|
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 = file_get_html($newsItem->link);
|
|
|
|
$article = $hs->sanitize($articlePage->find('article.article1', 0)->innertext);
|
|
|
|
$article = HTMLSanitizer::defaultImageSrcTo($article, "http://www.acrimed.org/");
|
|
|
|
|
|
|
|
$item->content = $article;
|
|
|
|
|
|
|
|
|
|
|
|
return $item;
|
|
|
|
|
|
|
|
}
|
2014-05-26 00:30:46 +02:00
|
|
|
|
2015-11-04 00:05:10 +01:00
|
|
|
public function getName() {
|
|
|
|
|
|
|
|
return "Acrimed Bridge";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI() {
|
|
|
|
|
|
|
|
return "http://www.acrimed.org/";
|
|
|
|
|
|
|
|
}
|
2014-05-26 00:30:46 +02:00
|
|
|
|
|
|
|
public function getCacheDuration(){
|
2016-02-26 19:42:52 +01:00
|
|
|
return 4800; // 2 hours
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
|
|
|
}
|