Selaa lähdekoodia

[fix] convert json engine result attributes to string - closes #1006

Adam Tauber 7 vuotta sitten
vanhempi
commit
0969e50c5b
2 muutettua tiedostoa jossa 23 lisäystä ja 2 poistoa
  1. 11
    2
      searx/engines/json_engine.py
  2. 12
    0
      searx/utils.py

+ 11
- 2
searx/engines/json_engine.py Näytä tiedosto

@@ -2,6 +2,7 @@ from collections import Iterable
2 2
 from json import loads
3 3
 from sys import version_info
4 4
 from searx.url_utils import urlencode
5
+from searx.utils import to_string
5 6
 
6 7
 if version_info[0] == 3:
7 8
     unicode = str
@@ -111,14 +112,22 @@ def response(resp):
111 112
                 content = query(result, content_query)[0]
112 113
             except:
113 114
                 content = ""
114
-            results.append({'url': url, 'title': title, 'content': content})
115
+            results.append({
116
+                'url': to_string(url),
117
+                'title': to_string(title),
118
+                'content': to_string(content),
119
+            })
115 120
     else:
116 121
         for url, title, content in zip(
117 122
             query(json, url_query),
118 123
             query(json, title_query),
119 124
             query(json, content_query)
120 125
         ):
121
-            results.append({'url': url, 'title': title, 'content': content})
126
+            results.append({
127
+                'url': to_string(url),
128
+                'title': to_string(title),
129
+                'content': to_string(content),
130
+            })
122 131
 
123 132
     if not suggestion_query:
124 133
         return results

+ 12
- 0
searx/utils.py Näytä tiedosto

@@ -7,6 +7,7 @@ import re
7 7
 from babel.dates import format_date
8 8
 from codecs import getincrementalencoder
9 9
 from imp import load_source
10
+from numbers import Number
10 11
 from os.path import splitext, join
11 12
 from random import choice
12 13
 import sys
@@ -336,3 +337,14 @@ def new_hmac(secret_key, url):
336 337
         return hmac.new(bytes(secret_key), url, hashlib.sha256).hexdigest()
337 338
     else:
338 339
         return hmac.new(bytes(secret_key, 'utf-8'), url, hashlib.sha256).hexdigest()
340
+
341
+
342
+def to_string(obj):
343
+    if isinstance(obj, basestring):
344
+        return obj
345
+    if isinstance(obj, Number):
346
+        return unicode(obj)
347
+    if hasattr(obj, '__str__'):
348
+        return obj.__str__()
349
+    if hasattr(obj, '__repr__'):
350
+        return obj.__repr__()