1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-17 22:28:22 +01:00

adds Nius bridge (#3599)

* adds Nius bridge

* fix linter errors

* fix linter errors

* fix linter errors

* fix extract author
This commit is contained in:
Niehztog 2023-08-07 05:33:35 +02:00 committed by GitHub
parent 4976cd227e
commit 3e3481bd7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

32
bridges/NiusBridge.php Normal file
View File

@ -0,0 +1,32 @@
<?php
class NiusBridge extends XPathAbstract
{
const NAME = 'Nius';
const URI = 'https://www.nius.de/news';
const DESCRIPTION = 'Die Stimme der Mehrheit';
const MAINTAINER = 'Niehztog';
//const PARAMETERS = array();
const CACHE_TIMEOUT = 3600;
const FEED_SOURCE_URL = 'https://www.nius.de/news';
const XPATH_EXPRESSION_ITEM = './/div[contains(@class, "compact-story") or contains(@class, "regular-story")]';
const XPATH_EXPRESSION_ITEM_TITLE = './/h2[@class="title"]//node()';
const XPATH_EXPRESSION_ITEM_CONTENT = './/h2[@class="title"]//node()';
const XPATH_EXPRESSION_ITEM_URI = './/a[1]/@href';
const XPATH_EXPR_AUTHOR_PART1 = 'normalize-space(.//span[@class="author"]/text()[1])';
const XPATH_EXPR_AUTHOR_PART2 = 'normalize-space(.//span[@class="author"]/text()[2])';
const XPATH_EXPRESSION_ITEM_AUTHOR = 'substring-after(concat(' . self::XPATH_EXPR_AUTHOR_PART1 . ', " ", ' . self::XPATH_EXPR_AUTHOR_PART2 . '), " ")';
//const XPATH_EXPRESSION_ITEM_TIMESTAMP = './/td[3]';
const XPATH_EXPRESSION_ITEM_ENCLOSURES = './/img[1]/@src';
const XPATH_EXPRESSION_ITEM_CATEGORIES = './/div[@class="subtitle"]/text()';
const SETTING_FIX_ENCODING = false;
protected function cleanMediaUrl($mediaUrl)
{
$result = preg_match('~https:\/\/www\.nius\.de\/_next\/image\?url=(.*)\?~', $mediaUrl, $matches);
return $result ? $matches[1] : $mediaUrl;
}
}