2018-09-10 21:56:55 +02:00
|
|
|
<?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)
|
|
|
|
or returnServerError('Could not request The Yetee.');
|
|
|
|
|
|
|
|
$div = $html->find('.hero-col');
|
|
|
|
foreach($div as $element) {
|
|
|
|
|
|
|
|
$item = array();
|
|
|
|
$item['enclosures'] = array();
|
|
|
|
|
|
|
|
$title = $element->find('h2', 0)->plaintext;
|
|
|
|
$item['title'] = $title;
|
|
|
|
|
|
|
|
$author = trim($element->find('div[class=credit]', 0)->plaintext);
|
|
|
|
$item['author'] = $author;
|
|
|
|
|
|
|
|
$uri = $element->find('div[class=controls] a', 0)->href;
|
2018-11-05 12:55:58 +01:00
|
|
|
$item['uri'] = static::URI . $uri;
|
2018-09-10 21:56:55 +02:00
|
|
|
|
2018-11-05 12:55:58 +01:00
|
|
|
$content = '<p>' . $element->find('section[class=product-listing-info] p', -1)->plaintext . '</p>';
|
2018-09-10 21:56:55 +02:00
|
|
|
$photos = $element->find('a[class=js-modaal-gallery] img');
|
|
|
|
foreach($photos as $photo) {
|
2018-11-05 12:55:58 +01:00
|
|
|
$content = $content . "<br /><img src='$photo->src' />";
|
2018-09-10 21:56:55 +02:00
|
|
|
$item['enclosures'][] = $photo->src;
|
|
|
|
}
|
|
|
|
$item['content'] = $content;
|
|
|
|
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|