2022-01-17 08:35:01 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class ABCNewsBridge extends BridgeAbstract
|
2022-07-01 16:10:30 +03:00
|
|
|
{
|
2022-01-17 08:35:01 +03:00
|
|
|
const NAME = 'ABC News Bridge';
|
|
|
|
const URI = 'https://www.abc.net.au';
|
|
|
|
const DESCRIPTION = 'Topics of the Australian Broadcasting Corporation';
|
|
|
|
const MAINTAINER = 'yue-dongchen';
|
|
|
|
|
|
|
|
const PARAMETERS = [
|
2022-07-01 16:10:30 +03:00
|
|
|
[
|
2022-01-17 08:35:01 +03:00
|
|
|
'topic' => [
|
|
|
|
'type' => 'list',
|
|
|
|
'name' => 'Region',
|
|
|
|
'title' => 'Choose state',
|
|
|
|
'values' => [
|
|
|
|
'ACT' => 'act',
|
|
|
|
'NSW' => 'nsw',
|
|
|
|
'NT' => 'nt',
|
2022-03-25 03:41:40 +03:00
|
|
|
'QLD' => 'qld',
|
2022-01-17 08:35:01 +03:00
|
|
|
'SA' => 'sa',
|
|
|
|
'TAS' => 'tas',
|
|
|
|
'VIC' => 'vic',
|
|
|
|
'WA' => 'wa'
|
2022-07-01 16:10:30 +03:00
|
|
|
],
|
|
|
|
]
|
|
|
|
]
|
2022-01-17 08:35:01 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
public function collectData()
|
|
|
|
{
|
2022-09-13 20:00:51 +03:00
|
|
|
$url = sprintf('https://www.abc.net.au/news/%s', $this->getInput('topic'));
|
|
|
|
$dom = getSimpleHTMLDOM($url);
|
|
|
|
$dom = $dom->find('div[data-component="CardList"]', 0);
|
|
|
|
if (!$dom) {
|
|
|
|
throw new \Exception(sprintf('Unable to find css selector on `%s`', $url));
|
|
|
|
}
|
|
|
|
$dom = defaultLinkTo($dom, $this->getURI());
|
|
|
|
foreach ($dom->find('div[data-component="GenericCard"]') as $article) {
|
|
|
|
$a = $article->find('a', 0);
|
|
|
|
$this->items[] = [
|
|
|
|
'title' => $a->plaintext,
|
|
|
|
'uri' => $a->href,
|
|
|
|
'content' => $article->find('[data-component="CardDescription"]', 0)->plaintext,
|
|
|
|
'timestamp' => strtotime($article->find('time', 0)->datetime),
|
|
|
|
];
|
2022-01-17 08:35:01 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
2022-01-17 08:35:01 +03:00
|
|
|
}
|