mirror of https://github.com/searxng/searxng.git
Compare commits
6 Commits
bd976c64c9
...
cb67194ef8
Author | SHA1 | Date |
---|---|---|
DiamondDemon669 | cb67194ef8 | |
DiamondDemon669 | 121993abcd | |
DiamondDemon669 | eb4c237c9d | |
DiamondDemon669 | bab35de7b0 | |
DiamondDemon669 | d0488e533b | |
DiamondDemon669 | 7fd5e74ea9 |
|
@ -210,6 +210,7 @@ class PluginStore:
|
||||||
|
|
||||||
plugins = PluginStore()
|
plugins = PluginStore()
|
||||||
|
|
||||||
|
plugins.register('./query_strings.py')
|
||||||
|
|
||||||
def plugin_module_names():
|
def plugin_module_names():
|
||||||
yield_plugins = set()
|
yield_plugins = set()
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
import shlex, string
|
||||||
|
from flask_babel import gettext
|
||||||
|
|
||||||
|
name = gettext("query strings")
|
||||||
|
description = gettext('adds site:, - and "" to searx')
|
||||||
|
default_on = True
|
||||||
|
|
||||||
|
def on_result(request, search, result):
|
||||||
|
q = search.search_query.query
|
||||||
|
qs = shlex.split(q)
|
||||||
|
spitems = [x.lower() for x in qs if ' ' in x]
|
||||||
|
mitems = [x.lower() for x in qs if x.startswith('-')]
|
||||||
|
siteitems = [x.lower() for x in qs if x.startswith('site:')]
|
||||||
|
msiteitems = [x.lower() for x in qs if x.startswith('-site:')]
|
||||||
|
url, title, content = result["url"].lower(), result["title"].lower(), (result.get("content").lower() if result.get("content") else '')
|
||||||
|
if all((x not in title or x not in content) for x in spitems):
|
||||||
|
return False
|
||||||
|
if all((x in title or x in content) for x in mitems):
|
||||||
|
return False
|
||||||
|
if all(x not in url for x in siteitems):
|
||||||
|
return False
|
||||||
|
if all(x in url for x in msiteitems):
|
||||||
|
return False
|
||||||
|
return True
|
|
@ -217,7 +217,8 @@ outgoing:
|
||||||
|
|
||||||
# Comment or un-comment plugin to activate / deactivate by default.
|
# Comment or un-comment plugin to activate / deactivate by default.
|
||||||
#
|
#
|
||||||
# enabled_plugins:
|
enabled_plugins:
|
||||||
|
- 'query strings'
|
||||||
# # these plugins are enabled if nothing is configured ..
|
# # these plugins are enabled if nothing is configured ..
|
||||||
# - 'Basic Calculator'
|
# - 'Basic Calculator'
|
||||||
# - 'Hash plugin'
|
# - 'Hash plugin'
|
||||||
|
|
Loading…
Reference in New Issue