forked from blallo/rss-bridge
a4b9611e66
- 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 { ... }
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
class EstCeQuonMetEnProdBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'ORelio';
|
|
const NAME = 'Est-ce qu\'on met en prod aujourd\'hui ?';
|
|
const URI = 'https://www.estcequonmetenprodaujourdhui.info/';
|
|
const CACHE_TIMEOUT = 21600; // 6h
|
|
const DESCRIPTION = 'Should we put a website in production today? (French)';
|
|
|
|
public function collectData(){
|
|
function extractFromDelimiters($string, $start, $end){
|
|
if(strpos($string, $start) !== false) {
|
|
$section_retrieved = substr($string, strpos($string, $start) + strlen($start));
|
|
$section_retrieved = substr($section_retrieved, 0, strpos($section_retrieved, $end));
|
|
return $section_retrieved;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
$html = getSimpleHTMLDOM($this->getURI())
|
|
or returnServerError('Could not request EstCeQuonMetEnProd: ' . $this->getURI());
|
|
|
|
$item = array();
|
|
$item['uri'] = $this->getURI() . '#' . date('Y-m-d');
|
|
$item['title'] = $this->getName();
|
|
$item['author'] = 'Nicolas Hoffmann';
|
|
$item['timestamp'] = strtotime('today midnight');
|
|
$item['content'] = str_replace(
|
|
'src="/',
|
|
'src="' . $this->getURI(),
|
|
trim(extractFromDelimiters($html->outertext, '<body role="document">', '<br /><br />'))
|
|
);
|
|
|
|
$this->items[] = $item;
|
|
}
|
|
}
|