mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 17:15:25 +03:00
27 lines
752 B
PHP
27 lines
752 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(array $item)
|
|
{
|
|
$articlePage = getSimpleHTMLDOMCached($item['uri']);
|
|
$content = $articlePage->find('.article-text, depeche-text', 0);
|
|
if (!$content) {
|
|
return $item;
|
|
}
|
|
$item['content'] = sanitize($content);
|
|
|
|
return $item;
|
|
}
|
|
}
|