forked from zaclys/searxng
initial implemention of autocompletion in opensearch.xml
This commit is contained in:
parent
360543dec4
commit
cc7f3cb617
|
@ -6,9 +6,18 @@
|
||||||
<LongName>searx metasearch</LongName>
|
<LongName>searx metasearch</LongName>
|
||||||
{% if method == 'get' %}
|
{% if method == 'get' %}
|
||||||
<Url type="text/html" method="get" template="{{ host }}?q={searchTerms}"/>
|
<Url type="text/html" method="get" template="{{ host }}?q={searchTerms}"/>
|
||||||
|
<Url type="application/x-suggestions+json" method="get" template="{{ host }}autocompleter">
|
||||||
|
<Param name="format" value="x-suggestions" />
|
||||||
|
<Param name="q" value="{searchTerms}" />
|
||||||
|
</Url>
|
||||||
{% else %}
|
{% else %}
|
||||||
<Url type="text/html" method="post" template="{{ host }}">
|
<Url type="text/html" method="post" template="{{ host }}">
|
||||||
<Param name="q" value="{searchTerms}" />
|
<Param name="q" value="{searchTerms}" />
|
||||||
</Url>
|
</Url>
|
||||||
|
<!-- TODO, POST REQUEST doesn't work -->
|
||||||
|
<Url type="application/x-suggestions+json" method="get" template="{{ host }}autocompleter">
|
||||||
|
<Param name="format" value="x-suggestions" />
|
||||||
|
<Param name="q" value="{searchTerms}" />
|
||||||
|
</Url>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</OpenSearchDescription>
|
</OpenSearchDescription>
|
||||||
|
|
|
@ -233,8 +233,15 @@ def autocompleter():
|
||||||
|
|
||||||
# TODO fix XSS-vulnerability, remove test code
|
# TODO fix XSS-vulnerability, remove test code
|
||||||
autocompleter.querry = request_data.get('q')
|
autocompleter.querry = request_data.get('q')
|
||||||
autocompleter.results = [autocompleter.querry]
|
autocompleter.results = []
|
||||||
|
|
||||||
|
if autocompleter.querry:
|
||||||
|
autocompleter.results = [autocompleter.querry + "-searx",autocompleter.querry + " asfded",autocompleter.querry + " asdf"]
|
||||||
|
|
||||||
|
if request_data.get('format') == 'x-suggestions':
|
||||||
|
return Response(json.dumps([autocompleter.querry,autocompleter.results]),
|
||||||
|
mimetype='application/json')
|
||||||
|
else:
|
||||||
return Response(json.dumps(autocompleter.results),
|
return Response(json.dumps(autocompleter.results),
|
||||||
mimetype='application/json')
|
mimetype='application/json')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue