-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommands.py
140 lines (121 loc) · 2.67 KB
/
commands.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
'''
Author: Sanketh
'''
from IO import *
from constants import *
import sys
class CommandHandler(object):
"""Commands that shell can execute"""
def __init__(self):
pass
def exit(self,client,args):
if messages.has_key('exit'):
try:
client.close()
IO.output(messages['exit'])
except Exception, e:
IO.output(e)
finally:
sys.exit()
def help(self,client,args=None):
if messages.has_key('help'):
IO.output(messages['help'])
if not args:
for key in command_desc:
IO.output('%s:\t%s' % (key,command_desc[key]))
else:
for key in args:
if command_desc.has_key(key):
IO.output('%s:\t%s' % (key,command_desc[key]))
else:
IO.output('No entry for `%s` found' % key)
def search(self,client,args):
if not args:
IO.output('Invalid')
return
p = client.getCon().pwd()
if args[0] != '-R':
IO.output('Current Directory:\t%s' % client.getCon().pwd())
for key in client.getCon().nlst():
if args[0] in key:
IO.output(key)
else:
if not args[1:]:
pass
else:
self.__searchrec(client,args[1:])
self.cd(client,[p])
def __searchrec(self,client,args):
if not args:
IO.output('Invalid')
return
search_key = args[0]
for key in client.getCon().nlst():
try:
client.getCon().cwd(key)
self.__searchrec(client,args)
except Exception, e:
pass
finally:
if search_key in key:
IO.output('%s/%s'% (client.getCon().pwd(),key))
def cd(self,client,args):
if not args:
IO.output('Invalid')
return
try:
client.getCon().cwd(args[0])
except Exception,e:
IO.output(e)
def ls(self,client,args):
if not args:
par = ''
else:
par = args[0]
try:
client.getCon().dir(par)
except Exception, e:
IO.output(e);
def pwd(self,client,args=None):
try:
IO.output(client.getCon().pwd())
except Exception, e:
IO.output(e)
def download(self,client,args):
if not args:
IO.output('Invalid')
return
try:
if args[0] == '-a':
f = open(args[1],'w')
if not f:
return
client.getCon().retrlines('RETR '+args[1],f.write)
f.close()
elif args[0] == '-b':
f = open(args[1],'wb')
if not f:
return
client.getCon().retrbinary('RETR ' + args[1],f.write)
f.close()
except Exception, e:
raise e
def upload(self,client,args):
if not args:
IO.output('Invalid')
return
try:
if args[0] == '-a':
f = open(args[1],'r')
if not f:
return
client.getCon().storlines('STOR %s' % args[1],f)
f.close()
elif args[0] == '-b':
f = open(args[1],'rb')
if not f:
return
client.getCon().storlines('STOR %s' % args[1],f)
f.close()
except Exception, e:
IO.output(e)