2013-08-11 13:30:41 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* RssBridgeFlickrExplore
|
|
|
|
* Returns the newest interesting images from http://www.flickr.com/explore
|
2014-05-25 23:27:14 +02:00
|
|
|
* 2014-05-25
|
2013-08-11 13:30:41 +02:00
|
|
|
*
|
|
|
|
* @name Flickr Explore
|
2014-05-25 23:27:14 +02:00
|
|
|
* @homepage http://www.flickr.com/explore
|
2013-08-11 13:30:41 +02:00
|
|
|
* @description Returns the latest interesting images from Flickr
|
2014-05-21 19:44:14 +02:00
|
|
|
* @maintainer sebsauvage
|
2013-08-11 13:30:41 +02:00
|
|
|
*/
|
|
|
|
class FlickrExploreBridge extends BridgeAbstract{
|
|
|
|
|
|
|
|
public function collectData(array $param){
|
|
|
|
$html = file_get_html('http://www.flickr.com/explore') or $this->returnError('Could not request Flickr.', 404);
|
|
|
|
|
|
|
|
foreach($html->find('span.photo_container') as $element) {
|
|
|
|
$item = new \Item();
|
|
|
|
$item->uri = 'http://flickr.com'.$element->find('a',0)->href;
|
|
|
|
$item->thumbnailUri = $element->find('img',0)->getAttribute('data-defer-src');
|
|
|
|
$item->content = '<a href="' . $item->uri . '"><img src="' . $item->thumbnailUri . '" /></a>'; // FIXME: Filter javascript ?
|
|
|
|
$item->title = $element->find('a',0)->title;
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'Flickr Explore';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
|
|
|
return 'http://www.flickr.com/explore';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
2014-05-21 19:15:52 +02:00
|
|
|
}
|