mirror of https://github.com/searxng/searxng.git
[fix] APKMirror engine - update xpath selectors and fix img_src
BTW: make the code slightly more readable Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
ccf5ac9801
commit
96422e5c9f
1
Makefile
1
Makefile
|
@ -197,6 +197,7 @@ PYLINT_FILES=\
|
||||||
searx/engines/mediathekviewweb.py \
|
searx/engines/mediathekviewweb.py \
|
||||||
searx/engines/google_scholar.py \
|
searx/engines/google_scholar.py \
|
||||||
searx/engines/yahoo_news.py \
|
searx/engines/yahoo_news.py \
|
||||||
|
searx/engines/apkmirror.py \
|
||||||
searx_extra/update/update_external_bangs.py
|
searx_extra/update/update_external_bangs.py
|
||||||
|
|
||||||
test.pylint: pyenvinstall
|
test.pylint: pyenvinstall
|
||||||
|
|
|
@ -1,13 +1,21 @@
|
||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
"""APKMirror
|
||||||
"""
|
"""
|
||||||
APK Mirror
|
|
||||||
"""
|
# pylint: disable=invalid-name, missing-function-docstring
|
||||||
|
|
||||||
from urllib.parse import urlencode
|
from urllib.parse import urlencode
|
||||||
from lxml import html
|
from lxml import html
|
||||||
from searx.utils import extract_text, eval_xpath_list, eval_xpath_getindex
|
|
||||||
|
|
||||||
# about
|
from searx import logger
|
||||||
|
from searx.utils import (
|
||||||
|
eval_xpath_list,
|
||||||
|
eval_xpath_getindex,
|
||||||
|
extract_text,
|
||||||
|
)
|
||||||
|
|
||||||
|
logger = logger.getChild('APKMirror engine')
|
||||||
|
|
||||||
about = {
|
about = {
|
||||||
"website": 'https://www.apkmirror.com',
|
"website": 'https://www.apkmirror.com',
|
||||||
"wikidata_id": None,
|
"wikidata_id": None,
|
||||||
|
@ -18,11 +26,8 @@ about = {
|
||||||
}
|
}
|
||||||
|
|
||||||
# engine dependent config
|
# engine dependent config
|
||||||
categories = ['it']
|
categories = ['files']
|
||||||
paging = True
|
paging = True
|
||||||
|
|
||||||
# I am not 100% certain about this, as apkmirror appears to be a wordpress site,
|
|
||||||
# which might support time_range searching. If you want to implement it, go ahead.
|
|
||||||
time_range_support = False
|
time_range_support = False
|
||||||
|
|
||||||
# search-url
|
# search-url
|
||||||
|
@ -30,37 +35,34 @@ base_url = 'https://www.apkmirror.com'
|
||||||
search_url = base_url + '/?post_type=app_release&searchtype=apk&page={pageno}&{query}'
|
search_url = base_url + '/?post_type=app_release&searchtype=apk&page={pageno}&{query}'
|
||||||
|
|
||||||
|
|
||||||
# do search-request
|
|
||||||
def request(query, params):
|
def request(query, params):
|
||||||
|
params['url'] = search_url.format(
|
||||||
params['url'] = search_url.format(pageno=params['pageno'],
|
pageno = params['pageno'],
|
||||||
query=urlencode({'s': query}))
|
query = urlencode({'s': query}),
|
||||||
|
)
|
||||||
|
logger.debug("query_url --> %s", params['url'])
|
||||||
return params
|
return params
|
||||||
|
|
||||||
|
|
||||||
# get response from search-request
|
|
||||||
def response(resp):
|
def response(resp):
|
||||||
results = []
|
results = []
|
||||||
|
|
||||||
dom = html.fromstring(resp.text)
|
dom = html.fromstring(resp.text)
|
||||||
|
|
||||||
# parse results
|
# parse results
|
||||||
for result in eval_xpath_list(dom, './/div[@id="content"]/div[@class="listWidget"]//div[@class="appRow"]'):
|
for result in eval_xpath_list(dom, "//div[@id='content']//div[@class='listWidget']/div/div[@class='appRow']"):
|
||||||
|
|
||||||
link = eval_xpath_getindex(result, './/h5/a', 0)
|
link = eval_xpath_getindex(result, './/h5/a', 0)
|
||||||
|
|
||||||
url = base_url + link.attrib.get('href') + '#downloads'
|
url = base_url + link.attrib.get('href') + '#downloads'
|
||||||
title = extract_text(link)
|
title = extract_text(link)
|
||||||
thumbnail_src = base_url\
|
img_src = base_url + eval_xpath_getindex(result, './/img/@src', 0)
|
||||||
+ eval_xpath_getindex(result, './/img', 0).attrib.get('src').replace('&w=32&h=32', '&w=64&h=64')
|
|
||||||
|
|
||||||
res = {
|
res = {
|
||||||
'url': url,
|
'url': url,
|
||||||
'title': title,
|
'title': title,
|
||||||
'thumbnail_src': thumbnail_src
|
'img_src': img_src
|
||||||
}
|
}
|
||||||
|
|
||||||
# append result
|
|
||||||
results.append(res)
|
results.append(res)
|
||||||
|
|
||||||
# return results
|
|
||||||
return results
|
return results
|
||||||
|
|
Loading…
Reference in New Issue