forked from pyload/pyload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyLoadCli.py
executable file
·590 lines (480 loc) · 19.4 KB
/
pyLoadCli.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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
#Copyright (C) 2011 RaNaN
#
#This program is free software; you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation; either version 3 of the License,
#or (at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#See the GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
#
###
from __future__ import with_statement
from getopt import GetoptError, getopt
import module.common.pylgettext as gettext
import os
from os import _exit
from os.path import join, exists, abspath, basename
import sys
from sys import exit
from threading import Thread, Lock
from time import sleep
from traceback import print_exc
import ConfigParser
from codecs import getwriter
if os.name == "nt":
enc = "cp850"
else:
enc = "utf8"
sys.stdout = getwriter(enc)(sys.stdout, errors="replace")
from module import InitHomeDir
from module.cli.printer import *
from module.cli import AddPackage, ManageFiles
from module.Api import Destination
from module.utils import formatSize, decode
from module.remote.thriftbackend.ThriftClient import ThriftClient, NoConnection, NoSSL, WrongLogin, ConnectionClosed
from module.lib.Getch import Getch
from module.lib.rename_process import renameProcess
class Cli:
def __init__(self, client, command):
self.client = client
self.command = command
if not self.command:
renameProcess('pyLoadCli')
self.getch = Getch()
self.input = ""
self.inputline = 0
self.lastLowestLine = 0
self.menuline = 0
self.lock = Lock()
#processor funcions, these will be changed dynamically depending on control flow
self.headerHandler = self #the download status
self.bodyHandler = self #the menu section
self.inputHandler = self
os.system("clear")
println(1, blue("py") + yellow("Load") + white(_(" Command Line Interface")))
println(2, "")
self.thread = RefreshThread(self)
self.thread.start()
self.start()
else:
self.processCommand()
def reset(self):
""" reset to initial main menu """
self.input = ""
self.headerHandler = self.bodyHandler = self.inputHandler = self
def start(self):
""" main loop. handle input """
while True:
#inp = raw_input()
inp = self.getch.impl()
if ord(inp) == 3:
os.system("clear")
sys.exit() # ctrl + c
elif ord(inp) == 13: #enter
try:
self.lock.acquire()
self.inputHandler.onEnter(self.input)
except Exception, e:
println(2, red(e))
finally:
self.lock.release()
elif ord(inp) == 127:
self.input = self.input[:-1] #backspace
try:
self.lock.acquire()
self.inputHandler.onBackSpace()
finally:
self.lock.release()
elif ord(inp) == 27: #ugly symbol
pass
else:
self.input += inp
try:
self.lock.acquire()
self.inputHandler.onChar(inp)
finally:
self.lock.release()
self.inputline = self.bodyHandler.renderBody(self.menuline)
self.renderFooter(self.inputline)
def refresh(self):
"""refresh screen"""
println(1, blue("py") + yellow("Load") + white(_(" Command Line Interface")))
println(2, "")
self.lock.acquire()
self.menuline = self.headerHandler.renderHeader(3) + 1
println(self.menuline - 1, "")
self.inputline = self.bodyHandler.renderBody(self.menuline)
self.renderFooter(self.inputline)
self.lock.release()
def setInput(self, string=""):
self.input = string
def setHandler(self, klass):
#create new handler with reference to cli
self.bodyHandler = self.inputHandler = klass(self)
self.input = ""
def renderHeader(self, line):
""" prints download status """
#print updated information
# print "\033[J" #clear screen
# self.println(1, blue("py") + yellow("Load") + white(_(" Command Line Interface")))
# self.println(2, "")
# self.println(3, white(_("%s Downloads:") % (len(data))))
data = self.client.statusDownloads()
speed = 0
println(line, white(_("%s Downloads:") % (len(data))))
line += 1
for download in data:
if download.status == 12: # downloading
percent = download.percent
z = percent / 4
speed += download.speed
println(line, cyan(download.name))
line += 1
println(line,
blue("[") + yellow(z * "#" + (25 - z) * " ") + blue("] ") + green(str(percent) + "%") + _(
" Speed: ") + green(formatSize(download.speed) + "/s") + _(" Size: ") + green(
download.format_size) + _(" Finished in: ") + green(download.format_eta) + _(
" ID: ") + green(download.fid))
line += 1
if download.status == 5:
println(line, cyan(download.name))
line += 1
println(line, _("waiting: ") + green(download.format_wait))
line += 1
println(line, "")
line += 1
status = self.client.statusServer()
if status.pause:
paused = _("Status:") + " " + red(_("paused"))
else:
paused = _("Status:") + " " + red(_("running"))
println(line,"%s %s: %s %s: %s %s: %s" % (
paused, _("total Speed"), red(formatSize(speed) + "/s"), _("Files in queue"), red(
status.queue), _("Total"), red(status.total)))
return line + 1
def renderBody(self, line):
""" prints initial menu """
println(line, white(_("Menu:")))
println(line + 1, "")
println(line + 2, mag("1.") + _(" Add Links"))
println(line + 3, mag("2.") + _(" Manage Queue"))
println(line + 4, mag("3.") + _(" Manage Collector"))
println(line + 5, mag("4.") + _(" (Un)Pause Server"))
println(line + 6, mag("5.") + _(" Kill Server"))
println(line + 7, mag("6.") + _(" Quit"))
return line + 8
def renderFooter(self, line):
""" prints out the input line with input """
println(line, "")
line += 1
println(line, white(" Input: ") + decode(self.input))
#clear old output
if line < self.lastLowestLine:
for i in range(line + 1, self.lastLowestLine + 1):
println(i, "")
self.lastLowestLine = line
#set cursor to position
print "\033[" + str(self.inputline) + ";0H"
def onChar(self, char):
""" default no special handling for single chars """
if char == "1":
self.setHandler(AddPackage)
elif char == "2":
self.setHandler(ManageFiles)
elif char == "3":
self.setHandler(ManageFiles)
self.bodyHandler.target = Destination.Collector
elif char == "4":
self.client.togglePause()
self.setInput()
elif char == "5":
self.client.kill()
self.client.close()
sys.exit()
elif char == "6":
os.system('clear')
sys.exit()
def onEnter(self, inp):
pass
def onBackSpace(self):
pass
def processCommand(self):
command = self.command[0]
args = []
if len(self.command) > 1:
args = self.command[1:]
if command == "status":
files = self.client.statusDownloads()
if not files:
print "No downloads running."
for download in files:
if download.status == 12: # downloading
print print_status(download)
print "\tDownloading: %s @ %s/s\t %s (%s%%)" % (
download.format_eta, formatSize(download.speed), formatSize(download.size - download.bleft),
download.percent)
elif download.status == 5:
print print_status(download)
print "\tWaiting: %s" % download.format_wait
else:
print print_status(download)
elif command == "queue":
print_packages(self.client.getQueueData())
elif command == "collector":
print_packages(self.client.getCollectorData())
elif command == "add":
if len(args) < 2:
print _("Please use this syntax: add <Package name> <link> <link2> ...")
return
self.client.addPackage(args[0], args[1:], Destination.Queue)
elif command == "add_coll":
if len(args) < 2:
print _("Please use this syntax: add <Package name> <link> <link2> ...")
return
self.client.addPackage(args[0], args[1:], Destination.Collector)
elif command == "del_file":
self.client.deleteFiles([int(x) for x in args])
print "Files deleted."
elif command == "del_package":
self.client.deletePackages([int(x) for x in args])
print "Packages deleted."
elif command == "move":
for pid in args:
pack = self.client.getPackageInfo(int(pid))
self.client.movePackage((pack.dest + 1) % 2, pack.pid)
elif command == "check":
print _("Checking %d links:") % len(args)
print
rid = self.client.checkOnlineStatus(args).rid
self.printOnlineCheck(self.client, rid)
elif command == "check_container":
path = args[0]
if not exists(join(owd, path)):
print _("File does not exists.")
return
f = open(join(owd, path), "rb")
content = f.read()
f.close()
rid = self.client.checkOnlineStatusContainer([], basename(f.name), content).rid
self.printOnlineCheck(self.client, rid)
elif command == "pause":
self.client.pause()
elif command == "unpause":
self.client.unpause()
elif command == "toggle":
self.client.togglePause()
elif command == "kill":
self.client.kill()
elif command == "restart_file":
for x in args:
self.client.restartFile(int(x))
print "Files restarted."
elif command == "restart_package":
for pid in args:
self.client.restartPackage(int(pid))
print "Packages restarted."
else:
print_commands()
def printOnlineCheck(self, client, rid):
while True:
sleep(1)
result = client.pollResults(rid)
for url, status in result.data.iteritems():
if status.status == 2: check = "Online"
elif status.status == 1: check = "Offline"
else: check = "Unknown"
print "%-45s %-12s\t %-15s\t %s" % (status.name, formatSize(status.size), status.plugin, check)
if result.rid == -1: break
class RefreshThread(Thread):
def __init__(self, cli):
Thread.__init__(self)
self.setDaemon(True)
self.cli = cli
def run(self):
while True:
sleep(1)
try:
self.cli.refresh()
except ConnectionClosed:
os.system("clear")
print _("pyLoad was terminated")
_exit(0)
except Exception, e:
println(2, red(str(e)))
self.cli.reset()
print_exc()
def print_help(config):
print
print "pyLoadCli Copyright (c) 2008-2011 the pyLoad Team"
print
print "Usage: [python] pyLoadCli.py [options] [command]"
print
print "<Commands>"
print "See pyLoadCli.py -c for a complete listing."
print
print "<Options>"
print " -i, --interactive", " Start in interactive mode"
print
print " -u, --username=", " " * 2, "Specify Username"
print " --pw=<password>", " " * 2, "Password"
print " -a, --address=", " " * 3, "Specify address (current=%s)" % config["addr"]
print " -p, --port", " " * 7, "Specify port (current=%s)" % config["port"]
print
print " -l, --language", " " * 3, "Set user interface language (current=%s)" % config["language"]
print " -h, --help", " " * 7, "Display this help screen"
print " -c, --commands", " " * 3, "List all available commands"
print
def print_packages(data):
for pack in data:
print "Package %s (#%s):" % (pack.name, pack.pid)
for download in pack.links:
print "\t" + print_file(download)
print
def print_file(download):
return "#%(id)-6d %(name)-30s %(statusmsg)-10s %(plugin)-8s" % {
"id": download.fid,
"name": download.name,
"statusmsg": download.statusmsg,
"plugin": download.plugin
}
def print_status(download):
return "#%(id)-6s %(name)-40s Status: %(statusmsg)-10s Size: %(size)s" % {
"id": download.fid,
"name": download.name,
"statusmsg": download.statusmsg,
"size": download.format_size
}
def print_commands():
commands = [("status", _("Prints server status")),
("queue", _("Prints downloads in queue")),
("collector", _("Prints downloads in collector")),
("add <name> <link1> <link2>...", _("Adds package to queue")),
("add_coll <name> <link1> <link2>...", _("Adds package to collector")),
("del_file <fid> <fid2>...", _("Delete Files from Queue/Collector")),
("del_package <pid> <pid2>...", _("Delete Packages from Queue/Collector")),
("move <pid> <pid2>...", _("Move Packages from Queue to Collector or vice versa")),
("restart_file <fid> <fid2>...", _("Restart files")),
("restart_package <pid> <pid2>...", _("Restart packages")),
("check <container|url> ...", _("Check online status, works with local container")),
("check_container path", _("Checks online status of a container file")),
("pause", _("Pause the server")),
("unpause", _("continue downloads")),
("toggle", _("Toggle pause/unpause")),
("kill", _("kill server")), ]
print _("List of commands:")
print
for c in commands:
print "%-35s %s" % c
def writeConfig(opts):
try:
with open(join(homedir, ".pyloadcli"), "w") as cfgfile:
cfgfile.write("[cli]")
for opt in opts:
cfgfile.write("%s=%s\n" % (opt, opts[opt]))
except:
print _("Couldn't write user config file")
def main():
config = {"addr": "127.0.0.1", "port": "7227", "language": "en"}
try:
config["language"] = os.environ["LANG"][0:2]
except:
pass
if (not exists(join(pypath, "locale", config["language"]))) or config["language"] == "":
config["language"] = "en"
configFile = ConfigParser.ConfigParser()
configFile.read(join(homedir, ".pyloadcli"))
if configFile.has_section("cli"):
for opt in configFile.items("cli"):
config[opt[0]] = opt[1]
gettext.setpaths([join(os.sep, "usr", "share", "pyload", "locale"), None])
translation = gettext.translation("pyLoadCli", join(pypath, "locale"),
languages=[config["language"],"en"],fallback=True)
translation.install(unicode=True)
interactive = False
command = None
username = ""
password = ""
shortOptions = 'iu:p:a:hcl:'
longOptions = ['interactive', "username=", "pw=", "address=", "port=", "help", "commands", "language="]
try:
opts, extraparams = getopt(sys.argv[1:], shortOptions, longOptions)
for option, params in opts:
if option in ("-i", "--interactive"):
interactive = True
elif option in ("-u", "--username"):
username = params
elif option in ("-a", "--address"):
config["addr"] = params
elif option in ("-p", "--port"):
config["port"] = params
elif option in ("-l", "--language"):
config["language"] = params
gettext.setpaths([join(os.sep, "usr", "share", "pyload", "locale"), None])
translation = gettext.translation("pyLoadCli", join(pypath, "locale"),
languages=[config["language"],"en"],fallback=True)
translation.install(unicode=True)
elif option in ("-h", "--help"):
print_help(config)
exit()
elif option in ("--pw"):
password = params
elif option in ("-c", "--comands"):
print_commands()
exit()
except GetoptError:
print 'Unknown Argument(s) "%s"' % " ".join(sys.argv[1:])
print_help(config)
exit()
if len(extraparams) >= 1:
command = extraparams
client = False
if interactive:
try:
client = ThriftClient(config["addr"], int(config["port"]), username, password)
except WrongLogin:
pass
except NoSSL:
print _("You need py-openssl to connect to this pyLoad Core.")
exit()
except NoConnection:
config["addr"] = False
config["port"] = False
if not client:
if not config["addr"]: config["addr"] = raw_input(_("Address: "))
if not config["port"]: config["port"] = raw_input(_("Port: "))
if not username: username = raw_input(_("Username: "))
if not password:
from getpass import getpass
password = getpass(_("Password: "))
try:
client = ThriftClient(config["addr"], int(config["port"]), username, password)
except WrongLogin:
print _("Login data is wrong.")
except NoConnection:
print _("Could not establish connection to %(addr)s:%(port)s." % {"addr": config["addr"],
"port": config["port"]})
else:
try:
client = ThriftClient(config["addr"], int(config["port"]), username, password)
except WrongLogin:
print _("Login data is wrong.")
except NoConnection:
print _("Could not establish connection to %(addr)s:%(port)s." % {"addr": config["addr"],
"port": config["port"]})
except NoSSL:
print _("You need py-openssl to connect to this pyLoad core.")
if interactive and command: print _("Interactive mode ignored since you passed some commands.")
if client:
writeConfig(config)
cli = Cli(client, command)
if __name__ == "__main__":
main()