rss-bridge/bridges/ReporterreBridge.php

44 lines
1.3 KiB
PHP
Raw Normal View History

2015-05-05 20:18:12 +02:00
<?php
class ReporterreBridge extends BridgeAbstract
{
const MAINTAINER = 'nyutag';
const NAME = 'Reporterre Bridge';
const URI = 'https://www.reporterre.net/';
const DESCRIPTION = 'Returns the newest articles.';
private function extractContent($url)
{
$html2 = getSimpleHTMLDOM($url);
$html2 = defaultLinkTo($html2, self::URI);
foreach ($html2->find('div[style=text-align:justify]') as $e) {
$text = $e->outertext;
}
$html2->clear();
unset($html2);
$text = strip_tags($text, '<p><br><a><img>');
return $text;
}
2015-05-05 20:18:12 +02:00
public function collectData()
{
$html = getSimpleHTMLDOM(self::URI . 'spip.php?page=backend');
$limit = 0;
2015-05-05 20:18:12 +02:00
foreach ($html->find('item') as $element) {
if ($limit < 5) {
$item = [];
$item['title'] = html_entity_decode($element->find('title', 0)->plaintext);
$item['timestamp'] = strtotime($element->find('dc:date', 0)->plaintext);
$item['uri'] = $element->find('guid', 0)->innertext;
$item['content'] = html_entity_decode($this->extractContent($item['uri']));
$this->items[] = $item;
$limit++;
}
}
}
2015-05-05 20:18:12 +02:00
}