mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-08 01:26:31 +02:00
[OvertakeBridge] Renamed RaceDepartmentBridge to OvertakeBridge (#4294)
This commit is contained in:
42
bridges/OvertakeBridge.php
Normal file
42
bridges/OvertakeBridge.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
class OvertakeBridge extends FeedExpander
|
||||
{
|
||||
const NAME = 'Overtake News';
|
||||
const URI = 'https://www.overtake.gg/';
|
||||
const DESCRIPTION = 'Get the latest (sim)racing news from Overtake.';
|
||||
const MAINTAINER = 't0stiman';
|
||||
const DONATION_URI = 'https://ko-fi.com/tostiman';
|
||||
|
||||
public function collectData()
|
||||
{
|
||||
$this->collectExpandableDatas('https://www.overtake.gg/ams/index.rss', 10);
|
||||
}
|
||||
|
||||
protected function parseItem(array $item)
|
||||
{
|
||||
$articlePage = getSimpleHTMLDOMCached($item['uri']);
|
||||
|
||||
$coverImage = $articlePage->find('img.js-articleCoverImage', 0);
|
||||
#relative url -> absolute url
|
||||
$coverImage = str_replace('src="/', 'src="' . $this->getURI() . '/', $coverImage);
|
||||
$article = $articlePage->find('article.articleBody-main > div.bbWrapper', 0);
|
||||
$item['content'] = str_get_html($coverImage . $article);
|
||||
|
||||
//convert iframes to links. meant for embedded videos.
|
||||
foreach ($item['content']->find('iframe') as $found) {
|
||||
$iframeUrl = $found->getAttribute('src');
|
||||
|
||||
if ($iframeUrl) {
|
||||
$found->outertext = '<a href="' . $iframeUrl . '">' . $iframeUrl . '</a>';
|
||||
}
|
||||
}
|
||||
|
||||
$item['categories'] = [];
|
||||
foreach ($articlePage->find('a.tagItem') as $tag) {
|
||||
array_push($item['categories'], $tag->innertext);
|
||||
}
|
||||
|
||||
return $item;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user