2015-05-05 21:18:12 +03:00
|
|
|
<?php
|
2015-11-05 14:20:11 +03:00
|
|
|
|
2023-12-30 03:33:31 +03:00
|
|
|
/**
|
|
|
|
* See https://reporterre.net/spip.php?page=backend-simple
|
|
|
|
*/
|
2017-02-11 18:16:56 +03:00
|
|
|
class ReporterreBridge extends BridgeAbstract
|
2022-07-01 16:10:30 +03:00
|
|
|
{
|
2017-02-11 18:16:56 +03:00
|
|
|
const MAINTAINER = 'nyutag';
|
|
|
|
const NAME = 'Reporterre Bridge';
|
2019-10-16 22:34:28 +03:00
|
|
|
const URI = 'https://www.reporterre.net/';
|
2023-12-30 03:33:31 +03:00
|
|
|
const DESCRIPTION = 'Returns the newest articles. See also their official feed https://reporterre.net/spip.php?page=backend-simple';
|
2015-05-05 21:18:12 +03:00
|
|
|
|
2016-08-25 02:24:53 +03:00
|
|
|
public function collectData()
|
|
|
|
{
|
2023-12-30 03:33:31 +03:00
|
|
|
//$url = self::URI . 'spip.php?page=backend';
|
|
|
|
$url = self::URI . 'spip.php?page=backend-simple';
|
|
|
|
$html = getSimpleHTMLDOM($url);
|
2015-05-05 21:18:12 +03:00
|
|
|
$limit = 0;
|
|
|
|
|
2017-07-29 20:28:00 +03:00
|
|
|
foreach ($html->find('item') as $element) {
|
2016-08-04 13:34:40 +03:00
|
|
|
if ($limit < 5) {
|
2016-08-22 19:55:59 +03:00
|
|
|
$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;
|
2023-12-30 03:33:31 +03:00
|
|
|
//$item['content'] = html_entity_decode($this->extractContent($item['uri']));
|
|
|
|
$item['content'] = htmlspecialchars_decode($element->find('description', 0)->plaintext);
|
2016-08-04 13:34:40 +03:00
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
|
|
|
}
|
2015-05-05 21:18:12 +03:00
|
|
|
}
|
2016-08-04 13:34:40 +03:00
|
|
|
}
|
2023-12-30 03:33:31 +03:00
|
|
|
|
|
|
|
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 21:18:12 +03:00
|
|
|
}
|