mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
Added bridge for Toms Touché (https://taz.de/#!tom=tomdestages) (#4438)
This commit is contained in:
parent
f270cd35e7
commit
744f996224
28
bridges/TomsToucheBridge.php
Normal file
28
bridges/TomsToucheBridge.php
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
class TomsToucheBridge extends BridgeAbstract
|
||||||
|
{
|
||||||
|
const NAME = 'Toms Touché';
|
||||||
|
const URI = 'https://taz.de/#!tom=tomdestages';
|
||||||
|
const DESCRIPTION = 'Your daily dose of Toms Touche.';
|
||||||
|
const MAINTAINER = 'latz';
|
||||||
|
const CACHE_TIMEOUT = 3600; // 1h
|
||||||
|
|
||||||
|
public function collectData()
|
||||||
|
{
|
||||||
|
$url = 'https://taz.de/';
|
||||||
|
$html = getSimpleHTMLDOM($url); // Docs: https://simplehtmldom.sourceforge.io/docs/1.9/index.html
|
||||||
|
$date = $html->find('p[x-ref]');
|
||||||
|
$date = trim($date[0]->innertext);
|
||||||
|
[$day, $month, $year] = explode('.', $date);
|
||||||
|
$image = $html->find('img[alt="tom des tages"]');
|
||||||
|
|
||||||
|
$item = [];
|
||||||
|
$item['title'] = "Toms Touché - $date";
|
||||||
|
$item['uri'] = 'https://taz.de/#!tom=tomdestages';
|
||||||
|
$item['timestamp'] = mktime(0, 0, 0, $month, $day, $year);
|
||||||
|
$item['content'] = $image[0] . '</img>'; // This isn't good HTML style, but at least syntactically correct
|
||||||
|
$item['uid'] = $image[0]->getAttribute('src');
|
||||||
|
$this->items[] = $item;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user