4c0e234479
* [Rule34pahealBridge] Use HTTPS * [KonachanBridge] Use HTTPS * [Rule34Bridge] Use HTTPS * [SafebooruBridge] Use HTTPS * [TbibBridge] Use HTTPS * [XbooruBridge] Use HTTPS * [ScmbBridge] Use HTTPS * [ReporterreBridge] Use HTTPS * [BastaBridge] Use HTTPS * [NiceMatinBridge] Use HTTPS * [ScoopItBridge] Use HTTPS * [TheCodingLoveBridge] Use HTTPS * [Shimmie2Bridge] Use HTTPS * [HDWallpapersBridge] Use HTTPS * [GiphyBridge] Use HTTPS * [PickyWallpapersBridge] Use HTTPS * [ParuVenduImmoBridge] Use HTTPS * [ElsevierBridge] Use HTTPS * [CastorusBridge] Use HTTPS * [CollegeDeFranceBridge] Use HTTPS * [MangareaderBridge] Use HTTPS
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?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);
|
|
|
|
foreach($html2->find('div[style=text-align:justify]') as $e) {
|
|
$text = $e->outertext;
|
|
}
|
|
|
|
$html2->clear();
|
|
unset($html2);
|
|
|
|
// Replace all relative urls with absolute ones
|
|
$text = preg_replace(
|
|
'/(href|src)(\=[\"\'])(?!http)([^"\']+)/ims',
|
|
'$1$2' . self::URI . '$3',
|
|
$text
|
|
);
|
|
|
|
$text = strip_tags($text, '<p><br><a><img>');
|
|
return $text;
|
|
}
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM(self::URI . 'spip.php?page=backend')
|
|
or returnServerError('Could not request Reporterre.');
|
|
$limit = 0;
|
|
|
|
foreach($html->find('item') as $element) {
|
|
if($limit < 5) {
|
|
$item = array();
|
|
$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++;
|
|
}
|
|
}
|
|
}
|
|
}
|