2016-04-06 16:13:09 +02:00
|
|
|
<?php
|
2017-02-11 16:16:56 +01:00
|
|
|
class EliteDangerousGalnetBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
const MAINTAINER = 'corenting';
|
|
|
|
const NAME = 'Elite: Dangerous Galnet';
|
|
|
|
const URI = 'https://community.elitedangerous.com/galnet/';
|
|
|
|
const CACHE_TIMEOUT = 7200; // 2h
|
|
|
|
const DESCRIPTION = 'Returns the latest page of news from Galnet';
|
|
|
|
|
|
|
|
public function collectData(){
|
|
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
|
|
or returnServerError('Error while downloading the website content');
|
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach($html->find('div.article') as $element) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
2016-04-06 16:13:09 +02:00
|
|
|
|
|
|
|
$uri = $element->find('h3 a', 0)->href;
|
2017-02-11 16:16:56 +01:00
|
|
|
$uri = self::URI . substr($uri, strlen('/galnet/'));
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['uri'] = $uri;
|
2016-04-06 16:13:09 +02:00
|
|
|
|
|
|
|
$title = $element->find('h3 a', 0)->plaintext;
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['title'] = substr($title, 1); //remove the space between icon and title
|
2016-04-06 16:13:09 +02:00
|
|
|
|
|
|
|
$content = $element->find('p', -1)->innertext;
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] = $content;
|
2016-04-06 16:13:09 +02:00
|
|
|
|
|
|
|
$date = $element->find('p.small', 0)->innertext;
|
|
|
|
$article_year = substr($date, -4) - 1286; //Convert E:D date to actual date
|
|
|
|
$date = substr($date, 0, -4) . $article_year;
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['timestamp'] = strtotime($date);
|
2016-04-06 16:13:09 +02:00
|
|
|
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
}
|