2013-12-16 09:07:48 +01:00
|
|
|
<?php
|
|
|
|
class DansTonChatBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-03 23:28:44 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "Astalaseven";
|
|
|
|
$this->name = "DansTonChat Bridge";
|
2016-08-09 20:01:21 +02:00
|
|
|
$this->uri = "http://danstonchat.com";
|
2015-11-03 23:28:44 +01:00
|
|
|
$this->description = "Returns latest quotes from DansTonChat.";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-12-16 09:07:48 +01:00
|
|
|
public function collectData(array $param){
|
|
|
|
$html = '';
|
|
|
|
$link = 'http://danstonchat.com/latest.html';
|
|
|
|
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request DansTonChat.');
|
2013-12-16 09:07:48 +01:00
|
|
|
|
|
|
|
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 getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|