2021-01-13 10:31:25 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-02-12 23:37:29 +00:00
|
|
|
"""
|
|
|
|
APK Mirror
|
|
|
|
"""
|
|
|
|
|
2020-08-06 15:42:46 +00:00
|
|
|
from urllib.parse import urlencode
|
2019-02-12 23:37:29 +00:00
|
|
|
from lxml import html
|
2020-11-26 14:49:33 +00:00
|
|
|
from searx.utils import extract_text, eval_xpath_list, eval_xpath_getindex
|
2020-08-06 15:42:46 +00:00
|
|
|
|
2021-01-13 10:31:25 +00:00
|
|
|
# about
|
|
|
|
about = {
|
|
|
|
"website": 'https://www.apkmirror.com',
|
|
|
|
"wikidata_id": None,
|
|
|
|
"official_api_documentation": None,
|
|
|
|
"use_official_api": False,
|
|
|
|
"require_api_key": False,
|
|
|
|
"results": 'HTML',
|
|
|
|
}
|
2019-02-12 23:37:29 +00:00
|
|
|
|
|
|
|
# engine dependent config
|
|
|
|
categories = ['it']
|
|
|
|
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
|
|
|
|
|
|
|
|
# search-url
|
|
|
|
base_url = 'https://www.apkmirror.com'
|
|
|
|
search_url = base_url + '/?post_type=app_release&searchtype=apk&page={pageno}&{query}'
|
|
|
|
|
|
|
|
|
|
|
|
# do search-request
|
|
|
|
def request(query, params):
|
|
|
|
|
|
|
|
params['url'] = search_url.format(pageno=params['pageno'],
|
|
|
|
query=urlencode({'s': query}))
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
|
|
|
# get response from search-request
|
|
|
|
def response(resp):
|
|
|
|
results = []
|
|
|
|
|
|
|
|
dom = html.fromstring(resp.text)
|
|
|
|
|
|
|
|
# parse results
|
2021-02-09 10:02:12 +00:00
|
|
|
for result in eval_xpath_list(dom, './/div[@id="content"]/div[@class="listWidget"]//div[@class="appRow"]'):
|
2019-02-12 23:37:29 +00:00
|
|
|
|
2020-11-26 14:49:33 +00:00
|
|
|
link = eval_xpath_getindex(result, './/h5/a', 0)
|
2019-02-12 23:37:29 +00:00
|
|
|
url = base_url + link.attrib.get('href') + '#downloads'
|
|
|
|
title = extract_text(link)
|
2020-11-26 14:49:33 +00:00
|
|
|
thumbnail_src = base_url\
|
|
|
|
+ eval_xpath_getindex(result, './/img', 0).attrib.get('src').replace('&w=32&h=32', '&w=64&h=64')
|
2019-02-12 23:37:29 +00:00
|
|
|
|
|
|
|
res = {
|
|
|
|
'url': url,
|
|
|
|
'title': title,
|
|
|
|
'thumbnail_src': thumbnail_src
|
|
|
|
}
|
|
|
|
|
|
|
|
# append result
|
|
|
|
results.append(res)
|
|
|
|
|
|
|
|
# return results
|
|
|
|
return results
|