[Acrimed] Use internal RSS 2.0 parser
This commit is contained in:
parent
acde8a2cea
commit
15f24b3cf4
1 changed files with 17 additions and 31 deletions
|
@ -1,40 +1,26 @@
|
||||||
<?php
|
<?php
|
||||||
class AcrimedBridge extends FeedExpander{
|
class AcrimedBridge extends FeedExpander {
|
||||||
|
|
||||||
|
const MAINTAINER = "qwertygc";
|
||||||
|
const NAME = "Acrimed Bridge";
|
||||||
|
const URI = "http://www.acrimed.org/";
|
||||||
|
const DESCRIPTION = "Returns the newest articles.";
|
||||||
|
|
||||||
const MAINTAINER = "qwertygc";
|
public function collectData(){
|
||||||
const NAME = "Acrimed Bridge";
|
$this->collectExpandableDatas("http://www.acrimed.org/spip.php?page=backend");
|
||||||
const URI = "http://www.acrimed.org/";
|
}
|
||||||
const DESCRIPTION = "Returns the newest articles.";
|
|
||||||
|
|
||||||
public function collectData(){
|
protected function parseItem($newsItem){
|
||||||
|
$item = $this->parseRSS_2_0_Item($newsItem);
|
||||||
|
|
||||||
$this->collectExpandableDatas("http://www.acrimed.org/spip.php?page=backend");
|
$hs = new HTMLSanitizer();
|
||||||
|
$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;
|
||||||
|
}
|
||||||
protected function parseItem($newsItem) {
|
|
||||||
|
|
||||||
$hs = new HTMLSanitizer();
|
|
||||||
|
|
||||||
$namespaces = $newsItem->getNameSpaces(true);
|
|
||||||
$dc = $newsItem->children($namespaces['dc']);
|
|
||||||
|
|
||||||
$item = array();
|
|
||||||
$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(){
|
public function getCacheDuration(){
|
||||||
return 4800; // 2 hours
|
return 4800; // 2 hours
|
||||||
|
|
Loading…
Reference in a new issue