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
 from lxml import html
12
 from lxml import html
13
 from searx.engines.xpath import extract_text
13
 from searx.engines.xpath import extract_text
14
 from searx.url_utils import urlencode
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
 # engine dependent config
17
 # engine dependent config
18
 categories = ['files', 'images', 'videos', 'music']
18
 categories = ['files', 'images', 'videos', 'music']
49
     for result in dom.xpath(xpath_results):
49
     for result in dom.xpath(xpath_results):
50
         # defaults
50
         # defaults
51
         filesize = 0
51
         filesize = 0
52
-        seed = 0
53
-        leech = 0
54
-        downloads = 0
55
         magnet_link = ""
52
         magnet_link = ""
56
         torrent_link = ""
53
         torrent_link = ""
57
 
54
 
58
         # category in which our torrent belongs
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
         # torrent title
61
         # torrent title
62
         page_a = result.xpath(xpath_title)[0]
62
         page_a = result.xpath(xpath_title)[0]
74
                 # link to the torrent file
74
                 # link to the torrent file
75
                 torrent_link = url
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
         # let's try to calculate the torrent size
86
         # let's try to calculate the torrent size
85
         try:
87
         try:
89
         except:
91
         except:
90
             pass
92
             pass
91
 
93
 
92
-        # torrent downloads count
93
-        try:
94
-            downloads = result.xpath(xpath_downloads)[0]
95
-        except:
96
-            pass
97
-
98
         # content string contains all information not included into template
94
         # content string contains all information not included into template
99
         content = 'Category: "{category}". Downloaded {downloads} times.'
95
         content = 'Category: "{category}". Downloaded {downloads} times.'
100
         content = content.format(category=category, downloads=downloads)
96
         content = content.format(category=category, downloads=downloads)

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

15
 from searx.engines.xpath import extract_text
15
 from searx.engines.xpath import extract_text
16
 from datetime import datetime
16
 from datetime import datetime
17
 from searx.url_utils import urlencode
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
 # engine dependent config
20
 # engine dependent config
21
 categories = ['files', 'videos', 'music']
21
 categories = ['files', 'videos', 'music']
26
 search_url = base_url + 'search.php?{query}'
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
 # do search-request
29
 # do search-request
41
 def request(query, params):
30
 def request(query, params):
42
     query = urlencode({'page': params['pageno'], 'terms': query})
31
     query = urlencode({'page': params['pageno'], 'terms': query})

+ 9
- 0
searx/utils.py View File

290
         return 0
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
 def is_valid_lang(lang):
302
 def is_valid_lang(lang):
294
     is_abbr = (len(lang) == 2)
303
     is_abbr = (len(lang) == 2)
295
     if is_abbr:
304
     if is_abbr: