f64664a83c
This makes detection more dependable, because if there's no illustrating image there may not be a first paragraph.
42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php
|
|
class WikipediaFRBridge extends BridgeAbstract{
|
|
|
|
public function loadMetadatas() {
|
|
|
|
$this->maintainer = "gsurrel";
|
|
$this->name = "Wikipedia FR 'Lumière sur...'";
|
|
$this->uri = "https://fr.wikipedia.org/";
|
|
$this->description = "Returns the highlighted fr.wikipedia.org article.";
|
|
$this->update = "2016-06-04";
|
|
|
|
}
|
|
|
|
public function collectData(array $param){
|
|
$html = '';
|
|
$host = 'http://fr.wikipedia.org';
|
|
// If you want HTTPS access instead, uncomment the following line:
|
|
//$host = 'https://fr.wikipedia.org';
|
|
$link = '/wiki/Wikip%C3%A9dia:Accueil_principal';
|
|
|
|
$html = file_get_html($host.$link) or $this->returnError('Could not request Wikipedia FR.', 404);
|
|
|
|
$element = $html->find('div[id=mf-lumieresur]', 0);
|
|
$item = new \Item();
|
|
$item->uri = $host.$element->find('.BA > i > a', 0)->href;
|
|
$item->title = $element->find('.BA > i > a',0)->title;
|
|
$item->content = str_replace('href="/', 'href="'.$host.'/', $element->innertext);
|
|
$this->items[] = $item;
|
|
}
|
|
|
|
public function getName(){
|
|
return 'Wikipedia FR "Lumière sur..."';
|
|
}
|
|
|
|
public function getURI(){
|
|
return 'https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Accueil_principal';
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 3600*4; // 4 hours
|
|
}
|
|
}
|