libremiami-search/searx/engines/dailymotion.py

66 lines
1.6 KiB
Python
Raw Normal View History

## Dailymotion (Videos)
#
# @website https://www.dailymotion.com
# @provide-api yes (http://www.dailymotion.com/developer)
#
# @using-api yes
# @results JSON
# @stable yes
# @parse url, title, thumbnail
#
# @todo set content-parameter with correct data
2013-12-30 22:42:37 +01:00
from urllib import urlencode
from json import loads
# engine dependent config
2013-12-30 22:42:37 +01:00
categories = ['videos']
paging = True
language_support = True
2013-12-30 22:42:37 +01:00
# search-url
2013-12-30 22:42:37 +01:00
# see http://www.dailymotion.com/doc/api/obj-video.html
search_url = 'https://api.dailymotion.com/videos?fields=title,description,duration,url,thumbnail_360_url&sort=relevance&limit=5&page={pageno}&{query}' # noqa
2014-01-30 00:01:42 +01:00
# do search-request
2013-12-30 22:42:37 +01:00
def request(query, params):
if params['language'] == 'all':
locale = 'en-US'
else:
locale = params['language']
params['url'] = search_url.format(
2014-01-30 00:01:42 +01:00
query=urlencode({'search': query, 'localization': locale}),
pageno=params['pageno'])
2013-12-30 22:42:37 +01:00
return params
# get response from search-request
2013-12-30 22:42:37 +01:00
def response(resp):
results = []
2013-12-30 22:42:37 +01:00
search_res = loads(resp.text)
# return empty array if there are no results
2013-12-30 22:42:37 +01:00
if not 'list' in search_res:
return []
# parse results
2013-12-30 22:42:37 +01:00
for res in search_res['list']:
title = res['title']
url = res['url']
#content = res['description']
content = ''
thumbnail = res['thumbnail_360_url']
results.append({'template': 'videos.html',
'url': url,
'title': title,
'content': content,
'thumbnail': thumbnail})
# return results
return results