[CarThrottleBridge] update for new layout

This commit is contained in:
t0stiman 2024-10-06 19:46:47 +02:00
parent 80c43f10d8
commit 32c961ccec

View File

@ -80,31 +80,22 @@ class CarThrottleBridge extends BridgeAbstract
$item['author'] = $this->parseAuthor($articlePage); $item['author'] = $this->parseAuthor($articlePage);
$articleElement = $articlePage->find('article')[0]; $articleImage = $articlePage->find('div.block-layout-field-image')[0];
$article = $articlePage->find('div.block-layout-body')[1];
//remove ads //remove ads
foreach ($articleElement->find('aside') as $ad) { foreach ($article->find('aside') as $ad) {
$ad->outertext = ''; $ad->outertext = '';
} }
$summary = $articleElement->find('div.summary')[0]; $summary = $articlePage->find('div.summary')[0];
//remove header so we are left with the article content
foreach ($articleElement->find('header') as $found) {
$found->outertext = '';
}
//remove comments (registering on carthrottle.com is impossible so the comment sections are empty anyway)
foreach ($articleElement->find('#lbs-comments') as $found) {
$found->outertext = '';
}
//these are supposed to be hidden //these are supposed to be hidden
foreach ($articleElement->find('.visually-hidden') as $found) { foreach ($article->find('.visually-hidden') as $found) {
$found->outertext = ''; $found->outertext = '';
} }
$item['content'] = $summary . $articleElement; $item['content'] = $summary . $articleImage . $article;
array_push($this->items, $item); array_push($this->items, $item);
} }
@ -117,7 +108,7 @@ class CarThrottleBridge extends BridgeAbstract
return ''; return '';
} }
$a = $authorDivs[0]->find('a'); $a = $authorDivs[0]->find('a')[0];
if ($a) { if ($a) {
return $a->innertext; return $a->innertext;
} }