summaryrefslogtreecommitdiff
path: root/bridges/EliteDangerousGalnetBridge.php
blob: 1afa0423af6453ed19203691a4988034526de175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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';
	const PARAMETERS = array(
		array(
			'language' => array(
				'name' => 'Language',
				'type' => 'list',
				'values' => array(
					'English' => 'en',
					'French' => 'fr',
					'German' => 'de'
				),
				'defaultValue' => 'en'
			)
		)
	);

	public function collectData(){
		$language = $this->getInput('language');
		$url = 'https://community.elitedangerous.com/';
		$url = $url . $language . '/galnet';
		$html = getSimpleHTMLDOM($url)
			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 = 'https://community.elitedangerous.com/' . $language . $uri;
			$item['uri'] = $uri;

			$item['title'] = $element->find('h3 a', 0)->plaintext;

			$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;
		}

		//Remove duplicates that sometimes show up on the website
		$this->items = array_unique($this->items, SORT_REGULAR);
	}
}