2019-02-12 15:12:04 +01:00
|
|
|
<?php
|
|
|
|
class RoadAndTrackBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'teromene';
|
|
|
|
const NAME = 'Road And Track Bridge';
|
|
|
|
const URI = 'https://www.roadandtrack.com/';
|
|
|
|
const CACHE_TIMEOUT = 86400; // 24h
|
|
|
|
const DESCRIPTION = 'Returns the latest news from Road & Track.';
|
|
|
|
|
|
|
|
public function collectData() {
|
|
|
|
|
2019-05-08 21:57:59 +02:00
|
|
|
$page = getSimpleHTMLDOM(self::URI);
|
2019-02-12 15:12:04 +01:00
|
|
|
|
2019-05-08 21:57:59 +02:00
|
|
|
//Process the first element
|
|
|
|
$firstArticleLink = $page->find('.custom-promo-title', 0)->href;
|
|
|
|
$this->items[] = $this->fetchArticle($firstArticleLink);
|
|
|
|
|
|
|
|
$limit = 19;
|
|
|
|
foreach($page->find('.full-item-title') as $article) {
|
|
|
|
$this->items[] = $this->fetchArticle($article->href);
|
|
|
|
$limit -= 1;
|
|
|
|
if($limit == 0) break;
|
2019-02-12 15:12:04 +01:00
|
|
|
}
|
2019-05-08 21:57:59 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private function fixImages($content) {
|
|
|
|
|
|
|
|
$enclosures = [];
|
|
|
|
foreach($content->find('img') as $image) {
|
|
|
|
$image->src = explode('?', $image->getAttribute('data-src'))[0];
|
|
|
|
$enclosures[] = $image->src;
|
2019-02-12 15:12:04 +01:00
|
|
|
}
|
2019-05-08 21:57:59 +02:00
|
|
|
|
|
|
|
foreach($content->find('.embed-image-wrap, .content-lede-image-wrap') as $imgContainer) {
|
|
|
|
$imgContainer->style = '';
|
2019-02-12 15:12:04 +01:00
|
|
|
}
|
|
|
|
|
2019-05-08 21:57:59 +02:00
|
|
|
return $enclosures;
|
2019-02-12 15:12:04 +01:00
|
|
|
|
2019-05-08 21:57:59 +02:00
|
|
|
}
|
2019-02-12 15:12:04 +01:00
|
|
|
|
2019-05-08 21:57:59 +02:00
|
|
|
private function fetchArticle($articleLink) {
|
|
|
|
|
|
|
|
$articleLink = self::URI . $articleLink;
|
|
|
|
$article = getSimpleHTMLDOM($articleLink);
|
|
|
|
$item = array();
|
|
|
|
|
|
|
|
$item['title'] = $article->find('.content-hed', 0)->innertext;
|
|
|
|
$item['author'] = $article->find('.byline-name', 0)->innertext;
|
|
|
|
$item['timestamp'] = strtotime($article->find('.content-info-date', 0)->getAttribute('datetime'));
|
|
|
|
|
|
|
|
$content = $article->find('.content-container', 0);
|
|
|
|
if($content->find('.content-rail', 0) !== null)
|
|
|
|
$content->find('.content-rail', 0)->innertext = '';
|
|
|
|
$enclosures = $this->fixImages($content);
|
|
|
|
|
|
|
|
$item['enclosures'] = $enclosures;
|
|
|
|
$item['content'] = $content;
|
|
|
|
return $item;
|
2019-02-12 15:12:04 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getArticleContent($article) {
|
|
|
|
|
|
|
|
return getContents($article->contentUrl);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|