mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-25 15:57:19 +00:00
57 lines
1.6 KiB
PHP
57 lines
1.6 KiB
PHP
<?php
|
|
class CourrierInternationalBridge extends BridgeAbstract
|
|
{
|
|
const MAINTAINER = "teromene";
|
|
const NAME = "Courrier International Bridge";
|
|
const URI = "http://CourrierInternational.com/";
|
|
const CACHE_TIMEOUT = 300; // 5 min
|
|
const DESCRIPTION = "Courrier International bridge";
|
|
|
|
public function collectData()
|
|
{
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
or returnServerError('Error.');
|
|
|
|
$element = $html->find("article");
|
|
|
|
$article_count = 1;
|
|
|
|
foreach ($element as $article) {
|
|
$item = array();
|
|
|
|
$item['uri'] = $article->parent->getAttribute("href");
|
|
|
|
if (strpos($item['uri'], "http") === false) {
|
|
$item['uri'] = self::URI.$item['uri'];
|
|
}
|
|
|
|
$page = getSimpleHTMLDOMCached($item['uri']);
|
|
|
|
$content = $page->find('.article-text', 0);
|
|
if (!$content) {
|
|
$content = $page->find('.depeche-text', 0);
|
|
}
|
|
|
|
$item['content'] = sanitize($content);
|
|
$item['title'] = strip_tags($article->find(".title", 0));
|
|
|
|
$dateTime = date_parse($page->find("time", 0));
|
|
|
|
$item['timestamp'] = mktime(
|
|
$dateTime['hour'],
|
|
$dateTime['minute'],
|
|
$dateTime['second'],
|
|
$dateTime['month'],
|
|
$dateTime['day'],
|
|
$dateTime['year']
|
|
);
|
|
|
|
$this->items[] = $item;
|
|
$article_count ++;
|
|
if ($article_count > 5) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|