Browse Source

[mod] int_or_zero refactored to searx_utils

misnyo 7 years ago
parent
commit
33fd938016
3 changed files with 23 additions and 29 deletions
  1. 13
    17
      searx/engines/nyaa.py
  2. 1
    12
      searx/engines/tokyotoshokan.py
  3. 9
    0
      searx/utils.py

+ 13
- 17
searx/engines/nyaa.py View File

@@ -12,7 +12,7 @@
12 12
 from lxml import html
13 13
 from searx.engines.xpath import extract_text
14 14
 from searx.url_utils import urlencode
15
-from searx.utils import get_torrent_size
15
+from searx.utils import get_torrent_size, int_or_zero
16 16
 
17 17
 # engine dependent config
18 18
 categories = ['files', 'images', 'videos', 'music']
@@ -49,14 +49,14 @@ def response(resp):
49 49
     for result in dom.xpath(xpath_results):
50 50
         # defaults
51 51
         filesize = 0
52
-        seed = 0
53
-        leech = 0
54
-        downloads = 0
55 52
         magnet_link = ""
56 53
         torrent_link = ""
57 54
 
58 55
         # category in which our torrent belongs
59
-        category = result.xpath(xpath_category)[0].attrib.get('title')
56
+        try:
57
+            category = result.xpath(xpath_category)[0].attrib.get('title')
58
+        except:
59
+            pass
60 60
 
61 61
         # torrent title
62 62
         page_a = result.xpath(xpath_title)[0]
@@ -74,12 +74,14 @@ def response(resp):
74 74
                 # link to the torrent file
75 75
                 torrent_link = url
76 76
 
77
-        # get seeders and leechers
78
-        try:
79
-            seed = int(result.xpath(xpath_seeds)[0])
80
-            leech = int(result.xpath(xpath_leeches)[0])
81
-        except:
82
-            pass
77
+        # seed count
78
+        seed = int_or_zero(result.xpath(xpath_seeds))
79
+
80
+        # leech count
81
+        leech = int_or_zero(result.xpath(xpath_leeches))
82
+
83
+        # torrent downloads count
84
+        downloads = int_or_zero(result.xpath(xpath_downloads))
83 85
 
84 86
         # let's try to calculate the torrent size
85 87
         try:
@@ -89,12 +91,6 @@ def response(resp):
89 91
         except:
90 92
             pass
91 93
 
92
-        # torrent downloads count
93
-        try:
94
-            downloads = result.xpath(xpath_downloads)[0]
95
-        except:
96
-            pass
97
-
98 94
         # content string contains all information not included into template
99 95
         content = 'Category: "{category}". Downloaded {downloads} times.'
100 96
         content = content.format(category=category, downloads=downloads)

+ 1
- 12
searx/engines/tokyotoshokan.py View File

@@ -15,7 +15,7 @@ from lxml import html
15 15
 from searx.engines.xpath import extract_text
16 16
 from datetime import datetime
17 17
 from searx.url_utils import urlencode
18
-from searx.utils import get_torrent_size
18
+from searx.utils import get_torrent_size, int_or_zero
19 19
 
20 20
 # engine dependent config
21 21
 categories = ['files', 'videos', 'music']
@@ -26,17 +26,6 @@ base_url = 'https://www.tokyotosho.info/'
26 26
 search_url = base_url + 'search.php?{query}'
27 27
 
28 28
 
29
-# convert a variable to integer or return 0 if it's not a number
30
-def int_or_zero(num):
31
-    if isinstance(num, list):
32
-        if len(num) < 1:
33
-            return 0
34
-        num = num[0]
35
-    if num.isdigit():
36
-        return int(num)
37
-    return 0
38
-
39
-
40 29
 # do search-request
41 30
 def request(query, params):
42 31
     query = urlencode({'page': params['pageno'], 'terms': query})

+ 9
- 0
searx/utils.py View File

@@ -290,6 +290,15 @@ def convert_str_to_int(number_str):
290 290
         return 0
291 291
 
292 292
 
293
+# convert a variable to integer or return 0 if it's not a number
294
+def int_or_zero(num):
295
+    if isinstance(num, list):
296
+        if len(num) < 1:
297
+            return 0
298
+        num = num[0]
299
+    return convert_str_to_int(num)
300
+
301
+
293 302
 def is_valid_lang(lang):
294 303
     is_abbr = (len(lang) == 2)
295 304
     if is_abbr: