mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 01:55:27 +03:00
37cb4091d4
When fetching website contents, exceptions already raise on fetching error
35 lines
933 B
PHP
35 lines
933 B
PHP
<?php
|
|
|
|
class N26Bridge extends BridgeAbstract
|
|
{
|
|
const MAINTAINER = 'quentinus95';
|
|
const NAME = 'N26 Blog';
|
|
const URI = 'https://n26.com';
|
|
const CACHE_TIMEOUT = 1800;
|
|
const DESCRIPTION = 'Returns recent blog posts from N26.';
|
|
|
|
public function getIcon()
|
|
{
|
|
return 'https://n26.com/favicon.ico';
|
|
}
|
|
|
|
public function collectData()
|
|
{
|
|
$html = getSimpleHTMLDOM(self::URI . '/en-eu/blog-archive');
|
|
|
|
foreach($html->find('div[class="ag ah ai aj bs bt dx ea fo gx ie if ih ii ij ik s"]') as $article) {
|
|
$item = array();
|
|
|
|
$item['uri'] = self::URI . $article->find('h2 a', 0)->href;
|
|
$item['title'] = $article->find('h2 a', 0)->plaintext;
|
|
|
|
$fullArticle = getSimpleHTMLDOM($item['uri']);
|
|
|
|
$dateElement = $fullArticle->find('time', 0);
|
|
$item['timestamp'] = strtotime($dateElement->plaintext);
|
|
$item['content'] = $fullArticle->find('div[class="af ag ah ai an"]', 1)->innertext;
|
|
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
}
|