7621784598
Adds favicon to bridges that support it. Some sites prevent downloading favicons, those bridges are left untouched. Affected bridges: - AutoJMBridge - BandcampBridge - BlaguesDeMerdeBridge - BloombergBridge - BundesbankBridge - ChristianDailyReporterBridge - ContainerLinuxReleasesBridge - DailymotionBridge - DiceBridge - DribbbleBridge - EliteDangerousGalnetBridge - ElsevierBridge - FacebookBridge - FB2Bridge - FDroidBridge - FierPandaBridge - GooglePlusPostBridge - JapanExpoBridge - KATBridge - KernelBugTrackerBridge - LegifranceJOBridge - NotAlwaysBridge - NyaaTorrentsBridge - PinterestBridge - RadioMelodieBridge - RainbowSixSiegeBridge - SupInfoBridge - TagBoardBridge - TebeoBridge - TheTVDBBridge - WhydBridge - ZoneTelechargementBridge
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
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 getIcon() {
|
|
return 'https://community.elitedangerous.com/sites/
|
|
EDSITE_COMM/themes/bootstrap/bootstrap_community/favicon.ico';
|
|
}
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
or returnServerError('Error while downloading the website content');
|
|
|
|
foreach($html->find('div.article') as $element) {
|
|
$item = array();
|
|
|
|
$uri = $element->find('h3 a', 0)->href;
|
|
$uri = self::URI . substr($uri, strlen('/galnet/'));
|
|
$item['uri'] = $uri;
|
|
|
|
$title = $element->find('h3 a', 0)->plaintext;
|
|
$item['title'] = substr($title, 1); //remove the space between icon and title
|
|
|
|
$content = $element->find('p', -1)->innertext;
|
|
$item['content'] = $content;
|
|
|
|
$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;
|
|
$item['timestamp'] = strtotime($date);
|
|
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
}
|