2013-12-16 09:07:48 +01:00
|
|
|
<?php
|
|
|
|
class DansTonChatBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "Astalaseven";
|
|
|
|
public $name = "DansTonChat Bridge";
|
2016-08-28 13:50:46 +02:00
|
|
|
public $uri = "http://danstonchat.com/";
|
2016-08-27 21:03:26 +02:00
|
|
|
public $description = "Returns latest quotes from DansTonChat.";
|
2015-11-03 23:28:44 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2013-12-16 09:07:48 +01:00
|
|
|
|
2016-08-28 13:50:46 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($this->uri.'latest.html')
|
|
|
|
or $this->returnServerError('Could not request DansTonChat.');
|
2013-12-16 09:07:48 +01:00
|
|
|
|
|
|
|
foreach($html->find('div.item') as $element) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = $element->find('a', 0)->href;
|
|
|
|
$item['title'] = 'DansTonChat '.$element->find('a', 1)->plaintext;
|
|
|
|
$item['content'] = $element->find('a', 0)->innertext;
|
2013-12-16 09:07:48 +01:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|