Rss-Bridge/bridges/CommonDreamsBridge.php

59 lines
1.5 KiB
PHP
Raw Normal View History

2015-04-26 19:22:20 +02:00
<?php
class CommonDreamsBridge extends BridgeAbstract{
public function loadMetadatas() {
$this->maintainer = "nyutag";
$this->name = "CommonDreams Bridge";
$this->uri = "http://www.commondreams.org/";
$this->description = "Returns the newest articles.";
$this->update = "2016-08-02";
}
2015-04-26 19:22:20 +02:00
function CommonDreamsExtractContent($url) {
$html3 = $this->file_get_html($url);
2015-04-26 19:22:20 +02:00
$text = $html3->find('div[class=field--type-text-with-summary]', 0)->innertext;
2015-05-05 20:30:26 +02:00
$html3->clear();
unset ($html3);
2015-04-26 19:22:20 +02:00
return $text;
}
public function collectData(array $param){
function CommonDreamsUrl($string) {
$html2 = explode(" ", $string);
$string = $html2[2] . "/node/" . $html2[0];
return $string;
}
$html = $this->file_get_html('http://www.commondreams.org/rss.xml') or $this->returnError('Could not request CommonDreams.', 404);
2015-04-26 19:22:20 +02:00
$limit = 0;
foreach($html->find('item') as $element) {
2015-05-05 20:30:26 +02:00
if($limit < 4) {
2015-04-26 19:22:20 +02:00
$item = new \Item();
$item->title = $element->find('title', 0)->innertext;
$item->uri = CommonDreamsUrl($element->find('guid', 0)->innertext);
$item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
$item->content = $this->CommonDreamsExtractContent($item->uri);
2015-04-26 19:22:20 +02:00
$this->items[] = $item;
$limit++;
}
}
}
public function getName(){
return 'CommonDreams Bridge';
}
public function getURI(){
return 'http://www.commondreams.org/';
}
public function getCacheDuration(){
2015-05-05 20:30:26 +02:00
return 3600; // 1 hours
// return 0;
2015-04-26 19:22:20 +02:00
}
}