mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
4f75591060
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
29 lines
800 B
PHP
29 lines
800 B
PHP
<?php
|
|
|
|
class CourrierInternationalBridge extends FeedExpander
|
|
{
|
|
const MAINTAINER = 'teromene';
|
|
const NAME = 'Courrier International Bridge';
|
|
const URI = 'https://www.courrierinternational.com/';
|
|
const CACHE_TIMEOUT = 300; // 5 min
|
|
const DESCRIPTION = 'Returns the newest articles';
|
|
|
|
public function collectData()
|
|
{
|
|
$this->collectExpandableDatas(static::URI . 'feed/all/rss.xml', 20);
|
|
}
|
|
|
|
protected function parseItem($feedItem)
|
|
{
|
|
$item = parent::parseItem($feedItem);
|
|
|
|
$articlePage = getSimpleHTMLDOMCached($feedItem->link);
|
|
$content = $articlePage->find('.article-text, depeche-text', 0);
|
|
if (!$content) {
|
|
return $item;
|
|
}
|
|
$item['content'] = sanitize($content);
|
|
|
|
return $item;
|
|
}
|
|
}
|