2015-05-02 13:45:17 +00:00
|
|
|
"""
|
|
|
|
Subtitleseeker (Video)
|
|
|
|
|
|
|
|
@website http://www.subtitleseeker.com
|
|
|
|
@provide-api no
|
|
|
|
|
|
|
|
@using-api no
|
|
|
|
@results HTML
|
|
|
|
@stable no (HTML can change)
|
|
|
|
@parse url, title, content
|
|
|
|
"""
|
2014-12-22 00:00:16 +00:00
|
|
|
|
|
|
|
from cgi import escape
|
|
|
|
from urllib import quote_plus
|
|
|
|
from lxml import html
|
2014-12-24 20:02:26 +00:00
|
|
|
from searx.languages import language_codes
|
2015-02-06 15:39:59 +00:00
|
|
|
from searx.engines.xpath import extract_text
|
2014-12-22 00:00:16 +00:00
|
|
|
|
|
|
|
# engine dependent config
|
|
|
|
categories = ['videos']
|
|
|
|
paging = True
|
2014-12-23 00:51:07 +00:00
|
|
|
language = ""
|
2014-12-22 00:00:16 +00:00
|
|
|
|
|
|
|
# search-url
|
|
|
|
url = 'http://www.subtitleseeker.com/'
|
2015-02-06 15:39:59 +00:00
|
|
|
search_url = url + 'search/TITLES/{query}&p={pageno}'
|
2014-12-22 00:00:16 +00:00
|
|
|
|
|
|
|
# specific xpath variables
|
|
|
|
results_xpath = '//div[@class="boxRows"]'
|
|
|
|
|
|
|
|
|
|
|
|
# do search-request
|
|
|
|
def request(query, params):
|
|
|
|
params['url'] = search_url.format(query=quote_plus(query),
|
|
|
|
pageno=params['pageno'])
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
|
|
|
# get response from search-request
|
|
|
|
def response(resp):
|
|
|
|
results = []
|
|
|
|
|
|
|
|
dom = html.fromstring(resp.text)
|
|
|
|
|
2014-12-24 20:02:26 +00:00
|
|
|
search_lang = ""
|
|
|
|
|
|
|
|
if resp.search_params['language'] != 'all':
|
|
|
|
search_lang = [lc[1]
|
|
|
|
for lc in language_codes
|
2015-02-06 15:39:59 +00:00
|
|
|
if lc[0][:2] == resp.search_params['language'].split('_')[0]][0]
|
2014-12-24 20:02:26 +00:00
|
|
|
|
2014-12-22 00:00:16 +00:00
|
|
|
# parse results
|
|
|
|
for result in dom.xpath(results_xpath):
|
|
|
|
link = result.xpath(".//a")[0]
|
|
|
|
href = link.attrib.get('href')
|
2014-12-23 00:51:07 +00:00
|
|
|
|
|
|
|
if language is not "":
|
2014-12-24 20:02:26 +00:00
|
|
|
href = href + language + '/'
|
|
|
|
elif search_lang:
|
|
|
|
href = href + search_lang + '/'
|
2014-12-23 00:51:07 +00:00
|
|
|
|
2015-02-06 15:39:59 +00:00
|
|
|
title = escape(extract_text(link))
|
2014-12-22 00:00:16 +00:00
|
|
|
|
2015-02-06 15:39:59 +00:00
|
|
|
content = extract_text(result.xpath('.//div[contains(@class,"red")]'))
|
2014-12-22 00:00:16 +00:00
|
|
|
content = content + " - "
|
2015-02-06 15:39:59 +00:00
|
|
|
text = extract_text(result.xpath('.//div[contains(@class,"grey-web")]')[0])
|
|
|
|
content = content + text
|
2014-12-22 00:00:16 +00:00
|
|
|
|
|
|
|
if result.xpath(".//span") != []:
|
2014-12-29 20:31:04 +00:00
|
|
|
content = content +\
|
2015-01-02 11:33:40 +00:00
|
|
|
" - (" +\
|
2015-02-06 15:39:59 +00:00
|
|
|
extract_text(result.xpath(".//span")) +\
|
2015-01-02 11:33:40 +00:00
|
|
|
")"
|
2014-12-22 00:00:16 +00:00
|
|
|
|
|
|
|
# append result
|
|
|
|
results.append({'url': href,
|
|
|
|
'title': title,
|
|
|
|
'content': escape(content)})
|
|
|
|
|
|
|
|
# return results
|
|
|
|
return results
|