mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
parent
1c3024fca7
commit
776ee233bd
@ -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),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user