Kaynağa Gözat

add optional request with GET method for search and results pages

Matej Cotman 11 yıl önce
ebeveyn
işleme
32e98967b7

+ 9
- 0
searx/templates/preferences.html Dosyayı Görüntüle

@@ -44,6 +44,15 @@
44 44
         </p>
45 45
     </fieldset>
46 46
     <fieldset>
47
+        <legend>{{ _('Method') }}</legend>
48
+        <p>
49
+        <select name='method'>
50
+            <option value="POST" {% if method == 'POST' %}selected="selected"{% endif %}>POST</option>
51
+            <option value="GET" {% if method == 'GET' %}selected="selected"{% endif %}>GET</option>
52
+        </select>
53
+        </p>
54
+    </fieldset>
55
+    <fieldset>
47 56
     <legend>{{ _('Currently used search engines') }}</legend>
48 57
 
49 58
     <table>

+ 4
- 4
searx/templates/results.html Dosyayı Görüntüle

@@ -10,7 +10,7 @@
10 10
         {% if suggestions %}
11 11
         <div id="suggestions"><span>{{ _('Suggestions') }}</span>
12 12
             {% for suggestion in suggestions %}
13
-            <form method="post" action="{{ url_for('index') }}">
13
+            <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
14 14
                 <input type="hidden" name="q" value="{{ suggestion }}">
15 15
                 <input type="submit" value="{{ suggestion }}" />
16 16
             </form>
@@ -25,7 +25,7 @@
25 25
         <div id="apis">
26 26
         {{ _('Download results') }}
27 27
         {% for output_type in ('csv', 'json', 'rss') %}
28
-        <form method="post" action="{{ url_for('index') }}">
28
+        <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
29 29
             <div class="left">
30 30
             <input type="hidden" name="q" value="{{ q }}" />
31 31
             <input type="hidden" name="format" value="{{ output_type }}" />
@@ -52,7 +52,7 @@
52 52
     {% if paging %}
53 53
     <div id="pagination">
54 54
         {% if pageno > 1 %}
55
-            <form method="post" action="{{ url_for('index') }}">
55
+            <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
56 56
                 <div class="left">
57 57
                 <input type="hidden" name="q" value="{{ q }}" />
58 58
                 {% for category in selected_categories %}
@@ -63,7 +63,7 @@
63 63
                 </div>
64 64
             </form>
65 65
         {% endif %}
66
-        <form method="post" action="{{ url_for('index') }}">
66
+        <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
67 67
             <div class="left">
68 68
             {% for category in selected_categories %}
69 69
             <input type="hidden" name="category_{{ category }}" value="1"/>

+ 1
- 1
searx/templates/search.html Dosyayı Görüntüle

@@ -1,4 +1,4 @@
1
-<form method="post" action="{{ url_for('index') }}" id="search_form">
1
+<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form">
2 2
   <div id="search_wrapper">
3 3
     <input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
4 4
     <input type="submit" value="search" id="search_submit" />

+ 7
- 0
searx/webapp.py Dosyayı Görüntüle

@@ -123,6 +123,8 @@ def render(template_name, **kwargs):
123 123
     if not 'autocomplete' in kwargs:
124 124
         kwargs['autocomplete'] = autocomplete
125 125
 
126
+    kwargs['method'] = request.cookies.get('method', 'POST')
127
+
126 128
     return render_template(template_name, **kwargs)
127 129
 
128 130
 
@@ -295,6 +297,7 @@ def preferences():
295 297
         selected_categories = []
296 298
         locale = None
297 299
         autocomplete = ''
300
+        method = 'POST'
298 301
         for pd_name, pd in request.form.items():
299 302
             if pd_name.startswith('category_'):
300 303
                 category = pd_name[9:]
@@ -309,6 +312,8 @@ def preferences():
309 312
                                             pd in (x[0] for
310 313
                                                    x in language_codes)):
311 314
                 lang = pd
315
+            elif pd_name == 'method':
316
+                method = pd
312 317
             elif pd_name.startswith('engine_'):
313 318
                 engine_name = pd_name.replace('engine_', '', 1)
314 319
                 if engine_name in engines:
@@ -348,6 +353,8 @@ def preferences():
348 353
                 max_age=cookie_max_age
349 354
             )
350 355
 
356
+        resp.set_cookie('method', method, max_age=cookie_max_age)
357
+
351 358
         return resp
352 359
     return render('preferences.html',
353 360
                   locales=settings['locales'],