From 227c7b8968d00be7b438e9c340158bcc9d2ae63f Mon Sep 17 00:00:00 2001 From: piyushpaliwal Date: Sun, 28 May 2023 05:01:45 +0530 Subject: [PATCH] Sleeper.com Alerts. Fixes #2234 (#3411) * Sleeper.com Alerts. Fixes #2234 * fix: linter issue --- bridges/SleeperFantasyFootballBridge.php | 44 ++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 bridges/SleeperFantasyFootballBridge.php diff --git a/bridges/SleeperFantasyFootballBridge.php b/bridges/SleeperFantasyFootballBridge.php new file mode 100644 index 00000000..c506482c --- /dev/null +++ b/bridges/SleeperFantasyFootballBridge.php @@ -0,0 +1,44 @@ +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 + ]; + } +}