mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 09:00:02 +00:00
[mod] add option max_page
Related: https://github.com/searxng/searxng/issues/2982 Closes: https://github.com/searxng/searxng/issues/2972 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
1e0813fd3a
commit
2274d55d5a
8 changed files with 12 additions and 0 deletions
|
@ -45,6 +45,7 @@ ENGINE_DEFAULT_ARGS = {
|
|||
"using_tor_proxy": False,
|
||||
"send_accept_language_header": False,
|
||||
"tokens": [],
|
||||
"max_page": 0,
|
||||
}
|
||||
# set automatically when an engine does not have any tab category
|
||||
DEFAULT_CATEGORY = 'other'
|
||||
|
|
|
@ -48,6 +48,7 @@ about = {
|
|||
# engine dependent config
|
||||
categories = ['general', 'web']
|
||||
paging = True
|
||||
max_page = 50
|
||||
time_range_support = True
|
||||
safesearch = True
|
||||
|
||||
|
|
|
@ -47,6 +47,7 @@ about = {
|
|||
# engine dependent config
|
||||
categories = ['images', 'web']
|
||||
paging = True
|
||||
max_page = 50
|
||||
time_range_support = True
|
||||
safesearch = True
|
||||
send_accept_language_header = True
|
||||
|
|
|
@ -51,6 +51,7 @@ about = {
|
|||
# engine dependent config
|
||||
categories = ['science', 'scientific publications']
|
||||
paging = True
|
||||
max_page = 50
|
||||
language_support = True
|
||||
time_range_support = True
|
||||
safesearch = False
|
||||
|
|
|
@ -57,6 +57,7 @@ about = {
|
|||
|
||||
categories = ['videos', 'web']
|
||||
paging = True
|
||||
max_page = 50
|
||||
language_support = True
|
||||
time_range_support = True
|
||||
safesearch = True
|
||||
|
|
|
@ -150,6 +150,11 @@ class EngineProcessor(ABC):
|
|||
if search_query.pageno > 1 and not self.engine.paging:
|
||||
return None
|
||||
|
||||
# if max page is reached, skip
|
||||
max_page = self.engine.max_page or settings['search']['max_page']
|
||||
if max_page and max_page < search_query.pageno:
|
||||
return None
|
||||
|
||||
# if time_range is not supported, skip
|
||||
if search_query.time_range and not self.engine.time_range_support:
|
||||
return None
|
||||
|
|
|
@ -32,6 +32,7 @@ search:
|
|||
# Default search language - leave blank to detect from browser information or
|
||||
# use codes from 'languages.py'
|
||||
default_lang: "auto"
|
||||
# max_page: 0 # if engine supports paging, 0 means unlimited numbers of pages
|
||||
# Available languages
|
||||
# languages:
|
||||
# - all
|
||||
|
|
|
@ -169,6 +169,7 @@ SCHEMA = {
|
|||
'recaptcha_SearxEngineCaptcha': SettingsValue(numbers.Real, 604800),
|
||||
},
|
||||
'formats': SettingsValue(list, OUTPUT_FORMATS),
|
||||
'max_page': SettingsValue(int, 0),
|
||||
},
|
||||
'server': {
|
||||
'port': SettingsValue((int, str), 8888, 'SEARXNG_PORT'),
|
||||
|
|
Loading…
Reference in a new issue