2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class BastaBridge extends BridgeAbstract{
|
2016-08-02 11:28:11 +02:00
|
|
|
public function loadMetadatas() {
|
|
|
|
$this->maintainer = "qwertygc";
|
|
|
|
$this->name = "Bastamag Bridge";
|
|
|
|
$this->uri = "http://www.bastamag.net/";
|
|
|
|
$this->description = "Returns the newest articles.";
|
|
|
|
$this->update = "2016-08-02";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function collectData(array $param){
|
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){
|
|
|
|
return preg_replace('/src=["\']{1}([^"\']+)/ims', 'src=\'http://www.bastamag.net/$1\'', $content);
|
|
|
|
}
|
|
|
|
|
2016-06-25 23:17:42 +02:00
|
|
|
$html = $this->file_get_html('http://www.bastamag.net/spip.php?page=backend') or $this->returnError('Could not request Bastamag.', 404);
|
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-02 12:27:44 +02:00
|
|
|
$item = new \Item();
|
|
|
|
$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->file_get_html($item->uri)->find('div.texte', 0)->innertext);
|
|
|
|
$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 getName(){
|
|
|
|
return 'Bastamag Bridge';
|
|
|
|
}
|
2014-05-26 00:30:46 +02:00
|
|
|
|
2016-08-02 11:28:11 +02:00
|
|
|
public function getURI(){
|
|
|
|
return 'http://bastamag.net/';
|
|
|
|
}
|
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-08-02 11:28:11 +02:00
|
|
|
?>
|