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

	const MAINTAINER = 'superbaillot.net';
	const NAME = 'CopieDouble';
	const URI = 'http://www.copie-double.com/';
	const CACHE_TIMEOUT = 14400; // 4h
	const DESCRIPTION = 'CopieDouble';

	public function collectData(){
		$html = getSimpleHTMLDOM(self::URI)
			or returnServerError('Could not request CopieDouble.');

		$table = $html->find('table table', 2);

		foreach($table->find('tr') as $element) {
			$td = $element->find('td', 0);

			if($td->class === 'couleur_1') {
				$item = array();
				$title = $td->innertext;
				$pos = strpos($title, '<a');
				$title = substr($title, 0, $pos);
				$item['title'] = $title;
			} elseif(strpos($element->innertext, '/images/suivant.gif') === false) {
				$a = $element->find('a', 0);
				$item['uri'] = self::URI . $a->href;
				$content = str_replace('src="/', 'src="/' . self::URI, $element->find('td', 0)->innertext);
				$content = str_replace('href="/', 'href="' . self::URI, $content);
				$item['content'] = $content;
				$this->items[] = $item;
			}
		}
	}
}