Rss-Bridge/bridges/DilbertBridge.php

44 lines
1.3 KiB
PHP
Raw Normal View History

<?php
2016-02-14 13:43:58 +01:00
class DilbertBridge extends BridgeAbstract {
2016-02-14 13:43:58 +01:00
public function loadMetadatas() {
2016-05-14 12:40:27 +02:00
$this->maintainer = 'kranack';
$this->name = 'Dilbert Daily Strip';
$this->uri = 'http://dilbert.com';
$this->description = 'The Unofficial Dilbert Daily Comic Strip';
2016-02-14 13:43:58 +01:00
}
2015-01-30 18:12:28 +01:00
public function collectData(){
2016-02-14 13:43:58 +01:00
$html = $this->getSimpleHTMLDOM($this->getURI()) or $this->returnServerError('Could not request Dilbert: '.$this->getURI());
2016-02-14 13:43:58 +01:00
foreach ($html->find('section.comic-item') as $element) {
$img = $element->find('img', 0);
2016-05-14 12:40:27 +02:00
$link = $element->find('a', 0);
2016-02-14 13:43:58 +01:00
$comic = $img->src;
2016-05-14 12:40:27 +02:00
$title = $link->alt;
$url = $link->href;
2016-02-14 13:43:58 +01:00
$date = substr($url, 25);
if (empty($title))
2016-05-14 12:40:27 +02:00
$title = 'Dilbert Comic Strip on '.$date;
2016-02-14 13:43:58 +01:00
$date = strtotime($date);
$item = array();
$item['uri'] = $url;
$item['title'] = $title;
$item['author'] = 'Scott Adams';
$item['timestamp'] = $date;
$item['content'] = '<img src="'.$comic.'" alt="'.$img->alt.'" />';
$this->items[] = $item;
}
}
2016-02-14 13:43:58 +01:00
public function getCacheDuration() {
return 21600; // 6 hours
}
}
?>