forked from JDRIVO/rTorrent-Disk-Checker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.py
325 lines (274 loc) · 16 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from datetime import datetime
start = datetime.now()
import sys, os, time, smtplib, json, config as cfg
from subprocess import check_output
from remotecaller import xmlrpc
PY2 = sys.version_info[0] == 2 # True for Python 2
if PY2:
from urllib2 import Request, urlopen
else:
from urllib.request import Request, urlopen
def disk_usage(path):
try:
used_k = int(check_output(['du','-ks', path]).split()[0])
except:
used_k = 0
return 1024 * used_k
def py2_encode(s, encoding='utf8'):
if PY2:
s = s.encode(encoding)
return s
def py2_decode(s, encoding='utf8'):
if PY2:
s = s.decode(encoding)
return s
def send_email():
server = False
try:
try:
try:
print('\nAttempting to email using TLS\n')
server = smtplib.SMTP(cfg.smtp_server, cfg.port, timeout=10)
server.starttls()
server.login(cfg.account, cfg.password)
except Exception as e:
print('Failed\n\nTLS Related Error:\n')
print(e)
print('\nAttempting to email using SSL\n')
if server:
server.quit()
server = smtplib.SMTP_SSL(cfg.smtp_server, cfg.port, timeout=10)
server.login(cfg.account, cfg.password)
except Exception as e:
print('Failed\n\nSSL Related Error:\n')
print(e)
print('\nAttempting to email without TLS/SSL\n')
if server:
server.quit()
server = smtplib.SMTP(cfg.smtp_server, cfg.port, timeout=10)
server.login(cfg.account, cfg.password)
message = 'Subject: {}\n\n{}'.format(cfg.subject, 'Notification test from RTORRENT-IMDB-DISK-CHECKER. All good!')
server.sendmail(cfg.account, cfg.receiver, message)
server.quit()
print('Succeeded')
except Exception as e:
print('Failed\n\nNon TLS/SSL Related Error:\n')
print(e)
def send_slack():
slack_data = {
'text': 'Notification test from RTORRENT-IMDB-DISK-CHECKER. All good!',
'username': cfg.slack_name,
'icon_emoji': ':white_check_mark:'
}
headers = {'content-type': 'application/json'}
req = Request(cfg.slack_webhook_url, py2_decode(json.dumps(slack_data, ensure_ascii=False)).encode('utf8'), headers)
response = urlopen(req).read()
if response.decode('utf8') != 'ok':
print('Failed to send slack notification, check slack_webhook_url.')
else:
print('Succeeded')
def send_telegram():
telegram_data = {
'chat_id': cfg.telegram_chat_id,
'text': 'Notification test from RTORRENT-IMDB-DISK-CHECKER. All good!'
}
headers = {'content-type': 'application/json'}
req = Request("https://api.telegram.org/bot{token}/sendMessage".format(token=cfg.telegram_token), py2_decode(json.dumps(telegram_data, ensure_ascii=False)).encode('utf8'), headers)
response = json.loads(urlopen(req).read())
if response['ok'] != True:
print('Failed to send telegram notification, check token and chat_id.')
else:
print('Succeeded')
try:
if sys.argv[1] == 'email':
send_email()
sys.exit()
if sys.argv[1] == 'slack':
send_slack()
sys.exit()
if sys.argv[1] == 'telegram':
send_telegram()
sys.exit()
try:
import cacher
print('Building cache. Please wait...')
cacher.build_cache('test ' + str(int(time.time())))
from torrents import completed, leeching
from mountpoints import mount_points
print('Cache built.')
except:
print('Failed\nRun the script with its full path like:\npython /path/to/test.py 69')
sys.exit()
torrent_size = float(sys.argv[1])
script_path = os.path.dirname(sys.argv[0])
queue = script_path + '/queue.txt'
remover = script_path + '/remover.py'
remover_queue = script_path + '/' + 'hash'
emailer = script_path + '/emailer.py'
last_torrent = script_path + '/hash.txt'
all_path = [path for path in cfg.maximum_size_quota]
mp_space, quota_mp, min_sp = {}, {}, {}
for mp in mount_points:
if mount_points[mp] not in all_path:
all_path.append(mount_points[mp])
disk = os.statvfs(mount_points[mp])
mp_space[mount_points[mp]] = disk.f_bsize * disk.f_bavail
for quota_path in cfg.maximum_size_quota:
mount_point = [path for path in [quota_path.rsplit('/', num)[0] for num in range(quota_path.count('/'))] if os.path.ismount(path)]
mount_point = mount_point[0] if mount_point else '/'
quota_mp[quota_path] = mount_point
completed_copy = completed[:]
for tested_path in all_path:
if not os.path.exists(tested_path):
print('Incorrect path %s in maximum_size_quota in config.py' % (tested_path))
continue
elif tested_path in cfg.maximum_size_quota:
quota_free = cfg.maximum_size_quota[tested_path] * 1073741824 - disk_usage(tested_path)
disk_free = mp_space[quota_mp[tested_path]]
if disk_free < quota_free: #maybe remove this
continue
else:
disk_free = quota_free = mp_space[tested_path]
mp_downloading = sum(list[0] for list in leeching if list[8] in mount_points and mount_points[list[8]] == tested_path)
quota_downloading = sum(list[0] for list in leeching if tested_path in list[8])
mp_avail_space = (disk_free - mp_downloading) / 1073741824.0
quota_avail_space = (quota_free - quota_downloading) / 1073741824.0
if tested_path in cfg.minimum_space_mp:
minimum_space = cfg.minimum_space_mp[tested_path]
elif tested_path in quota_mp and quota_mp[tested_path] in cfg.minimum_space_mp:
minimum_space = cfg.minimum_space_mp[quota_mp[tested_path]]
else:
minimum_space = cfg.minimum_space
min_sp[tested_path] = minimum_space
mp_required_space = torrent_size - (mp_avail_space - minimum_space)
quota_required_space = torrent_size - (quota_avail_space - minimum_space)
requirements = cfg.minimum_size, cfg.minimum_age, cfg.minimum_ratio, cfg.minimum_seeders, cfg.fallback_age, cfg.fallback_ratio
current_date = datetime.now()
include = override = True
exclude = no = False
mp_freed_space = quota_freed_space = count = 0
fallback_torrents, removable, removed, displayed = [], [], [], []
while mp_freed_space < mp_required_space or quota_freed_space < quota_required_space:
if not completed and not fallback_torrents:
break
if completed:
t_age, t_label, t_tracker, t_ratio, t_size_b, t_name, t_hash, t_path, parent_directory = completed[0]
if override:
override = False
min_size, min_age, min_ratio, min_seed, fb_age, fb_ratio = requirements
if cfg.exclude_unlabelled and not t_label:
del completed[0]
continue
if cfg.labels:
if t_label in cfg.labels:
label_rule = cfg.labels[t_label]
rule = label_rule[0]
if rule is exclude:
del completed[0]
continue
if rule is not include:
override = True
min_size, min_age, min_ratio, fb_age, fb_ratio = label_rule
elif cfg.labels_only:
del completed[0]
continue
if cfg.trackers and not override:
tracker_rule = [tracker for tracker in cfg.trackers for url in t_tracker if tracker in url[0]]
if tracker_rule:
tracker_rule = cfg.trackers[tracker_rule[0]]
rule = tracker_rule[0]
if rule is exclude:
del completed[0]
continue
if rule is not include:
override = True
min_size, min_age, min_ratio, min_seed, fb_age, fb_ratio = tracker_rule
elif cfg.trackers_only:
del completed[0]
continue
t_age = (current_date - datetime.utcfromtimestamp(t_age)).days
t_ratio /= 1000.0
t_size_g = t_size_b / 1073741824.0
t_seed = max([tracker[1] for tracker in t_tracker])
if t_seed < min_seed:
del completed[0]
continue
if t_age < min_age or t_ratio < min_ratio or t_size_g < min_size:
if fb_age is not no and t_age >= fb_age and t_size_g >= min_size:
fallback_torrents.append([parent_directory, t_age, t_label, t_tracker, t_size_g, t_name])
elif fb_ratio is not no and t_ratio >= fb_ratio and t_size_g >= min_size:
fallback_torrents.append([parent_directory, t_age, t_label, t_tracker, t_size_g, t_name])
del completed[0]
continue
del completed[0]
else:
parent_directory, t_age, t_label, t_tracker, t_size_g, t_name = fallback_torrents[0]
del fallback_torrents[0]
if tested_path not in quota_mp:
if mount_points[parent_directory] != tested_path:
continue
elif mount_points[parent_directory] != quota_mp[tested_path]:
continue
elif tested_path not in parent_directory:
if mp_freed_space >= mp_required_space:
continue
elif quota_freed_space >= quota_required_space:
continue
mp_freed_space += t_size_g
if tested_path in quota_mp and tested_path in parent_directory:
quota_freed_space += t_size_g
removable.append((t_age, t_name, t_size_g, t_label, t_tracker[0][0]))
#if last removed torrent is large, maybe some smaller removed torrents can stay
removable.sort()
mp_futur_space = mp_freed_space - mp_required_space
quota_futur_space = quota_freed_space - quota_required_space
while removable:
t_age, t_name, t_size_g, t_label, t_tracker = removable.pop()
if t_size_g < mp_futur_space and t_size_g < quota_futur_space:
mp_futur_space -= t_size_g
mp_freed_space -= t_size_g
quota_futur_space -= t_size_g
quota_freed_space -= t_size_g
else:
removed.append((t_age, t_name, t_size_g, t_label, t_tracker))
while removed:
t_age, t_name, t_size_g, t_label, t_tracker = removed.pop()
count += 1
displayed.append('%s. Age : %s Days Old\n Name : %s\n Size : %.2f GB\n Label : %s\n Tracker: %s\n' % (count, t_age, t_name, t_size_g, t_label, t_tracker))
time = datetime.now() - start
start = datetime.now()
now = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
if tested_path in quota_mp:
available_space = quota_avail_space
calc = quota_avail_space + mp_freed_space - torrent_size
else:
available_space = mp_avail_space
calc = mp_avail_space + mp_freed_space - torrent_size
with open('testresult.txt', 'a+') as textfile:
textfile.write('\n===== Test for Torrent Download in %s =====\n\n%s' % (tested_path, now))
textfile.write('\nExecuted in %s seconds\n%s Torrent(s) Deleted Totaling %.2f GB\n' % (time, count, mp_freed_space))
textfile.write('%.2f GB Free Space Before Torrent Download (minimum space %.2f GB)\n%.2f GB Free Space After %.2f GB Torrent Download\n\n' % (available_space, min_sp[tested_path], calc, torrent_size))
if calc < 0:
textfile.write('Cannot free enough space!\n')
for result in displayed:
if not PY2:
textfile.write(result + '\n')
else:
textfile.write(result.encode('utf8') + '\n')
print('\n===== Test for Torrent Download in %s =====\n\n%s' % (tested_path, now))
print('Executed in %s seconds\n%s Torrent(s) Deleted Totaling %.2f GB' % (time, count, mp_freed_space))
print('%.2f GB Free Space Before Torrent Download (minimum space %.2f GB)\n%.2f GB Free Space After %.2f GB Torrent Download\n' % (available_space, min_sp[tested_path], calc, torrent_size))
if calc < 0:
print('Cannot free enough space!\n')
for result in displayed:
print(result)
completed = completed_copy[:]
except Exception as e:
print(e)
try:
xmlrpc('d.multicall2', ('', 'leeching', 'd.down.total='))
except:
print('SCGI address not configured properly. Please adjust it in your config.py file before continuing.')
sys.exit()