forked from blallo/rss-bridge
42b6c82753
This is a subsequent change to f3eefab
36 lines
No EOL
1.5 KiB
PHP
36 lines
No EOL
1.5 KiB
PHP
<?php
|
|
class EstCeQuonMetEnProdBridge extends BridgeAbstract {
|
|
|
|
public function loadMetadatas() {
|
|
$this->maintainer = 'ORelio';
|
|
$this->name = 'Est-ce qu\'on met en prod aujourd\'hui ?';
|
|
$this->uri = 'https://www.estcequonmetenprodaujourdhui.info/';
|
|
$this->description = 'Should we put a website in production today? (French)';
|
|
$this->update = "2016-08-09";
|
|
}
|
|
|
|
public function collectData(array $param) {
|
|
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 = $this->file_get_html($this->getURI()) or $this->returnError('Could not request EstCeQuonMetEnProd: '.$this->getURI(), 500);
|
|
|
|
$item = new \Item();
|
|
$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;
|
|
}
|
|
|
|
public function getCacheDuration() {
|
|
return 21600; // 6 hours
|
|
}
|
|
}
|
|
?>
|