mirror of https://github.com/searxng/searxng.git
68 lines
2.1 KiB
Python
68 lines
2.1 KiB
Python
# Vimeo (Videos)
|
|
#
|
|
# @website https://vimeo.com/
|
|
# @provide-api yes (http://developer.vimeo.com/api),
|
|
# they have a maximum count of queries/hour
|
|
#
|
|
# @using-api no (TODO, rewrite to api)
|
|
# @results HTML (using search portal)
|
|
# @stable no (HTML can change)
|
|
# @parse url, title, publishedDate, thumbnail, embedded
|
|
#
|
|
# @todo rewrite to api
|
|
# @todo set content-parameter with correct data
|
|
|
|
from json import loads
|
|
from dateutil import parser
|
|
from searx.url_utils import urlencode
|
|
|
|
# engine dependent config
|
|
categories = ['videos']
|
|
paging = True
|
|
|
|
# search-url
|
|
base_url = 'https://vimeo.com/'
|
|
search_url = base_url + '/search/page:{pageno}?{query}'
|
|
|
|
embedded_url = '<iframe data-src="//player.vimeo.com/video/{videoid}" ' +\
|
|
'width="540" height="304" frameborder="0" ' +\
|
|
'webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>'
|
|
|
|
|
|
# do search-request
|
|
def request(query, params):
|
|
params['url'] = search_url.format(pageno=params['pageno'],
|
|
query=urlencode({'q': query}))
|
|
|
|
return params
|
|
|
|
|
|
# get response from search-request
|
|
def response(resp):
|
|
results = []
|
|
data_start_pos = resp.text.find('{"filtered"')
|
|
data_end_pos = resp.text.find(';\n', data_start_pos + 1)
|
|
data = loads(resp.text[data_start_pos:data_end_pos])
|
|
|
|
# parse results
|
|
for result in data['filtered']['data']:
|
|
result = result[result['type']]
|
|
videoid = result['uri'].split('/')[-1]
|
|
url = base_url + videoid
|
|
title = result['name']
|
|
thumbnail = result['pictures']['sizes'][-1]['link']
|
|
publishedDate = parser.parse(result['created_time'])
|
|
embedded = embedded_url.format(videoid=videoid)
|
|
|
|
# append result
|
|
results.append({'url': url,
|
|
'title': title,
|
|
'content': '',
|
|
'template': 'videos.html',
|
|
'publishedDate': publishedDate,
|
|
'embedded': embedded,
|
|
'thumbnail': thumbnail})
|
|
|
|
# return results
|
|
return results
|