-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathclient.py
200 lines (176 loc) · 7.33 KB
/
client.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
import socket
import threading
import os
import signal
from sys import platform
import sys
import base64
class clientType:
PORT = 5050
DISCONNECT_MESSAGE = "exit"
passkey = ''
IP = ''
username = ''
client = ''
def __init__(self):
if platform == "linux" or platform == "linux2" or platform == "darwin":
os.system('clear')
elif platform == "win32":
os.system('cls')
else:
print('Unsupported OS')
exit(1)
self.passkey = sys.argv[1]
self.IP = self.decode_key(self.passkey)
self.mainFunc()
def getName(self):
self.username = input("Enter your username: ")
while not self.username.isalpha():
print(" \n \t ERROR: The username should only contain alphabets. \n")
self.username = input('Enter username : ')
def decode_key(self, valu):
try:
decoded_data = base64.b64decode(valu)
dec_ip = decoded_data.decode('utf-8')
if len(dec_ip) == 8:
dec_ip = '192.168' + dec_ip.lstrip('0')
elif len(dec_ip) == 15:
dec_ip = dec_ip.lstrip('0')
elif len(dec_ip) == 0:
print("Please enter a passkey \n ")
self.passkey = input(" Re-enter your accesskey : ")
dec_ip = self.decode_key(self.passkey)
else:
print("Please enter the correct passkey \n ")
self.passkey = input(" Re-enter your accesskey : ")
dec_ip = self.decode_key(self.passkey)
except (ConnectionRefusedError, UnicodeDecodeError, UnboundLocalError, base64.binascii.Error):
print("Please enter the correct passkey \n ")
self.passkey = input(" Re-enter your accesskey : ")
dec_ip = self.decode_key(self.passkey)
finally:
return dec_ip
def receive(self):
#self. username
while True:
try:
message = self.client.recv(1024).decode('utf-8')
if message == 'Connect':
self.client.send(self.username.encode('utf-8'))
elif message == 'Server left':
print('\nServer has disconnected\n')
os._exit(0)
elif 'Connected to' in message:
print('\n \t ', message, '\n')
elif 'Username updated to [' in message:
print(message)
self.username = message[25:-1]
## Receiving images and files
elif message.startswith("file:"):
fname, fsize = message[5:].split(";")
# remove absolute path if there is
fname = os.path.basename(fname)
# convert to integer
fsize = int(fsize)
if not os.path.exists('Proximity_files'):
os.mkdir('Proximity_files')
fname = os.path.join('Proximity_files', fname)
with open(fname, "wb") as f:
bytes_read = self.client.recv(fsize)
f.write(bytes_read)
print()
elif message.startswith("image: "):
fname,fsize = message[7:].split()
fpath='Proximity_images'
if not os.path.exists(fpath):
os.makedirs(fpath)
pwd=os.getcwd()
os.chdir(fpath)
fsize = int(fsize)
c=0
k=(fsize//512)*512
with open(fname,"wb") as f:
while True:
chunk=self.client.recv(512)
if not chunk:
break
f.write(chunk)
c+=512
if c==k:
break
if fsize-k:
chunk=self.client.recv(fsize-k+1)
f.write(chunk)
os.chdir(pwd)
print('Received Image successfully')
else:
print('\t\t\t\t', message)
except:
print("An error occurred!")
self.client.close()
break
def write(self):
while True:
try:
input_val = input()
if input_val == self.DISCONNECT_MESSAGE:
self.client.send(self.DISCONNECT_MESSAGE.encode('utf-8'))
self.client.close()
print('You will be disconnected')
os._exit(0)
## Sending images and files
elif input_val.startswith("image:"):
fname = input_val[6:]
fsize = os.path.getsize(fname)
iname=os.path.basename(fname)
message='image: '+iname+' '+str(fsize)
self.client.send(message.encode('utf-8'))
k=(fsize//512)*512
c=0
with open(fname,"rb") as f:
while True:
chunks = f.read(512)
if not chunks:
break
c+=512
self.client.send(chunks)
if c==k:
break
if fsize-k:
chunks=f.read(fsize-k+1)
self.client.send(chunks)
print('Sent Image successfully')
elif input_val.startswith("file:"):
fname=input_val[5:]
fsize=os.path.getsize(fname)
message = input_val+";"+str(fsize)
self.client.send(message.encode('utf-8'))
with open(fname, "rb") as f:
bytes_read = f.read(fsize)
self.client.send(bytes_read)
print("\n \t File sent\n")
else:
message = '[{}] : {}'.format(self.username, input_val)
self.client.send(message.encode('utf-8'))
except:
print('\n \t Error Occurred while Reading input \n')
# self.client.send(self.DISCONNECT_MESSAGE.encode('utf-8'))
# self.client.close()
# print('You will be disconnected')
# os._exit(0)
def keyboardInterruptHandler(self, signal, frame):
print('Interrupted')
self.client.send(self.DISCONNECT_MESSAGE.encode('utf-8'))
self.client.close()
print('You will be disconnected')
os._exit(0)
def mainFunc(self):
self.getName()
self.client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.client.connect((self.IP, self.PORT))
signal.signal(signal.SIGINT, self.keyboardInterruptHandler)
receive_thread = threading.Thread(target=self.receive)
receive_thread.start()
write_thread = threading.Thread(target=self.write)
write_thread.start()
c1 = clientType()