searx/searx/engines/deviantart.py

85 lines
2.4 KiB
Python
Raw Normal View History

"""
Deviantart (Images)
@website https://www.deviantart.com/
@provide-api yes (https://www.deviantart.com/developers/) (RSS)
@using-api no (TODO, rewrite to api)
@results HTML
@stable no (HTML can change)
@parse url, title, thumbnail_src, img_src
@todo rewrite to api
"""
2014-09-02 16:48:18 +02:00
2014-02-05 20:24:31 +01:00
from lxml import html
import re
2015-01-29 01:13:33 +01:00
from searx.engines.xpath import extract_text
2016-11-30 18:43:03 +01:00
from searx.url_utils import urlencode
2013-10-20 11:12:10 +02:00
2014-09-02 16:48:18 +02:00
# engine dependent config
2013-10-20 11:12:10 +02:00
categories = ['images']
2014-09-02 16:48:18 +02:00
paging = True
2016-07-19 10:06:47 +02:00
time_range_support = True
2013-10-20 11:12:10 +02:00
2014-09-02 16:48:18 +02:00
# search-url
2013-10-20 11:12:10 +02:00
base_url = 'https://www.deviantart.com/'
2016-01-18 12:47:31 +01:00
search_url = base_url + 'browse/all/?offset={offset}&{query}'
2016-07-19 10:06:47 +02:00
time_range_url = '&order={range}'
time_range_dict = {'day': 11,
'week': 14,
'month': 15}
2014-01-30 00:09:47 +01:00
2014-01-20 02:31:20 +01:00
2014-09-02 16:48:18 +02:00
# do search-request
2013-10-20 11:12:10 +02:00
def request(query, params):
if params['time_range'] and params['time_range'] not in time_range_dict:
return params
2014-01-30 00:09:47 +01:00
offset = (params['pageno'] - 1) * 24
2014-09-02 16:48:18 +02:00
2014-01-30 00:09:47 +01:00
params['url'] = search_url.format(offset=offset,
query=urlencode({'q': query}))
2016-07-26 00:22:05 +02:00
if params['time_range'] in time_range_dict:
2016-07-19 10:06:47 +02:00
params['url'] += time_range_url.format(range=time_range_dict[params['time_range']])
2014-09-02 16:48:18 +02:00
2013-10-20 11:12:10 +02:00
return params
2014-09-02 16:48:18 +02:00
# get response from search-request
2013-10-20 11:12:10 +02:00
def response(resp):
results = []
2014-09-02 16:48:18 +02:00
# return empty array if a redirection code is returned
2013-10-20 11:12:10 +02:00
if resp.status_code == 302:
2014-09-02 16:48:18 +02:00
return []
2013-10-20 11:12:10 +02:00
dom = html.fromstring(resp.text)
2015-01-17 19:24:35 +01:00
2016-07-11 15:29:47 +02:00
regex = re.compile(r'\/200H\/')
2014-09-02 16:48:18 +02:00
# parse results
2016-07-19 09:37:02 +02:00
for result in dom.xpath('.//span[@class="thumb wide"]'):
link = result.xpath('.//a[@class="torpedo-thumb-link"]')[0]
url = link.attrib.get('href')
title = extract_text(result.xpath('.//span[@class="title"]'))
2015-01-29 01:13:33 +01:00
thumbnail_src = link.xpath('.//img')[0].attrib.get('src')
img_src = regex.sub('/', thumbnail_src)
2014-09-02 16:48:18 +02:00
# http to https, remove domain sharding
thumbnail_src = re.sub(r"https?://(th|fc)\d+.", "https://th01.", thumbnail_src)
thumbnail_src = re.sub(r"http://", "https://", thumbnail_src)
url = re.sub(r"http://(.*)\.deviantart\.com/", "https://\\1.deviantart.com/", url)
2014-09-02 16:48:18 +02:00
# append result
2014-01-20 02:31:20 +01:00
results.append({'url': url,
'title': title,
'img_src': img_src,
'thumbnail_src': thumbnail_src,
2014-01-20 02:31:20 +01:00
'template': 'images.html'})
2014-09-02 16:48:18 +02:00
# return results
2013-10-20 11:12:10 +02:00
return results