2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class BastaBridge extends BridgeAbstract{
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "qwertygc";
|
|
|
|
public $name = "Bastamag Bridge";
|
|
|
|
public $uri = "http://www.bastamag.net/";
|
|
|
|
public $description = "Returns the newest articles.";
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-08-02 12:27:44 +02:00
|
|
|
// Replaces all relative image URLs by absolute URLs. Relative URLs always start with 'local/'!
|
|
|
|
function ReplaceImageUrl($content){
|
2016-08-28 11:57:18 +02:00
|
|
|
return preg_replace('/src=["\']{1}([^"\']+)/ims', 'src=\''.$this->uri.'$1\'', $content);
|
2016-08-02 12:27:44 +02:00
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2016-08-28 11:57:18 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($this->uri.'spip.php?page=backend')
|
|
|
|
or $this->returnServerError('Could not request Bastamag.');
|
2014-05-26 00:30:46 +02:00
|
|
|
$limit = 0;
|
|
|
|
|
|
|
|
foreach($html->find('item') as $element) {
|
2016-08-02 11:28:11 +02:00
|
|
|
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);
|
|
|
|
$item['content'] = ReplaceImageUrl($this->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
|
|
|
|
2016-08-02 11:28:11 +02:00
|
|
|
public function getCacheDuration(){
|
|
|
|
return 3600*2; // 2 hours
|
|
|
|
}
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
?>
|