mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00

To get images with higher resolutions, the img_src can be calculated from the thumbnail_src. WIP: The calculated img_src is not valid for all images, some calculated URIs will end in a `Forbidden` response. I can reproduce it for example with a `!deviantart dali` query: The URI that is calculated for the image with the title `Dali - Pencil` results in a `Forbidden` response. DEBUG searx.engines.deviantart : Dali - Pencil: /v1/fit/w_300,h_592 --> /v1/fit/w_648,h_1280 https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/d5f45947-64b5-4168-bbdc-a5b763e6a10d/d1kvvlh-78d4e8a5-de18-4077-98e1-e282002805a0.jpg/v1/fit/w_648,h_1280,q_70,strp/dali___pencil_by_ckoffler_d1kvvlh-300w.jpg?token=.... Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
108 lines
2.8 KiB
Python
108 lines
2.8 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# lint: pylint
|
|
"""
|
|
Deviantart (Images)
|
|
"""
|
|
|
|
import re
|
|
from urllib.parse import urlencode
|
|
from lxml import html
|
|
|
|
# about
|
|
about = {
|
|
"website": 'https://www.deviantart.com/',
|
|
"wikidata_id": 'Q46523',
|
|
"official_api_documentation": 'https://www.deviantart.com/developers/',
|
|
"use_official_api": False,
|
|
"require_api_key": False,
|
|
"results": 'HTML',
|
|
}
|
|
|
|
# engine dependent config
|
|
categories = ['images']
|
|
paging = True
|
|
time_range_support = True
|
|
|
|
time_range_dict = {
|
|
'day': 'popular-24-hours',
|
|
'week': 'popular-1-week',
|
|
'month': 'popular-1-month',
|
|
'year': 'most-recent',
|
|
}
|
|
|
|
# search-url
|
|
base_url = 'https://www.deviantart.com'
|
|
w_h_pattern = re.compile(r'/v1/fit/w_([^,]*),h_([^,]*)')
|
|
w_h_format = '/v1/fit/w_%(w)s,h_%(h)s'
|
|
max_size = 1280
|
|
|
|
|
|
def request(query, params):
|
|
|
|
# https://www.deviantart.com/search/deviations?page=5&q=foo
|
|
|
|
query = {
|
|
'page': params['pageno'],
|
|
'q': query,
|
|
}
|
|
if params['time_range'] in time_range_dict:
|
|
query['order'] = time_range_dict[params['time_range']]
|
|
|
|
params['url'] = base_url + '/search/deviations?' + urlencode(query)
|
|
|
|
return params
|
|
|
|
|
|
def response(resp):
|
|
|
|
results = []
|
|
|
|
dom = html.fromstring(resp.text)
|
|
|
|
for row in dom.xpath('//div[contains(@data-hook, "content_row")]'):
|
|
for result in row.xpath('./div'):
|
|
|
|
a_tag = result.xpath('.//a[@data-hook="deviation_link"]')[0]
|
|
noscript_tag = a_tag.xpath('.//noscript')
|
|
|
|
if noscript_tag:
|
|
img_tag = noscript_tag[0].xpath('.//img')
|
|
else:
|
|
img_tag = a_tag.xpath('.//img')
|
|
if not img_tag:
|
|
continue
|
|
img_tag = img_tag[0]
|
|
|
|
url = a_tag.attrib.get('href')
|
|
title = img_tag.attrib.get('alt')
|
|
img_src = thumbnail_src = img_tag.attrib.get('src')
|
|
|
|
w_h = w_h_pattern.search(thumbnail_src)
|
|
if w_h:
|
|
# calc img_src with higher solution / aspect raitio
|
|
w = int(w_h[1])
|
|
h = int(w_h[2])
|
|
if w > h:
|
|
fact = max_size / w
|
|
else:
|
|
fact = max_size / h
|
|
|
|
w = int(fact * w)
|
|
h = int(fact * h)
|
|
|
|
old_uri = w_h[0]
|
|
new_uri = w_h_format % dict(w=w, h=h)
|
|
logger.debug("%s: %s --> %s", title, old_uri, new_uri)
|
|
img_src = img_src.replace(old_uri, new_uri)
|
|
|
|
results.append(
|
|
{
|
|
'template': 'images.html',
|
|
'url': url,
|
|
'img_src': img_src,
|
|
'thumbnail_src': thumbnail_src,
|
|
'title': title,
|
|
}
|
|
)
|
|
|
|
return results
|