mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
4f75591060
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
|
|
class DavesTrailerPageBridge extends BridgeAbstract
|
|
{
|
|
const MAINTAINER = 'johnnygroovy';
|
|
const NAME = 'Daves Trailer Page Bridge';
|
|
const URI = 'https://www.davestrailerpage.co.uk/';
|
|
const DESCRIPTION = 'Last trailers in HD thanks to Dave.';
|
|
|
|
public function collectData()
|
|
{
|
|
$html = getSimpleHTMLDOM(static::URI)
|
|
or returnClientError('No results for this query.');
|
|
|
|
$curr_date = null;
|
|
foreach ($html->find('tr') as $tr) {
|
|
// If it's a date row, update the current date
|
|
if ($tr->align == 'center') {
|
|
$curr_date = $tr->plaintext;
|
|
continue;
|
|
}
|
|
|
|
$item = [];
|
|
|
|
// title
|
|
$item['title'] = $tr->find('td', 0)->find('b', 0)->plaintext;
|
|
|
|
// content
|
|
$item['content'] = $tr->find('ul', 1);
|
|
|
|
// uri
|
|
$item['uri'] = $tr->find('a', 3)->getAttribute('href');
|
|
|
|
// date: parsed by FeedItem using strtotime
|
|
$item['timestamp'] = $curr_date;
|
|
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
}
|