mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
4f75591060
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
|
|
class RaceDepartmentBridge extends FeedExpander
|
|
{
|
|
const NAME = 'RaceDepartment News';
|
|
const URI = 'https://racedepartment.com/';
|
|
const DESCRIPTION = 'Get the latest (sim)racing news from RaceDepartment.';
|
|
const MAINTAINER = 't0stiman';
|
|
|
|
public function collectData()
|
|
{
|
|
$this->collectExpandableDatas('https://www.racedepartment.com/ams/index.rss', 10);
|
|
}
|
|
|
|
protected function parseItem($feedItem)
|
|
{
|
|
$item = parent::parseRss2Item($feedItem);
|
|
|
|
//fetch page
|
|
$articlePage = getSimpleHTMLDOMCached($feedItem->link);
|
|
|
|
$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;
|
|
}
|
|
}
|