diff options
Diffstat (limited to 'bridges/RaceDepartmentBridge.php')
-rw-r--r-- | bridges/RaceDepartmentBridge.php | 79 |
1 files changed, 41 insertions, 38 deletions
diff --git a/bridges/RaceDepartmentBridge.php b/bridges/RaceDepartmentBridge.php index b8b6e6fb..c33ee67a 100644 --- a/bridges/RaceDepartmentBridge.php +++ b/bridges/RaceDepartmentBridge.php @@ -1,41 +1,44 @@ <?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'] = array(); - foreach($articlePage->find('a.tagItem') as $tag) { - array_push($item['categories'], $tag->innertext); - } - - return $item; - } +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; + } } |