2013-12-16 09:07:48 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* RssBridgeDansTonChat
|
|
|
|
* Retrieve lastest quotes from DansTonChat.
|
|
|
|
* Returns the most recent quotes, sorting by date (most recent first).
|
2014-05-25 23:27:14 +02:00
|
|
|
* 2014-05-25
|
2013-12-16 09:07:48 +01:00
|
|
|
*
|
|
|
|
* @name DansTonChat Bridge
|
2014-05-25 23:27:14 +02:00
|
|
|
* @homepage http://danstonchat.com/latest.html
|
2013-12-16 09:07:48 +01:00
|
|
|
* @description Returns latest quotes from DansTonChat.
|
2014-05-21 19:44:14 +02:00
|
|
|
* @maintainer Astalaseven
|
2013-12-16 09:07:48 +01:00
|
|
|
*/
|
|
|
|
class DansTonChatBridge extends BridgeAbstract{
|
|
|
|
|
|
|
|
public function collectData(array $param){
|
|
|
|
$html = '';
|
|
|
|
$link = 'http://danstonchat.com/latest.html';
|
|
|
|
|
|
|
|
$html = file_get_html($link) or $this->returnError('Could not request DansTonChat.', 404);
|
|
|
|
|
|
|
|
foreach($html->find('div.item') as $element) {
|
|
|
|
$item = new \Item();
|
|
|
|
$item->uri = $element->find('a', 0)->href;
|
|
|
|
$item->title = 'DansTonChat '.$element->find('a', 1)->plaintext;
|
|
|
|
$item->content = $element->find('a', 0)->innertext;
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'DansTonChat';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
|
|
|
return 'http://danstonchat.com';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|