2015-04-26 19:22:20 +02:00
|
|
|
<?php
|
|
|
|
class CommonDreamsBridge extends BridgeAbstract{
|
2015-11-03 23:28:44 +01:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "nyutag";
|
|
|
|
public $name = "CommonDreams Bridge";
|
|
|
|
public $uri = "http://www.commondreams.org/";
|
|
|
|
public $description = "Returns the newest articles.";
|
2016-08-02 14:43:59 +02:00
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function CommonDreamsExtractContent($url) {
|
2016-07-08 19:06:35 +02:00
|
|
|
$html3 = $this->getSimpleHTMLDOM($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;
|
2016-08-02 14:43:59 +02:00
|
|
|
}
|
2015-04-26 19:22:20 +02:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-08-02 14:41:54 +02:00
|
|
|
|
|
|
|
function CommonDreamsUrl($string) {
|
2016-08-02 14:43:59 +02:00
|
|
|
$html2 = explode(" ", $string);
|
|
|
|
$string = $html2[2] . "/node/" . $html2[0];
|
|
|
|
return $string;
|
2016-08-02 14:41:54 +02:00
|
|
|
}
|
|
|
|
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM('http://www.commondreams.org/rss.xml') or $this->returnServerError('Could not request CommonDreams.');
|
2015-04-26 19:22:20 +02:00
|
|
|
$limit = 0;
|
|
|
|
foreach($html->find('item') as $element) {
|
2016-08-02 14:43:59 +02:00
|
|
|
if($limit < 4) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$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']);
|
2016-08-02 14:43:59 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
|
|
|
}
|
2015-04-26 19:22:20 +02:00
|
|
|
}
|
2016-08-02 14:43:59 +02:00
|
|
|
}
|
2015-04-26 19:22:20 +02:00
|
|
|
}
|