mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[DagensNyheterDirektBridge] New bridge (#3834)
* [DagensNyheterDirektBridge] New bridge * [DagensNyheterDirektBridge] Lint: Replace all tabs with space * [DagensNyheterDirektBridge] Lint: Lines Add empty lines and move start brace to new line * [DagensNyheterDirektBridge] Lint: short- array syntax * [DagensNyheterDirektBridge] Lint: short array syntax Fix incorrect line ending * [DagensNyheterDirektBridge] Lint: further lint fixes * [DagensNyheterDirektBridge] Lint: final fixes
This commit is contained in:
parent
38e9c396cf
commit
d127bf6e00
62
bridges/DagensNyheterDirektBridge.php
Normal file
62
bridges/DagensNyheterDirektBridge.php
Normal file
@ -0,0 +1,62 @@
|
||||
<?PHP
|
||||
|
||||
class DagensNyheterDirektBridge extends BridgeAbstract
|
||||
{
|
||||
const NAME = 'Dagens Nyheter Direkt';
|
||||
const URI = 'https://www.dn.se/direkt/';
|
||||
const BASEURL = 'https://www.dn.se';
|
||||
const DESCRIPTION = 'Latest news summarised by Dagens Nyheter';
|
||||
const MAINTAINER = 'ajain-93';
|
||||
const LIMIT = 20;
|
||||
|
||||
public function getIcon()
|
||||
{
|
||||
return 'https://cdn.dn-static.se/images/favicon__c2dd3284b46ffdf4d520536e526065fa8.svg';
|
||||
}
|
||||
|
||||
public function collectData()
|
||||
{
|
||||
$NEWSURL = self::BASEURL . '/ajax/direkt/';
|
||||
|
||||
$html = getSimpleHTMLDOM($NEWSURL) or
|
||||
returnServerError('Could not request: ' . $NEWSURL);
|
||||
|
||||
foreach ($html->find('article') as $element) {
|
||||
$link = $element->find('button', 0)->getAttribute('data-link');
|
||||
$datetime = $element->getAttribute('data-publication-time');
|
||||
$url = self::BASEURL . $link;
|
||||
$title = $element->find('h2', 0)->plaintext;
|
||||
$author = $element->find('div.ds-byline__titles', 0)->plaintext;
|
||||
// Debug::log($link);
|
||||
// Debug::log($datetime);
|
||||
// Debug::log($title);
|
||||
// Debug::log($url);
|
||||
// Debug::log($author);
|
||||
|
||||
$article_content = $element->find('div.direkt-post__content', 0);
|
||||
$article_html = '';
|
||||
|
||||
$figure = $element->find('figure', 0);
|
||||
|
||||
if ($figure) {
|
||||
$article_html = $figure->find('img', 0) . '<p><i>' . $figure->find('figcaption', 0) . '</i></p>';
|
||||
}
|
||||
|
||||
foreach ($article_content->find('p') as $p) {
|
||||
$article_html = $article_html . $p;
|
||||
}
|
||||
|
||||
$this->items[] = [
|
||||
'uri' => $url,
|
||||
'title' => $title,
|
||||
'author' => trim($author),
|
||||
'timestamp' => $datetime,
|
||||
'content' => trim($article_html),
|
||||
];
|
||||
|
||||
if (count($this->items) > self::LIMIT) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user