summaryrefslogtreecommitdiff
path: root/bridges/TagBoardBridge.php
blob: b79847e6da295d7bc315311314ce9a1017e53a1d (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
<?php
class TagBoardBridge extends BridgeAbstract {

	const MAINTAINER = 'Pitchoule';
	const NAME = 'TagBoard';
	const URI = 'http://www.TagBoard.com/';
	const CACHE_TIMEOUT = 21600; // 6h
	const DESCRIPTION = 'Returns most recent results from TagBoard.';

	const PARAMETERS = array( array(
		'u' => array(
			'name' => 'keyword',
			'required' => true
		)
	));

	public function collectData(){
		$link = 'https://post-cache.tagboard.com/search/' . $this->getInput('u');

		$html = getSimpleHTMLDOM($link)
			or returnServerError('Could not request TagBoard for : ' . $link);
		$parsed_json = json_decode($html);

		foreach($parsed_json->{'posts'} as $element) {
			$item = array();
			$item['uri'] = $element->{'permalink'};
			$item['title'] = $element->{'text'};
			$thumbnailUri = $element->{'photos'}[0]->{'m'};
			if(isset($thumbnailUri)) {
				$item['content'] = '<a href="'
				. $item['uri']
				. '"><img src="'
				. $thumbnailUri
				. '" /></a>';
			} else {
				$item['content'] = $element->{'html'};
			}
			$this->items[] = $item;
		}
	}

	public function getName(){
		if(!is_null($this->getInput('u'))) {
			return 'tagboard - ' . $this->getInput('u');
		}

		return parent::getName();
	}
}