mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
37cb4091d4
When fetching website contents, exceptions already raise on fetching error
26 lines
741 B
PHP
26 lines
741 B
PHP
<?php
|
|
|
|
class RobinhoodSnacksBridge extends BridgeAbstract {
|
|
const MAINTAINER = 'johnpc';
|
|
const NAME = 'Robinhood Snacks Newsletter';
|
|
const URI = 'https://snacks.robinhood.com/newsletters/';
|
|
const CACHE_TIMEOUT = 86400; // 24h
|
|
const DESCRIPTION = 'Returns newsletters from Robinhood Snacks';
|
|
|
|
public function collectData()
|
|
{
|
|
$html = getSimpleHTMLDOM(self::URI);
|
|
|
|
foreach ($html->find('#root > div > div > div > div > div > a') as $element) {
|
|
if ($element->href === 'https://snacks.robinhood.com/newsletters/page/2/') {
|
|
continue;
|
|
}
|
|
|
|
$this->items[] = array(
|
|
'uri' => $element->href,
|
|
'title' => $element->find('div > div', 3)->plaintext,
|
|
'content' => $element->find('div > div', 4)->plaintext,
|
|
);
|
|
}
|
|
}
|
|
}
|