mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-31 15:30:01 +02:00
- Do not add spaces after opening or before closing parenthesis
// Wrong
if( !is_null($var) ) {
...
}
// Right
if(!is_null($var)) {
...
}
- Add space after closing parenthesis
// Wrong
if(true){
...
}
// Right
if(true) {
...
}
- Add body into new line
- Close body in new line
// Wrong
if(true) { ... }
// Right
if(true) {
...
}
Notice: Spaces after keywords are not detected:
// Wrong (not detected)
// -> space after 'if' and missing space after 'else'
if (true) {
...
} else{
...
}
// Right
if(true) {
...
} else {
...
}
34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<?php
|
|
class BastaBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'qwertygc';
|
|
const NAME = 'Bastamag Bridge';
|
|
const URI = 'http://www.bastamag.net/';
|
|
const CACHE_TIMEOUT = 7200; // 2h
|
|
const DESCRIPTION = 'Returns the newest articles.';
|
|
|
|
public function collectData(){
|
|
// Replaces all relative image URLs by absolute URLs.
|
|
// Relative URLs always start with 'local/'!
|
|
function replaceImageUrl($content){
|
|
return preg_replace('/src=["\']{1}([^"\']+)/ims', 'src=\'' . self::URI . '$1\'', $content);
|
|
}
|
|
|
|
$html = getSimpleHTMLDOM(self::URI . 'spip.php?page=backend')
|
|
or returnServerError('Could not request Bastamag.');
|
|
|
|
$limit = 0;
|
|
|
|
foreach($html->find('item') as $element) {
|
|
if($limit < 10) {
|
|
$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(getSimpleHTMLDOM($item['uri'])->find('div.texte', 0)->innertext);
|
|
$this->items[] = $item;
|
|
$limit++;
|
|
}
|
|
}
|
|
}
|
|
}
|