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.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
|
|
class CarThrottleBridge extends FeedExpander
|
|
{
|
|
const NAME = 'Car Throttle ';
|
|
const URI = 'https://www.carthrottle.com';
|
|
const DESCRIPTION = 'Get the latest car-related news from Car Throttle.';
|
|
const MAINTAINER = 't0stiman';
|
|
|
|
public function collectData()
|
|
{
|
|
$this->collectExpandableDatas('https://www.carthrottle.com/rss', 10);
|
|
}
|
|
|
|
protected function parseItem($feedItem)
|
|
{
|
|
$item = parent::parseItem($feedItem);
|
|
|
|
//fetch page
|
|
$articlePage = getSimpleHTMLDOMCached($feedItem->link)
|
|
or returnServerError('Could not retrieve ' . $feedItem->link);
|
|
|
|
$subtitle = $articlePage->find('p.standfirst', 0);
|
|
$article = $articlePage->find('div.content_field', 0);
|
|
|
|
$item['content'] = str_get_html($subtitle . $article);
|
|
|
|
//convert <iframe>s to <a>s. meant for embedded videos.
|
|
foreach ($item['content']->find('iframe') as $found) {
|
|
$iframeUrl = $found->getAttribute('src');
|
|
|
|
if ($iframeUrl) {
|
|
$found->outertext = '<a href="' . $iframeUrl . '">' . $iframeUrl . '</a>';
|
|
}
|
|
}
|
|
|
|
//remove scripts from the text
|
|
foreach ($item['content']->find('script') as $remove) {
|
|
$remove->outertext = '';
|
|
}
|
|
|
|
return $item;
|
|
}
|
|
}
|