summaryrefslogtreecommitdiff
path: root/bridges/GBAtempBridge.php
blob: 48a7f8515de1b04953fc9350d128c4804ccac120 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?php
class GBAtempBridge extends BridgeAbstract {

	const MAINTAINER = 'ORelio';
	const NAME = 'GBAtemp';
	const URI = 'https://gbatemp.net/';
	const DESCRIPTION = 'GBAtemp is a user friendly underground video game community.';

	const PARAMETERS = array( array(
		'type' => array(
			'name' => 'Type',
			'type' => 'list',
			'values' => array(
				'News' => 'N',
				'Reviews' => 'R',
				'Tutorials' => 'T',
				'Forum' => 'F'
			)
		)
	));

	private function buildItem($uri, $title, $author, $timestamp, $thumbnail, $content){
		$item = array();
		$item['uri'] = $uri;
		$item['title'] = $title;
		$item['author'] = $author;
		$item['timestamp'] = $timestamp;
		$item['content'] = $content;
		if (!empty($thumbnail)) {
			$item['enclosures'] = array($thumbnail);
		}
		return $item;
	}

	private function cleanupPostContent($content, $site_url){
		$content = str_replace(':arrow:', '&#x27a4;', $content);
		$content = str_replace('href="attachments/', 'href="' . $site_url . 'attachments/', $content);
		$content = stripWithDelimiters($content, '<script', '</script>');
		return $content;
	}

	private function findItemDate($item){
		$time = 0;
		$dateField = $item->find('abbr.DateTime', 0);
		if (is_object($dateField)) {
			$time = intval(
				extractFromDelimiters(
					$dateField->outertext,
					'data-time="',
					'"'
				)
			);
		} else {
			$dateField = $item->find('span.DateTime', 0);
			$time = DateTime::createFromFormat(
				'M j, Y \a\t g:i A',
				extractFromDelimiters(
					$dateField->outertext,
					'title="',
					'"'
				)
			)->getTimestamp();
		}
		return $time;
	}

	private function fetchPostContent($uri, $site_url){
		$html = getSimpleHTMLDOMCached($uri);
		if(!$html) {
			return 'Could not request GBAtemp: ' . $uri;
		}

		$content = $html->find('div.messageContent, blockquote.baseHtml', 0)->innertext;
		return $this->cleanupPostContent($content, $site_url);
	}

	public function collectData(){

		$html = getSimpleHTMLDOM(self::URI)
			or returnServerError('Could not request GBAtemp.');

		switch($this->getInput('type')) {
		case 'N':
			foreach($html->find('li[class=news_item full]') as $newsItem) {
				$url = self::URI . $newsItem->find('a', 0)->href;
				$img = $this->getURI() . $newsItem->find('img', 0)->src . '#.image';
				$time = $this->findItemDate($newsItem);
				$author = $newsItem->find('a.username', 0)->plaintext;
				$title = $newsItem->find('a', 1)->plaintext;
				$content = $this->fetchPostContent($url, self::URI);
				$this->items[] = $this->buildItem($url, $title, $author, $time, $img, $content);
				unset($newsItem); // Some items are heavy, freeing the item proactively helps saving memory
			}
			break;
		case 'R':
			foreach($html->find('li.portal_review') as $reviewItem) {
				$url = self::URI . $reviewItem->find('a', 0)->href;
				$img = $this->getURI() . extractFromDelimiters($reviewItem->find('a', 0)->style, 'image:url(', ')');
				$title = $reviewItem->find('span.review_title', 0)->plaintext;
				$content = getSimpleHTMLDOM($url)
					or returnServerError('Could not request GBAtemp: ' . $uri);
				$author = $content->find('a.username', 0)->plaintext;
				$time = $this->findItemDate($content);
				$intro = '<p><b>' . ($content->find('div#review_intro', 0)->plaintext) . '</b></p>';
				$review = $content->find('div#review_main', 0)->innertext;
				$subheader = '<p><b>' . $content->find('div.review_subheader', 0)->plaintext . '</b></p>';
				$procons = $content->find('table.review_procons', 0)->outertext;
				$scores = $content->find('table.reviewscores', 0)->outertext;
				$content = $this->cleanupPostContent($intro . $review . $subheader . $procons . $scores, self::URI);
				$this->items[] = $this->buildItem($url, $title, $author, $time, $img, $content);
				unset($reviewItem); // Free up memory
			}
			break;
		case 'T':
			foreach($html->find('li.portal-tutorial') as $tutorialItem) {
				$url = self::URI . $tutorialItem->find('a', 0)->href;
				$title = $tutorialItem->find('a', 0)->plaintext;
				$time = $this->findItemDate($tutorialItem);
				$author = $tutorialItem->find('a.username', 0)->plaintext;
				$content = $this->fetchPostContent($url, self::URI);
				$this->items[] = $this->buildItem($url, $title, $author, $time, null, $content);
				unset($tutorialItem); // Free up memory
			}
			break;
		case 'F':
			foreach($html->find('li.rc_item') as $postItem) {
				$url = self::URI . $postItem->find('a', 1)->href;
				$title = $postItem->find('a', 1)->plaintext;
				$time = $this->findItemDate($postItem);
				$author = $postItem->find('a.username', 0)->plaintext;
				$content = $this->fetchPostContent($url, self::URI);
				$this->items[] = $this->buildItem($url, $title, $author, $time, null, $content);
				unset($postItem); // Free up memory
			}
			break;
		}
	}

	public function getName() {
		if(!is_null($this->getInput('type'))) {
			$type = array_search(
				$this->getInput('type'),
				self::PARAMETERS[$this->queriedContext]['type']['values']
			);
			return 'GBAtemp ' . $type . ' Bridge';
		}

		return parent::getName();
	}
}