aboutsummaryrefslogtreecommitdiff
path: root/bridges/TheYeteeBridge.php
blob: b7867ae9a453a868d24b8acd9ca54ed6dd1faa6a (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
<?php
class TheYeteeBridge extends BridgeAbstract {

	const MAINTAINER = 'Monsieur Poutounours';
	const NAME = 'TheYetee';
	const URI = 'https://theyetee.com';
	const CACHE_TIMEOUT = 14400; // 4 h
	const DESCRIPTION = 'Fetch daily shirts from The Yetee';

	public function collectData(){

		$html = getSimpleHTMLDOM(self::URI);

		$div = $html->find('.module_timed-item.is--full');
		foreach($div as $element) {

				$item = array();
				$item['enclosures'] = array();

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

				$author = trim($element->find('.module_timed-item--artist a', 0)->plaintext);
				$item['author'] = $author;

				$item['uri'] = static::URI;

				$content = '<p>' . $title . ' by ' . $author . '</p>';
				$photos = $element->find('a.img');
				foreach($photos as $photo) {
					$content = $content . "<br /><img src='$photo->href' />";
					$item['enclosures'][] = $photo->src;
				}
				$item['content'] = $content;

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