forked from blallo/rss-bridge
bba216073c
That's the source code manager job to keep this information consistent Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
57 lines
1.9 KiB
PHP
57 lines
1.9 KiB
PHP
<?php
|
|
class FlickrTagBridge extends BridgeAbstract{
|
|
|
|
public function loadMetadatas() {
|
|
|
|
$this->maintainer = "erwang";
|
|
$this->name = "Flickr TagUser";
|
|
$this->uri = "http://www.flickr.com/";
|
|
$this->description = "Returns the tagged or user images from Flickr";
|
|
|
|
$this->parameters["By keyword"] =
|
|
'[
|
|
{
|
|
"name" : "Keyword",
|
|
"identifier" : "q"
|
|
}
|
|
]';
|
|
|
|
$this->parameters["By username"] =
|
|
'[
|
|
{
|
|
"name" : "Username",
|
|
"identifier" : "u"
|
|
}
|
|
]';
|
|
}
|
|
|
|
public function collectData(array $param){
|
|
$html = $this->getSimpleHTMLDOM('http://www.flickr.com/search/?q=vendee&s=rec') or $this->returnServerError('Could not request Flickr.');
|
|
if (isset($param['q'])) { /* keyword search mode */
|
|
$this->request = $param['q'];
|
|
$html = $this->getSimpleHTMLDOM('http://www.flickr.com/search/?q='.urlencode($this->request).'&s=rec') or $this->returnServerError('No results for this query.');
|
|
}
|
|
elseif (isset($param['u'])) { /* user timeline mode */
|
|
$this->request = $param['u'];
|
|
$html = $this->getSimpleHTMLDOM('http://www.flickr.com/photos/'.urlencode($this->request).'/') or $this->returnServerError('Requested username can\'t be found.');
|
|
}
|
|
|
|
else {
|
|
$this->returnClientError('You must specify a keyword or a Flickr username.');
|
|
}
|
|
|
|
foreach($html->find('span.photo_container') as $element) {
|
|
$item = new \Item();
|
|
$item->uri = 'http://flickr.com'.$element->find('a',0)->href;
|
|
$thumbnailUri = $element->find('img',0)->getAttribute('data-defer-src');
|
|
$item->content = '<a href="' . $item->uri . '"><img src="' . $thumbnailUri . '" /></a>'; // FIXME: Filter javascript ?
|
|
$item->title = $element->find('a',0)->title;
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 21600; // 6 hours
|
|
}
|
|
}
|
|
|