[NOSBridge] fix bridge (#4102)

CSS selectors were no longer valid.
This commit is contained in:
Alex Balgavy 2024-05-12 20:30:23 +02:00 committed by GitHub
parent 1c3024fca7
commit 776ee233bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ class NOSBridge extends BridgeAbstract
'name' => 'Onderwerp', 'name' => 'Onderwerp',
'title' => 'Kies onderwerp', 'title' => 'Kies onderwerp',
'values' => [ 'values' => [
'Laatste nieuws' => 'nieuws', 'Laatste nieuws' => 'nieuws/laatste',
'Binnenland' => 'nieuws/binnenland', 'Binnenland' => 'nieuws/binnenland',
'Buitenland' => 'nieuws/buitenland', 'Buitenland' => 'nieuws/buitenland',
'Regionaal nieuws' => 'nieuws/regio', 'Regionaal nieuws' => 'nieuws/regio',
@ -38,17 +38,16 @@ class NOSBridge extends BridgeAbstract
{ {
$url = sprintf('https://www.nos.nl/%s', $this->getInput('topic')); $url = sprintf('https://www.nos.nl/%s', $this->getInput('topic'));
$dom = getSimpleHTMLDOM($url); $dom = getSimpleHTMLDOM($url);
$dom = $dom->find('ul.list-items', 0); $dom = $dom->find('main#content > div > section > ul', 0);
if (!$dom) { if (!$dom) {
throw new \Exception(sprintf('Unable to find css selector on `%s`', $url)); throw new \Exception(sprintf('Unable to find css selector on `%s`', $url));
} }
$dom = defaultLinkTo($dom, $this->getURI()); $dom = defaultLinkTo($dom, $this->getURI());
foreach ($dom->find('li.list-items__item') as $article) { foreach ($dom->find('li') as $article) {
$a = $article->find('a', 0);
$this->items[] = [ $this->items[] = [
'title' => $article->find('h3.list-items__title', 0)->plaintext, 'title' => $article->find('h2', 0)->plaintext,
'uri' => $article->find('a.list-items__link', 0)->href, 'uri' => $article->find('a', 0)->href,
'content' => $article->find('p.list-items__description', 0)->plaintext, 'content' => $article->find('p', 0)->plaintext,
'timestamp' => strtotime($article->find('time', 0)->datetime), 'timestamp' => strtotime($article->find('time', 0)->datetime),
]; ];
} }