2015-01-07 10:48:36 +00:00
|
|
|
# Vimeo (Videos)
|
2014-12-07 15:37:56 +00:00
|
|
|
#
|
2014-09-01 15:10:25 +00:00
|
|
|
# @website https://vimeo.com/
|
2014-12-07 15:37:56 +00:00
|
|
|
# @provide-api yes (http://developer.vimeo.com/api),
|
|
|
|
# they have a maximum count of queries/hour
|
|
|
|
#
|
2014-09-01 15:10:25 +00:00
|
|
|
# @using-api no (TODO, rewrite to api)
|
|
|
|
# @results HTML (using search portal)
|
|
|
|
# @stable no (HTML can change)
|
2015-01-05 01:04:23 +00:00
|
|
|
# @parse url, title, publishedDate, thumbnail, embedded
|
2014-09-01 15:10:25 +00:00
|
|
|
#
|
|
|
|
# @todo rewrite to api
|
|
|
|
# @todo set content-parameter with correct data
|
|
|
|
|
2014-01-05 21:10:46 +00:00
|
|
|
from urllib import urlencode
|
2014-01-06 21:15:46 +00:00
|
|
|
from lxml import html
|
2015-01-07 10:48:36 +00:00
|
|
|
from HTMLParser import HTMLParser
|
2014-03-24 11:04:07 +00:00
|
|
|
from searx.engines.xpath import extract_text
|
2014-03-18 14:56:22 +00:00
|
|
|
from dateutil import parser
|
2014-01-05 21:10:46 +00:00
|
|
|
|
2014-09-01 15:10:25 +00:00
|
|
|
# engine dependent config
|
|
|
|
categories = ['videos']
|
|
|
|
paging = True
|
2014-01-05 21:10:46 +00:00
|
|
|
|
2014-09-01 15:10:25 +00:00
|
|
|
# search-url
|
2015-04-26 16:13:09 +00:00
|
|
|
base_url = 'https://vimeo.com'
|
2014-09-01 15:10:25 +00:00
|
|
|
search_url = base_url + '/search/page:{pageno}?{query}'
|
|
|
|
|
|
|
|
# specific xpath variables
|
2015-06-12 17:53:38 +00:00
|
|
|
results_xpath = '//div[contains(@class,"results_grid")]/ul/li'
|
|
|
|
url_xpath = './/a/@href'
|
|
|
|
title_xpath = './/span[@class="title"]'
|
|
|
|
thumbnail_xpath = './/img[@class="js-clip_thumbnail_image"]/@src'
|
|
|
|
publishedDate_xpath = './/time/attribute::datetime'
|
2014-01-05 21:10:46 +00:00
|
|
|
|
2015-01-05 01:04:23 +00:00
|
|
|
embedded_url = '<iframe data-src="//player.vimeo.com/video{videoid}" ' +\
|
|
|
|
'width="540" height="304" frameborder="0" ' +\
|
|
|
|
'webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>'
|
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2014-09-01 15:10:25 +00:00
|
|
|
# do search-request
|
2014-01-05 21:10:46 +00:00
|
|
|
def request(query, params):
|
2014-12-07 15:37:56 +00:00
|
|
|
params['url'] = search_url.format(pageno=params['pageno'],
|
2014-09-01 15:10:25 +00:00
|
|
|
query=urlencode({'q': query}))
|
|
|
|
|
2014-01-05 21:10:46 +00:00
|
|
|
return params
|
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2014-09-01 15:10:25 +00:00
|
|
|
# get response from search-request
|
2014-01-05 21:10:46 +00:00
|
|
|
def response(resp):
|
|
|
|
results = []
|
2014-09-01 15:10:25 +00:00
|
|
|
|
2014-01-05 21:10:46 +00:00
|
|
|
dom = html.fromstring(resp.text)
|
2014-01-06 21:15:46 +00:00
|
|
|
p = HTMLParser()
|
2014-01-11 10:14:46 +00:00
|
|
|
|
2014-09-01 15:10:25 +00:00
|
|
|
# parse results
|
2014-01-06 21:15:46 +00:00
|
|
|
for result in dom.xpath(results_xpath):
|
2015-01-05 01:04:23 +00:00
|
|
|
videoid = result.xpath(url_xpath)[0]
|
|
|
|
url = base_url + videoid
|
2014-01-06 21:15:46 +00:00
|
|
|
title = p.unescape(extract_text(result.xpath(title_xpath)))
|
2015-06-12 17:53:38 +00:00
|
|
|
thumbnail = extract_text(result.xpath(thumbnail_xpath)[0])
|
2015-01-31 18:49:54 +00:00
|
|
|
publishedDate = parser.parse(extract_text(result.xpath(publishedDate_xpath)[0]))
|
2015-01-05 01:04:23 +00:00
|
|
|
embedded = embedded_url.format(videoid=videoid)
|
2014-03-18 14:56:22 +00:00
|
|
|
|
2014-09-01 15:10:25 +00:00
|
|
|
# append result
|
2014-01-20 01:31:20 +00:00
|
|
|
results.append({'url': url,
|
|
|
|
'title': title,
|
2014-09-01 15:10:25 +00:00
|
|
|
'content': '',
|
2014-01-20 01:31:20 +00:00
|
|
|
'template': 'videos.html',
|
2014-03-18 14:56:22 +00:00
|
|
|
'publishedDate': publishedDate,
|
2015-01-05 01:04:23 +00:00
|
|
|
'embedded': embedded,
|
2014-01-20 01:31:20 +00:00
|
|
|
'thumbnail': thumbnail})
|
2014-09-01 15:10:25 +00:00
|
|
|
|
|
|
|
# return results
|
2014-01-05 21:10:46 +00:00
|
|
|
return results
|