2013-08-11 13:30:41 +02:00
< ? php
class FlickrExploreBridge extends BridgeAbstract {
2015-11-05 16:50:18 +01:00
public function loadMetadatas () {
$this -> maintainer = " sebsauvage " ;
$this -> name = " Flickr Explore " ;
2016-07-30 19:24:06 +02:00
$this -> uri = " https://www.flickr.com/explore " ;
2015-11-05 16:50:18 +01:00
$this -> description = " Returns the latest interesting images from Flickr " ;
}
2013-08-11 13:30:41 +02:00
public function collectData ( array $param ){
2016-07-08 19:06:35 +02:00
$html = $this -> getSimpleHTMLDOM ( 'https://www.flickr.com/explore' ) or $this -> returnServerError ( 'Could not request Flickr.' );
2016-07-30 19:24:06 +02:00
foreach ( $html -> find ( '.photo-list-photo-view' ) as $element ) {
// Get the styles
$style = explode ( ';' , $element -> style );
// Get the background-image style
$backgroundImage = explode ( ':' , end ( $style ));
// URI type : url(//cX.staticflickr.com/X/XXXXX/XXXXXXXXX.jpg)
$imageURI = trim ( str_replace ([ 'url(' , ')' ], '' , end ( $backgroundImage )));
// Get the image ID
$imageURIs = explode ( '_' , basename ( $imageURI ));
$imageID = reset ( $imageURIs );
// Get the image JSON via Flickr API
2016-08-17 14:45:08 +02:00
$imageJSON = json_decode ( file_get_contents ( 'https://api.flickr.com/services/rest/?method=flickr.photos.getInfo&api_key=103b574d49bd51f0e18bfe907da44a0f&photo_id=' . $imageID . '&format=json&nojsoncallback=1' )) or $this -> returnServerError ( 'Could not request Flickr.' ); // FIXME: Request time too long...
2016-07-30 19:24:06 +02:00
2013-08-11 13:30:41 +02:00
$item = new \Item ();
2016-07-30 19:24:06 +02:00
$item -> uri = 'https://flickr.com/photo.gne?id=' . $imageID ;
2016-08-09 15:50:25 +02:00
$item -> content = '<a href="' . $item -> uri . '"><img src="' . $imageURI . '" /></a>' ; // FIXME: Filter javascript ?
2016-07-30 19:24:06 +02:00
$item -> title = $imageJSON -> photo -> title -> _content ;
2013-08-11 13:30:41 +02:00
$this -> items [] = $item ;
}
}
public function getCacheDuration (){
return 21600 ; // 6 hours
}
2014-05-21 19:15:52 +02:00
}