1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searx_ynh.git synced 2024-09-03 20:16:30 +02:00
searx_ynh/sources/searx/engines/flickr.py

88 lines
2.3 KiB
Python
Raw Normal View History

2014-05-10 11:56:19 +02:00
#!/usr/bin/env python
2015-01-13 16:40:30 +01:00
## Flickr (Images)
2015-01-13 17:13:08 +01:00
#
2015-01-13 16:40:30 +01:00
# @website https://www.flickr.com
2015-01-13 17:13:08 +01:00
# @provide-api yes (https://secure.flickr.com/services/api/flickr.photos.search.html)
#
2015-01-13 16:40:30 +01:00
# @using-api yes
# @results JSON
# @stable yes
# @parse url, title, thumbnail, img_src
#More info on api-key : https://www.flickr.com/services/apps/create/
2014-05-10 11:56:19 +02:00
from urllib import urlencode
2015-01-13 16:40:30 +01:00
from json import loads
2014-05-10 11:56:19 +02:00
categories = ['images']
2015-01-13 16:40:30 +01:00
nb_per_page = 15
paging = True
2015-01-13 17:13:08 +01:00
api_key = None
2015-01-13 16:40:30 +01:00
2015-01-13 17:13:08 +01:00
url = 'https://api.flickr.com/services/rest/?method=flickr.photos.search' +\
'&api_key={api_key}&{text}&sort=relevance' +\
'&extras=description%2C+owner_name%2C+url_o%2C+url_z' +\
'&per_page={nb_per_page}&format=json&nojsoncallback=1&page={page}'
2015-01-13 16:40:30 +01:00
photo_url = 'https://www.flickr.com/photos/{userid}/{photoid}'
2014-05-10 11:56:19 +02:00
paging = True
2015-01-13 17:13:08 +01:00
2015-01-13 16:40:30 +01:00
def build_flickr_url(user_id, photo_id):
2015-01-13 17:13:08 +01:00
return photo_url.format(userid=user_id, photoid=photo_id)
2015-01-13 16:40:30 +01:00
2014-05-10 11:56:19 +02:00
def request(query, params):
2015-01-13 16:40:30 +01:00
params['url'] = url.format(text=urlencode({'text': query}),
api_key=api_key,
nb_per_page=nb_per_page,
page=params['pageno'])
2014-05-10 11:56:19 +02:00
return params
def response(resp):
results = []
2015-01-13 17:13:08 +01:00
2015-01-13 16:40:30 +01:00
search_results = loads(resp.text)
2014-05-27 12:13:54 +02:00
2015-01-13 16:40:30 +01:00
# return empty array if there are no results
if not 'photos' in search_results:
return []
if not 'photo' in search_results['photos']:
return []
2014-05-27 12:13:54 +02:00
2015-01-13 16:40:30 +01:00
photos = search_results['photos']['photo']
2014-05-27 12:13:54 +02:00
2015-01-13 16:40:30 +01:00
# parse results
for photo in photos:
if 'url_o' in photo:
img_src = photo['url_o']
elif 'url_z' in photo:
img_src = photo['url_z']
else:
2014-05-10 11:56:19 +02:00
continue
2014-05-27 12:13:54 +02:00
2015-01-13 16:40:30 +01:00
url = build_flickr_url(photo['owner'], photo['id'])
title = photo['title']
2015-01-13 17:13:08 +01:00
content = '<span class="photo-author">' +\
photo['ownername'] +\
'</span><br />' +\
'<span class="description">' +\
photo['description']['_content'] +\
'</span>'
2015-01-13 16:40:30 +01:00
# append result
results.append({'url': url,
2014-05-10 11:56:19 +02:00
'title': title,
'img_src': img_src,
2015-01-13 16:40:30 +01:00
'content': content,
2014-05-10 11:56:19 +02:00
'template': 'images.html'})
2015-01-13 16:40:30 +01:00
# return results
2014-05-10 11:56:19 +02:00
return results