Browse Source

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

Adam Tauber 7 years ago
parent
commit
0969e50c5b
2 changed files with 23 additions and 2 deletions
  1. 11
    2
      searx/engines/json_engine.py
  2. 12
    0
      searx/utils.py

+ 11
- 2
searx/engines/json_engine.py View File

2
 from json import loads
2
 from json import loads
3
 from sys import version_info
3
 from sys import version_info
4
 from searx.url_utils import urlencode
4
 from searx.url_utils import urlencode
5
+from searx.utils import to_string
5
 
6
 
6
 if version_info[0] == 3:
7
 if version_info[0] == 3:
7
     unicode = str
8
     unicode = str
111
                 content = query(result, content_query)[0]
112
                 content = query(result, content_query)[0]
112
             except:
113
             except:
113
                 content = ""
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
     else:
120
     else:
116
         for url, title, content in zip(
121
         for url, title, content in zip(
117
             query(json, url_query),
122
             query(json, url_query),
118
             query(json, title_query),
123
             query(json, title_query),
119
             query(json, content_query)
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
     if not suggestion_query:
132
     if not suggestion_query:
124
         return results
133
         return results

+ 12
- 0
searx/utils.py View File

7
 from babel.dates import format_date
7
 from babel.dates import format_date
8
 from codecs import getincrementalencoder
8
 from codecs import getincrementalencoder
9
 from imp import load_source
9
 from imp import load_source
10
+from numbers import Number
10
 from os.path import splitext, join
11
 from os.path import splitext, join
11
 from random import choice
12
 from random import choice
12
 import sys
13
 import sys
336
         return hmac.new(bytes(secret_key), url, hashlib.sha256).hexdigest()
337
         return hmac.new(bytes(secret_key), url, hashlib.sha256).hexdigest()
337
     else:
338
     else:
338
         return hmac.new(bytes(secret_key, 'utf-8'), url, hashlib.sha256).hexdigest()
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__()