aboutsummaryrefslogtreecommitdiff
path: root/bridges/PCGWNewsBridge.php
blob: 92b80fdc2174ec08d8d014dc1cba44a98f6658bc (plain) (blame)
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
<?php
class PCGWNewsBridge extends FeedExpander {
	const MAINTAINER = 'somini';
	const NAME = 'PCGamingWiki News';
	const BASE_URI = 'https://www.pcgamingwiki.com';
	const URI = self::BASE_URI . '/wiki/PCGamingWiki:News';
	const DESCRIPTION = 'PCGW News Feed';

	public function getIcon() {
		return 'https://static.pcgamingwiki.com/favicons/pcgamingwiki.png';
	}

	public function collectData() {
		$html = getSimpleHTMLDOM($this->getURI());

		$now = strtotime('now');

		foreach($html->find('.mw-parser-output .news_li') as $element) {
			$item = array();

			$date_string = $element->find('b', 0)->innertext;
			$date = strtotime($date_string);
			if ($date > $now) {
				$date = strtotime($date_string . ' - 1 year');
			}
			$item['title'] = self::NAME . ' for ' . date('Y-m-d', $date);
			$item['content'] = $element;
			$item['uri'] = $this->getURI();
			$item['timestamp'] = $date;

			$this->items[] = $item;
		}
	}
}