2014-12-16 19:40:03 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-12-22 13:15:59 +00:00
|
|
|
# Flickr (Images)
|
|
|
|
#
|
2014-12-16 19:40:03 +00:00
|
|
|
# @website https://www.flickr.com
|
2014-12-22 13:15:59 +00:00
|
|
|
# @provide-api yes (https://secure.flickr.com/services/api/flickr.photos.search.html)
|
|
|
|
#
|
2014-12-16 19:40:03 +00:00
|
|
|
# @using-api no
|
|
|
|
# @results HTML
|
|
|
|
# @stable no
|
|
|
|
# @parse url, title, thumbnail, img_src
|
|
|
|
|
|
|
|
from urllib import urlencode
|
|
|
|
from json import loads
|
|
|
|
import re
|
|
|
|
|
|
|
|
categories = ['images']
|
|
|
|
|
|
|
|
url = 'https://secure.flickr.com/'
|
|
|
|
search_url = url+'search/?{query}&page={page}'
|
|
|
|
photo_url = 'https://www.flickr.com/photos/{userid}/{photoid}'
|
|
|
|
regex = re.compile(r"\"search-photos-models\",\"photos\":(.*}),\"totalItems\":", re.DOTALL)
|
2014-12-22 13:15:59 +00:00
|
|
|
image_sizes = ('o', 'k', 'h', 'b', 'c', 'z', 'n', 'm', 't', 'q', 's')
|
2014-12-16 19:40:03 +00:00
|
|
|
|
|
|
|
paging = True
|
|
|
|
|
2014-12-22 13:15:59 +00:00
|
|
|
|
2014-12-16 19:40:03 +00:00
|
|
|
def build_flickr_url(user_id, photo_id):
|
2014-12-22 13:15:59 +00:00
|
|
|
return photo_url.format(userid=user_id, photoid=photo_id)
|
2014-12-16 19:40:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
def request(query, params):
|
|
|
|
params['url'] = search_url.format(query=urlencode({'text': query}),
|
|
|
|
page=params['pageno'])
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
|
|
|
def response(resp):
|
|
|
|
results = []
|
2014-12-22 13:15:59 +00:00
|
|
|
|
2014-12-16 19:40:03 +00:00
|
|
|
matches = regex.search(resp.text)
|
2014-12-22 13:15:59 +00:00
|
|
|
|
|
|
|
if matches is None:
|
2014-12-16 19:40:03 +00:00
|
|
|
return results
|
|
|
|
|
|
|
|
match = matches.group(1)
|
|
|
|
search_results = loads(match)
|
2014-12-22 13:15:59 +00:00
|
|
|
|
|
|
|
if '_data' not in search_results:
|
2014-12-16 19:40:03 +00:00
|
|
|
return []
|
2014-12-22 13:15:59 +00:00
|
|
|
|
2014-12-16 19:40:03 +00:00
|
|
|
photos = search_results['_data']
|
2014-12-22 13:15:59 +00:00
|
|
|
|
2014-12-16 19:40:03 +00:00
|
|
|
for photo in photos:
|
2014-12-22 13:15:59 +00:00
|
|
|
|
2014-12-29 20:31:04 +00:00
|
|
|
# In paged configuration, the first pages' photos
|
|
|
|
# are represented by a None object
|
2014-12-22 13:15:59 +00:00
|
|
|
if photo is None:
|
2014-12-16 19:40:03 +00:00
|
|
|
continue
|
2014-12-22 13:15:59 +00:00
|
|
|
|
|
|
|
img_src = None
|
2014-12-16 19:40:03 +00:00
|
|
|
# From the biggest to the lowest format
|
2014-12-22 13:15:59 +00:00
|
|
|
for image_size in image_sizes:
|
|
|
|
if image_size in photo['sizes']:
|
|
|
|
img_src = photo['sizes'][image_size]['displayUrl']
|
|
|
|
break
|
|
|
|
|
|
|
|
if not img_src:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if 'id' not in photo['owner']:
|
2014-12-16 19:40:03 +00:00
|
|
|
continue
|
2014-12-22 13:15:59 +00:00
|
|
|
|
2015-01-17 18:21:09 +00:00
|
|
|
# For a bigger thumbnail, keep only the url_z, not the url_n
|
|
|
|
if 'n' in photo['sizes']:
|
|
|
|
thumbnail_src = photo['sizes']['n']['displayUrl']
|
2015-01-17 18:24:35 +00:00
|
|
|
elif 'z' in photo['sizes']:
|
2015-01-17 18:21:09 +00:00
|
|
|
thumbnail_src = photo['sizes']['z']['displayUrl']
|
|
|
|
else:
|
|
|
|
thumbnail_src = img_src
|
|
|
|
|
2014-12-16 19:40:03 +00:00
|
|
|
url = build_flickr_url(photo['owner']['id'], photo['id'])
|
|
|
|
|
2015-01-11 00:42:55 +00:00
|
|
|
title = photo.get('title', '')
|
2014-12-22 13:15:59 +00:00
|
|
|
|
2014-12-29 20:31:04 +00:00
|
|
|
content = '<span class="photo-author">' +\
|
|
|
|
photo['owner']['username'] +\
|
|
|
|
'</span><br />'
|
2014-12-22 13:15:59 +00:00
|
|
|
|
2014-12-16 19:40:03 +00:00
|
|
|
if 'description' in photo:
|
2014-12-29 20:31:04 +00:00
|
|
|
content = content +\
|
2015-01-02 11:33:40 +00:00
|
|
|
'<span class="description">' +\
|
|
|
|
photo['description'] +\
|
|
|
|
'</span>'
|
2014-12-16 19:40:03 +00:00
|
|
|
|
|
|
|
# append result
|
|
|
|
results.append({'url': url,
|
|
|
|
'title': title,
|
|
|
|
'img_src': img_src,
|
2015-01-17 18:21:09 +00:00
|
|
|
'thumbnail_src': thumbnail_src,
|
2014-12-16 19:40:03 +00:00
|
|
|
'content': content,
|
|
|
|
'template': 'images.html'})
|
2014-12-22 13:15:59 +00:00
|
|
|
|
2014-12-16 19:40:03 +00:00
|
|
|
return results
|