mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-29 22:33:39 +03:00
* Sleeper.com Alerts. Fixes #2234 * fix: linter issue
This commit is contained in:
parent
01f731cfa4
commit
227c7b8968
1 changed files with 44 additions and 0 deletions
44
bridges/SleeperFantasyFootballBridge.php
Normal file
44
bridges/SleeperFantasyFootballBridge.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
|
||||
class SleeperFantasyFootballBridge extends BridgeAbstract
|
||||
{
|
||||
const NAME = 'Sleeper.com Alerts';
|
||||
const URI = 'https://sleeper.com/topics/170000000000000000';
|
||||
const DESCRIPTION = 'Fantasy Football Alerts from Sleeper.com';
|
||||
const MAINTAINER = 'piyushpaliwal';
|
||||
const PARAMETERS = [];
|
||||
|
||||
const CACHE_TIMEOUT = 3600; // 1 hour
|
||||
|
||||
public function collectData()
|
||||
{
|
||||
$html = getSimpleHTMLDOMCached(self::URI, self::CACHE_TIMEOUT);
|
||||
foreach ($html->find('div.content > div.latest-topics > a') as $index => $a) {
|
||||
$content = $a->find('div.title > p', 0)->innertext;
|
||||
$meta = $this->processString($a->find('div.desc > div.username', 0)->innertext);
|
||||
$item['title'] = $content;
|
||||
$item['content'] = $content;
|
||||
$item['categories'] = $a->find('div.title div.tag', 0)->innertext;
|
||||
$item['timestamp'] = $meta['timestamp'];
|
||||
$item['author'] = $meta['author'];
|
||||
$item['enclosures'] = $a->find('div.player-photo amp-img', 0)->src;
|
||||
$this->items[] = $item;
|
||||
if (count($this->items) >= 10) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected function processString($inputString)
|
||||
{
|
||||
$decodedString = str_replace([' ', '•'], [' ', '|'], $inputString);
|
||||
$splitArray = explode(' | ', $decodedString);
|
||||
$author = trim($splitArray[0]);
|
||||
$timeString = trim($splitArray[1]);
|
||||
$timestamp = strtotime($timeString);
|
||||
return [
|
||||
'author' => $author,
|
||||
'timestamp' => $timestamp
|
||||
];
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue