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

	const MAINTAINER = 'superbaillot.net';
	const NAME = 'Allo Cine Bridge';
	const CACHE_TIMEOUT = 25200; // 7h
	const URI = 'http://www.allocine.fr/';
	const DESCRIPTION = 'Bridge for allocine.fr';
	const PARAMETERS = array( array(
		'category' => array(
			'name' => 'category',
			'type' => 'list',
			'required' => true,
			'exampleValue' => 'Faux Raccord',
			'title' => 'Select your category',
			'values' => array(
				'Faux Raccord' => 'faux-raccord',
				'Top 5' => 'top-5',
				'Tueurs en Séries' => 'tueurs-en-serie'
			)
		)
	));

	public function getURI(){
		if(!is_null($this->getInput('category'))) {

			switch($this->getInput('category')) {
			case 'faux-raccord':
				$uri = static::URI . 'video/programme-12284/saison-32180/';
				break;
			case 'top-5':
				$uri = static::URI . 'video/programme-12299/saison-29561/';
				break;
			case 'tueurs-en-serie':
				$uri = static::URI . 'video/programme-12286/saison-22938/';
				break;
			}

			return $uri;
		}

		return parent::getURI();
	}

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

		return parent::getName();
	}

	public function collectData(){

		$html = getSimpleHTMLDOM($this->getURI())
			or returnServerError('Could not request ' . $this->getURI() . ' !');

		$category = array_search(
				$this->getInput('category'),
				self::PARAMETERS[$this->queriedContext]['category']['values']
			);

		foreach($html->find('.media-meta-list figure.media-meta-fig') as $element) {
			$item = array();

			$title = $element->find('div.titlebar h3.title a', 0);
			$content = trim($element->innertext);
			$figCaption = strpos($content, $category);

			if($figCaption !== false) {
				$content = str_replace('src="/', 'src="' . static::URI, $content);
				$content = str_replace('href="/', 'href="' . static::URI, $content);
				$content = str_replace('src=\'/', 'src=\'' . static::URI, $content);
				$content = str_replace('href=\'/', 'href=\'' . static::URI, $content);
				$item['content'] = $content;
				$item['title'] = trim($title->innertext);
				$item['uri'] = static::URI . $title->href;
				$this->items[] = $item;
			}
		}
	}
}