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

	const MAINTAINER = 'corenting';
	const NAME = 'Github Repositories Search';
	const URI = 'https://github.com/';
	const CACHE_TIMEOUT = 600; // 10min
	const DESCRIPTION = 'Returns a specified repositories search (sorted by recently updated)';
	const PARAMETERS = array( array(
		's' => array(
			'type' => 'text',
			'name' => 'Search query'
		)
	));

	public function collectData(){
		$params = array('utf8' => '✓',
										'q' => urlencode($this->getInput('s')),
										's' => 'updated',
										'o' => 'desc',
										'type' => 'Repositories');
		$url = self::URI . 'search?' . http_build_query($params);

		$html = getSimpleHTMLDOM($url)
			or returnServerError('Error while downloading the website content');

		foreach($html->find('li.repo-list-item') as $element) {
			$item = array();

			$uri = $element->find('h3 a', 0)->href;
			$uri = substr(self::URI, 0, -1) . $uri;
			$item['uri'] = $uri;

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

			// Description
			if (count($element->find('p.d-inline-block')) != 0) {
				$content = $element->find('p.d-inline-block', 0)->innertext;
			} else{
				$content = 'No description';
			}

			// Tags
			$content = $content . '<br />';
			$tags = $element->find('a.topic-tag');
			$tags_array = array();
			if (count($tags) != 0) {
				$content = $content . 'Tags : ';
				foreach($tags as $tag_element) {
					$tag_link = 'https://github.com' . $tag_element->href;
					$tag_name = trim($tag_element->innertext);
					$content = $content . '<a href="' . $tag_link . '">' . $tag_name . '</a> ';
					array_push($tags_array, $tag_element->innertext);
				}
			}

			$item['categories'] = $tags_array;
			$item['content'] = $content;
			$date = $element->find('relative-time', 0)->datetime;
			$item['timestamp'] = strtotime($date);

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