mirror of
https://github.com/searxng/searxng
synced 2024-11-05 06:01:05 +00:00
Merge pull request #862 from return42/fix-858
[fix] solidtorrents engine - JSON API no longer exists
This commit is contained in:
commit
ae804ddf40
@ -1,51 +1,89 @@
|
|||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
# lint: pylint
|
# lint: pylint
|
||||||
"""Solid Torrents
|
"""SolidTorrents
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from json import loads
|
from datetime import datetime
|
||||||
from urllib.parse import urlencode
|
from urllib.parse import urlencode
|
||||||
|
import random
|
||||||
|
|
||||||
|
from lxml import html
|
||||||
|
|
||||||
|
from searx.utils import (
|
||||||
|
extract_text,
|
||||||
|
eval_xpath,
|
||||||
|
eval_xpath_getindex,
|
||||||
|
eval_xpath_list,
|
||||||
|
get_torrent_size,
|
||||||
|
)
|
||||||
|
|
||||||
about = {
|
about = {
|
||||||
"website": 'https://www.solidtorrents.net/',
|
"website": 'https://www.solidtorrents.net/',
|
||||||
"wikidata_id": None,
|
"wikidata_id": None,
|
||||||
"official_api_documentation": None,
|
"official_api_documentation": None,
|
||||||
"use_official_api": True,
|
"use_official_api": False,
|
||||||
"require_api_key": False,
|
"require_api_key": False,
|
||||||
"results": 'JSON',
|
"results": 'HTML',
|
||||||
}
|
}
|
||||||
|
|
||||||
categories = ['files']
|
categories = ['files']
|
||||||
paging = True
|
paging = True
|
||||||
|
|
||||||
base_url = 'https://www.solidtorrents.net/'
|
# base_url can be overwritten by a list of URLs in the settings.yml
|
||||||
search_url = base_url + 'api/v1/search?{query}'
|
base_url = 'https://solidtorrents.net'
|
||||||
|
|
||||||
|
|
||||||
def request(query, params):
|
def request(query, params):
|
||||||
skip = (params['pageno'] - 1) * 20
|
if isinstance(base_url, list):
|
||||||
query = urlencode({'q': query, 'skip': skip})
|
params['base_url'] = random.choice(base_url)
|
||||||
|
else:
|
||||||
|
params['base_url'] = base_url
|
||||||
|
search_url = params['base_url'] + '/search?{query}'
|
||||||
|
page = (params['pageno'] - 1) * 20
|
||||||
|
query = urlencode({'q': query, 'page': page})
|
||||||
params['url'] = search_url.format(query=query)
|
params['url'] = search_url.format(query=query)
|
||||||
logger.debug("query_url --> %s", params['url'])
|
|
||||||
return params
|
return params
|
||||||
|
|
||||||
|
|
||||||
def response(resp):
|
def response(resp):
|
||||||
results = []
|
results = []
|
||||||
search_results = loads(resp.text)
|
dom = html.fromstring(resp.text)
|
||||||
|
|
||||||
for result in search_results["results"]:
|
for result in eval_xpath(dom, '//div[contains(@class, "search-result")]'):
|
||||||
results.append(
|
a = eval_xpath_getindex(result, './div/h5/a', 0, None)
|
||||||
{
|
if a is None:
|
||||||
'infohash': result["infohash"],
|
continue
|
||||||
'seed': result["swarm"]["seeders"],
|
title = extract_text(a)
|
||||||
'leech': result["swarm"]["leechers"],
|
url = eval_xpath_getindex(a, '@href', 0, None)
|
||||||
'title': result["title"],
|
categ = eval_xpath(result, './div//a[contains(@class, "category")]')
|
||||||
'url': "https://solidtorrents.net/view/" + result["_id"],
|
metadata = extract_text(categ)
|
||||||
'filesize': result["size"],
|
stats = eval_xpath_list(result, './div//div[contains(@class, "stats")]/div', min_len=5)
|
||||||
'magnetlink': result["magnet"],
|
n, u = extract_text(stats[1]).split()
|
||||||
|
filesize = get_torrent_size(n, u)
|
||||||
|
leech = extract_text(stats[2])
|
||||||
|
seed = extract_text(stats[3])
|
||||||
|
torrentfile = eval_xpath_getindex(result, './div//a[contains(@class, "dl-torrent")]/@href', 0, None)
|
||||||
|
magnet = eval_xpath_getindex(result, './div//a[contains(@class, "dl-magnet")]/@href', 0, None)
|
||||||
|
|
||||||
|
params = {
|
||||||
|
'seed': seed,
|
||||||
|
'leech': leech,
|
||||||
|
'title': title,
|
||||||
|
'url': resp.search_params['base_url'] + url,
|
||||||
|
'filesize': filesize,
|
||||||
|
'magnetlink': magnet,
|
||||||
|
'torrentfile': torrentfile,
|
||||||
|
'metadata': metadata,
|
||||||
'template': "torrent.html",
|
'template': "torrent.html",
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
date_str = extract_text(stats[4])
|
||||||
|
|
||||||
|
try:
|
||||||
|
params['publishedDate'] = datetime.strptime(date_str, '%b %d, %Y')
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
results.append(params)
|
||||||
|
|
||||||
return results
|
return results
|
||||||
|
@ -1257,8 +1257,13 @@ engines:
|
|||||||
- name: solidtorrents
|
- name: solidtorrents
|
||||||
engine: solidtorrents
|
engine: solidtorrents
|
||||||
shortcut: solid
|
shortcut: solid
|
||||||
timeout: 3.0
|
timeout: 4.0
|
||||||
disabled: false
|
disabled: false
|
||||||
|
base_url:
|
||||||
|
- https://solidtorrents.net
|
||||||
|
- https://solidtorrents.eu
|
||||||
|
- https://solidtorrents.to
|
||||||
|
- https://bitsearch.to
|
||||||
|
|
||||||
# For this demo of the sqlite engine download:
|
# For this demo of the sqlite engine download:
|
||||||
# https://liste.mediathekview.de/filmliste-v2.db.bz2
|
# https://liste.mediathekview.de/filmliste-v2.db.bz2
|
||||||
|
Loading…
Reference in New Issue
Block a user