rss-bridge/bridges/NordbayernBridge.php

151 lines
4.3 KiB
PHP
Raw Normal View History

2020-03-31 21:14:16 +02:00
<?php
ini_set('max_execution_time', '300');
class NordbayernBridge extends BridgeAbstract {
const MAINTAINER = 'schabi.org';
const NAME = 'Nordbayern';
2020-03-31 21:14:16 +02:00
const CACHE_TIMEOUT = 3600;
const URI = 'https://www.nordbayern.de';
const DESCRIPTION = 'Bridge for Bavarian reginoal news site nordbayern.de';
const PARAMETERS = array( array(
'region' => array(
'name' => 'region',
'type' => 'list',
'exampleValue' => 'Nürnberg',
'title' => 'Select a region',
'values' => array(
'Nürnberg' => 'nuernberg',
'Fürth' => 'fuerth',
'Erlangen' => 'erlangen',
2020-03-31 21:14:16 +02:00
'Altdorf' => 'altdorf',
'Ansbach' => 'ansbach',
'Bad Windsheim' => 'bad-windsheim',
'Bamberg' => 'bamberg',
'Dinkelsbühl/Feuchtwangen' => 'dinkelsbuehl-feuchtwangen',
'Feucht' => 'feucht',
'Forchheim' => 'forchheim',
'Gunzenhausen' => 'gunzenhausen',
'Hersbruck' => 'hersbruck',
'Herzogenaurach' => 'herzogenaurach',
'Hilpoltstein' => 'hilpoltstein',
2020-03-31 21:14:16 +02:00
'Höchstadt' => 'hoechstadt',
'Lauf' => 'lauf',
'Neumarkt' => 'neumarkt',
'Neustadt/Aisch' => 'neustadt-aisch',
'Pegnitz' => 'pegnitz',
'Roth' => 'roth',
'Rothenburg o.d.T.' => 'rothenburg-o-d-t',
'Treuchtlingen' => 'treuchtlingen',
'Weißenburg' => 'weissenburg'
)
),
'policeReports' => array(
'name' => 'Police Reports',
'type' => 'checkbox',
'exampleValue' => 'checked',
'title' => 'Include Police Reports',
2020-03-31 21:14:16 +02:00
)
));
private function getUseFullContent($rawContent) {
$content = '';
foreach($rawContent->children as $element) {
if($element->tag === 'p' || $element->tag === 'h3') {
$content .= $element;
}
if($element->tag === 'main') {
$content .= self::getUseFullContent($element->find('article', 0));
}
if($element->tag === 'header') {
$content .= self::getUseFullContent($element);
}
2020-03-31 21:14:16 +02:00
}
return $content;
2020-03-31 21:14:16 +02:00
}
private function getValidImages($pictures) {
$images = array();
if(!empty($pictures)) {
for($i = 0; $i < count($pictures); $i++) {
$imgUrl = $pictures[$i]->find('img', 0)->src;
if(strcmp($imgUrl, 'https://www.nordbayern.de/img/nb/logo-vnp.png') !== 0) {
array_push($images, $imgUrl);
}
}
}
return $images;
}
2020-03-31 21:14:16 +02:00
private function handleArticle($link) {
$item = array();
$article = getSimpleHTMLDOM($link);
defaultLinkTo($article, self::URI);
2020-03-31 21:14:16 +02:00
$item['uri'] = $link;
if ($article->find('h2', 0) == null) {
$item['title'] = $article->find('h3', 0)->innertext;
} else {
$item['title'] = $article->find('h2', 0)->innertext;
}
2020-03-31 21:14:16 +02:00
$item['content'] = '';
//first get images from content
$pictures = $article->find('picture');
$images = self::getValidImages($pictures);
if(!empty($images)) {
// If there is an author info block
// the first immage will be the portrait of the author
// and not the article banner. The banner in this
// case will be the second image.
// Also skip first image, as its always NN logo.
if ($article->find('a[id="openAuthor"]', 0) == null) {
$bannerUrl = isset($images[1]) ? $images[1] : null;
} else {
$bannerUrl = isset($images[2]) ? $images[2] : null;
}
$item['content'] .= '<img src="' . $bannerUrl . '">';
2020-03-31 21:14:16 +02:00
}
if ($article->find('section[class*=article__richtext]', 0) == null) {
$content = $article->find('div[class*=modul__teaser]', 0)
->find('p', 0);
$item['content'] .= $content;
} else {
$content = $article->find('section[class*=article__richtext]', 0)
->find('div', 0)->find('div', 0);
$item['content'] .= self::getUseFullContent($content);
}
for($i = 1; $i < count($images); $i++) {
$item['content'] .= '<img src="' . $images[$i] . '">';
2020-03-31 21:14:16 +02:00
}
// exclude police reports if descired
if($this->getInput('policeReports') ||
!str_contains($item['content'], 'Hier geht es zu allen aktuellen Polizeimeldungen.')) {
$this->items[] = $item;
2020-03-31 21:14:16 +02:00
}
2020-03-31 21:14:16 +02:00
$article->clear();
}
private function handleNewsblock($listSite) {
$main = $listSite->find('main', 0);
foreach($main->find('article') as $article) {
self::handleArticle(self::URI . $article->find('a', 0)->href);
2020-03-31 21:14:16 +02:00
}
}
public function collectData() {
$item = array();
$region = $this->getInput('region');
if($region === 'rothenburg-o-d-t') {
$region = 'rothenburg-ob-der-tauber';
}
2020-03-31 21:14:16 +02:00
$listSite = getSimpleHTMLDOM(self::URI . '/region/' . $region);
self::handleNewsblock($listSite);
2020-03-31 21:14:16 +02:00
}
}