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/dailymotion.py

66 lines
1.6 KiB
Python
Raw Normal View History

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