-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RobinhoodSnacks] Add bridge for Robinhood Snacks (#1460)
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?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) | ||
or returnServerError('Could not request snacks.robinhood.com.'); | ||
|
||
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, | ||
); | ||
} | ||
} | ||
} |