aboutsummaryrefslogtreecommitdiff
path: root/bridges/MixCloudBridge.php
blob: 723f634ab29f0e0010df188a2215edcf05394ab4 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php

class MixCloudBridge extends BridgeAbstract {

	const MAINTAINER = 'Alexis CHEMEL';
	const NAME = 'MixCloud';
	const URI = 'https://www.mixcloud.com';
	const CACHE_TIMEOUT = 3600; // 1h
	const DESCRIPTION = 'Returns latest musics on user stream';

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

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

		return parent::getName();
	}

	public function collectData(){
		ini_set('user_agent', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0');

		$html = getSimpleHTMLDOM(self::URI . '/' . $this->getInput('u'))
			or returnServerError('Could not request MixCloud.');

		foreach($html->find('section.card') as $element) {

			$item = array();

			$item['uri'] = self::URI . $element->find('hgroup.card-title h1 a', 0)->getAttribute('href');
			$item['title'] = html_entity_decode(
				$element->find('hgroup.card-title h1 a span', 0)->getAttribute('title'),
				ENT_QUOTES
			);

			$image = $element->find('a.album-art img', 0);

			if($image) {
				$item['content'] = '<img src="' . $image->getAttribute('src') . '" />';
			}

			$item['author'] = trim($element->find('hgroup.card-title h2 a', 0)->innertext);

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