forked from blallo/rss-bridge
Added Wikipedia Esperanto bridge
This commit is contained in:
parent
02c7b2be87
commit
07d27e0421
1 changed files with 41 additions and 0 deletions
41
bridges/WikipediaEOBridge.php
Normal file
41
bridges/WikipediaEOBridge.php
Normal file
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
/**
|
||||
* RssBridgeWikipediaEO
|
||||
* Retrieve latest highlighted articles from Wikipedia in Esperanto.
|
||||
*
|
||||
* @name Wikipedia EO "Artikolo de la semajno"
|
||||
* @description Returns the highlighted eo.wikipedia.org article.
|
||||
*/
|
||||
class WikipediaEOBridge extends BridgeAbstract{
|
||||
|
||||
public function collectData(array $param){
|
||||
$html = '';
|
||||
$host = 'http://eo.wikipedia.org';
|
||||
// If you want HTTPS access instead, uncomment the following line:
|
||||
//$host = 'https://eo.wikipedia.org';
|
||||
$link = '/wiki/Vikipedio:%C4%88efpa%C4%9Do';
|
||||
|
||||
$html = file_get_html($host.$link) or $this->returnError('Could not request Wikipedia EO.', 404);
|
||||
|
||||
$element = $html->find('div[id=mf-tfa]', 0);
|
||||
// Link to article
|
||||
$link = $element->find('p', -2)->find('a', 0);
|
||||
$item = new \Item();
|
||||
$item->uri = $host.$link->href;
|
||||
$item->title = $link->title;
|
||||
$item->content = str_replace('href="/', 'href="'.$host.'/', $element->innertext);
|
||||
$this->items[] = $item;
|
||||
}
|
||||
|
||||
public function getName(){
|
||||
return 'Wikipedia EO "Artikolo de la semajno"';
|
||||
}
|
||||
|
||||
public function getURI(){
|
||||
return 'https://eo.wikipedia.org/wiki/Vikipedio:%C4%88efpa%C4%9Do';
|
||||
}
|
||||
|
||||
public function getCacheDuration(){
|
||||
return 3600*12; // 12 hours
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue