2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
2017-02-11 16:16:56 +01:00
|
|
|
class BastaBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
const MAINTAINER = 'qwertygc';
|
|
|
|
const NAME = 'Bastamag Bridge';
|
2019-10-16 21:34:28 +02:00
|
|
|
const URI = 'https://www.bastamag.net/';
|
2016-09-25 17:04:28 +02:00
|
|
|
const CACHE_TIMEOUT = 7200; // 2h
|
2017-02-11 16:16:56 +01:00
|
|
|
const DESCRIPTION = 'Returns the newest articles.';
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2017-02-11 16:16:56 +01:00
|
|
|
$html = getSimpleHTMLDOM(self::URI . 'spip.php?page=backend')
|
|
|
|
or returnServerError('Could not request Bastamag.');
|
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
$limit = 0;
|
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach($html->find('item') as $element) {
|
|
|
|
if($limit < 10) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['title'] = $element->find('title', 0)->innertext;
|
|
|
|
$item['uri'] = $element->find('guid', 0)->plaintext;
|
|
|
|
$item['timestamp'] = strtotime($element->find('dc:date', 0)->plaintext);
|
2019-10-24 21:57:14 +02:00
|
|
|
// Replaces all relative image URLs by absolute URLs.
|
|
|
|
// Relative URLs always start with 'local/'!
|
|
|
|
$item['content'] = preg_replace(
|
|
|
|
'/src=["\']{1}([^"\']+)/ims',
|
|
|
|
'src=\'' . self::URI . '$1\'',
|
|
|
|
getSimpleHTMLDOM($item['uri'])->find('div.texte', 0)->innertext
|
|
|
|
);
|
2016-08-02 12:27:44 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
2016-08-02 11:28:11 +02:00
|
|
|
}
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-08-02 11:28:11 +02:00
|
|
|
}
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|