mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 17:45:40 +03:00
39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?php
|
|
|
|
class TeefuryBridge extends BridgeAbstract
|
|
{
|
|
const NAME = 'Teefury';
|
|
const URI = 'https://www.teefury.com';
|
|
const DESCRIPTION = 'Returns the daily designs';
|
|
const MAINTAINER = 'Bockiii';
|
|
const PARAMETERS = [];
|
|
|
|
const CACHE_TIMEOUT = 60 * 60 * 3; // 3 hours
|
|
|
|
public function collectData()
|
|
{
|
|
$html = getSimpleHTMLDOM(self::URI);
|
|
$html = defaultLinkTo($html, self::URI);
|
|
|
|
foreach ($html->find('div.odad-card__wrapper') as $element) {
|
|
$titletext = $element->find('p', 0)->innertext;
|
|
$title = trim(explode('<br>', $titletext)[0]);
|
|
$today = date('m/d/Y');
|
|
$shirtinfo = $element->find('div[data-link*="odad-tee-mens"]', 0);
|
|
$uri = self::URI . $shirtinfo->attr['data-link'];
|
|
$item = [];
|
|
$item['uri'] = $uri;
|
|
$item['title'] = $title;
|
|
$item['uid'] = $title;
|
|
$item['timestamp'] = $today;
|
|
$item['content'] = $element->find('p', 0)
|
|
. '<br><a href="'
|
|
. $uri
|
|
. '"><img src="'
|
|
. $shirtinfo->find('img', 0)->attr['src']
|
|
. '" /></a>';
|
|
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
}
|