-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.py
594 lines (530 loc) · 21.5 KB
/
server.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
591
592
593
594
"""
Sample code for Multi-Threaded Server
Python 3
Usage: python3 TCPserver3.py localhost 12000
coding: utf-8
Author: Wei Song (Tutor for COMP3331/9331)
"""
import json
import random
from socket import *
from threading import Thread
import sys
import time
import threading
# the imformation lists is here
credentials = "credentials.txt"
userDataLoc = "userData.json"
'''
userInfor = {
'message': [],
'blackList': [],
'active_period': []
}
'''
# lock = threading.Lock()
blockList = []
onlineUser = []
noNewContent = True
threads = {}
usedPort = []
# TODO: initialise the userData.json
# acquire server host and port from command line parameter
if len(sys.argv) != 4:
print("\n===== Error usage, python3 TCPServer3.py SERVER_PORT ======\n")
exit(0)
serverHost = "127.0.0.1"
serverPort = int(sys.argv[1])
usedPort.append(serverPort)
blockTime = int(sys.argv[2])
timeoutDur = int(sys.argv[3])
serverAddress = (serverHost, serverPort)
# define socket for the server side and bind address
serverSocket = socket(AF_INET, SOCK_STREAM)
serverSocket.bind(serverAddress)
serverStartTime = time.time()
# initialise the userData.json
with open(userDataLoc, 'r+') as f:
f.truncate(0)
f.write("{}")
f.close()
# add every user in the credential into json file
with open(credentials, 'r+') as cf:
userInfor = {
'message': [],
'blackList': [],
'active_period': [],
'clientAddress': None
}
lines = cf.readlines()
for line in lines:
name, userPassword = line.split(" ")
with open(userDataLoc, 'r+') as f:
data = json.load(f)
data[name] = userInfor
f.seek(0)
json.dump(data, f, indent=4)
f.truncate()
cf.close()
"""
Define multi-thread class for client
This class would be used to define the instance for each connection from each client
For example, client-1 makes a connection request to the server, the server will call
class (ClientThread) to define a thread for client-1, and when client-2 make a connection
request to the server, the server will call class (ClientThread) again and create a thread
for client-2. Each client will be runing in a separate therad, which is the multi-threading
"""
class ClientThread(Thread):
def __init__(self, clientAddress, clientSocket):
Thread.__init__(self)
self.clientAddress = clientAddress
usedPort.append(clientAddress[1])
self.clientSocket = clientSocket
self.clientAlive = False
print("===== New connection created for: ", clientAddress)
self.clientAlive = True
def run(self):
global onlineUser
# the client have checked the user name is valid
userName = self.clientSocket.recv(1024).decode()
# check the blockList first
for i in range(len(blockList)):
if userName == blockList[i][0]:
self.clientSocket.send(
"[error] Your account is blocked due to multiple login failures. Please try again later".encode())
sleepTime = blockTime - (time.time() - blockList[i][1])
if (sleepTime > 0):
time.sleep(sleepTime)
# check the user is online or not
if userName in onlineUser:
self.clientSocket.send("[error], this account is online".encode())
else:
self.clientSocket.send("[success]".encode())
# get the password if the user name is in credential file
# else return None
isNewUser = False
password = self.process_userName(userName)
if password == None:
isNewUser = True
self.clientSocket.send("create your password: ".encode())
else:
password = password.strip()
isNewUser = False
try:
self.clientSocket.send("password: ".encode())
except:
print("")
# check the password
i = 0
startTime = None
while 1:
# get the password from the client
clientPassword = self.clientSocket.recv(1024).decode().strip()
if isNewUser:
# add the new account to credentials
file = open(credentials, "a")
file.write(f"{userName} {clientPassword}" + "\n")
self.clientSocket.send("welcome".encode())
startTime = time.time()
# add the user information into json file
userInfor = {
'message': [],
'blackList': [],
'active_period': []
}
self.addUserData(userName, userInfor)
onlineUser.append(userName)
threads[userName] = self
break
if clientPassword == password:
self.clientSocket.send("welcome".encode())
startTime = time.time()
with open(userDataLoc, 'r+') as f:
# add the user information into json file
data = json.load(f)
newPeriod = {
'start': startTime,
'end': time.time()
}
data[userName]['active_period'].append(newPeriod)
data[userName]['clientAddress'] = clientAddress
threads[userName] = self
f.seek(0)
json.dump(data, f, indent=4)
f.truncate()
f.close()
break
else:
if (i % 3 != 2):
self.clientSocket.send(
"Invalid Password. Please try again".encode())
else:
self.clientSocket.send(
"[block] Invalid Password. Your account has been blocked. Please try again later".encode())
blockList.append((userName, time.time()))
self.clientAlive = False
time.sleep(blockTime)
i += 1
# now assume the client enter the correct password
# the timeout start
onlineUser.append(userName)
message = ''
self.showOfflineMessage(userName)
# timeoutCounter = TimeoutCounter(
# timeoutDur, self.clientSocket, userName)
# timeoutCounter.start()
while self.clientAlive:
self.clientSocket.settimeout(timeoutDur)
# use recv() to receive message from the client
# delete the duplicate
try:
data = self.clientSocket.recv(1024)
message = data.decode()
# global noNewContent
# if not message.startswith("receive"):
# noNewContent = False
messageWords = message.split(" ")
except:
if userName in onlineUser:
onlineUser.remove(userName)
self.addEndTime(userName, startTime)
try:
self.clientSocket.send("sorry you are timeout".encode())
except:
print("one client is timeout")
break
# if the message from client is empty, the client would be off-line then set the client as offline (alive=Flase)
if message == '':
self.clientAlive = False
print("===== the user disconnected - ", clientAddress)
break
# handle message from the client
if message == 'logout':
self.clientAlive == False
onlineUser.remove(userName)
# add the end time to the json
self.addEndTime(userName, startTime)
self.clientSocket.send("successfully logout".encode())
break
# message
elif messageWords[0] == "message":
if len(messageWords) < 3:
self.clientSocket.send(
"[error] message <user> <message>".encode)
else:
resultMessage = ""
for i in range(2, len(messageWords)):
resultMessage = resultMessage + " " + messageWords[i]
if not self.isUserExist(messageWords[1]):
self.clientSocket.send("user not found".encode)
elif self.isHeBlocked(userName, messageWords[1]):
self.clientSocket.send(
f"you have been blocked by {messageWords[1]}".encode())
else:
if messageWords[1] not in onlineUser:
self.offlineMessage(
userName, messageWords[1], resultMessage)
else:
threads[messageWords[1]].messageWords(
f"[{userName}]: {resultMessage}")
self.clientSocket.send(
"message send successful".encode())
elif messageWords[0] == "block":
if len(messageWords) != 2:
self.clientSocket.send("[error] block <user>".encode)
else:
if not self.isUserExist(messageWords[1]):
self.clientSocket.send("user not found".encode)
else:
self.block(messageWords[1], userName)
self.clientSocket.send(
f"[recv] block {messageWords[1]} successfuly".encode())
elif messageWords[0] == "unblock":
if len(messageWords) != 2:
self.clientSocket.send("[error] unblock <user>".encode)
else:
if not self.isUserExist(messageWords[1]):
self.clientSocket.send("user not found".encode)
else:
self.unblock(messageWords[1], userName)
self.clientSocket.send(
f"[recv] unblock {messageWords[1]} successfuly".encode())
elif messageWords[0] == "whoelse":
if len(messageWords) != 1:
self.clientSocket.send("[error] whoelse".encode())
else:
whoelseList = self.whoelseList(userName)
self.clientSocket.send(f"[whoelse] {whoelseList}".encode())
elif messageWords[0] == "broadcast":
if len(messageWords) < 2:
self.clientSocket.send(
"[error] broadcast <message>".encode())
else:
resultMessage = ""
for i in range(1, len(messageWords)):
resultMessage = resultMessage + " " + messageWords[i]
for user in self.whoelseList(userName):
threads[user].messageWords(
f"[{userName}] {resultMessage}")
self.clientSocket.send("broadcast successfully".encode())
# elif messageWords[0] == "receive":
# print("==receive==")
# self.showOfflineMessage(userName)
elif messageWords[0] == "whoelsesince":
if len(messageWords) != 2:
self.clientSocket.send(
"[error] whoelsesince <time>".encode())
else:
list = self.whoelsesince(userName, float(messageWords[1]))
self.clientSocket.send(f"[whoelsesince] {list}".encode())
elif messageWords[0] == "startprivate":
if len(messageWords) != 2:
self.clientSocket.send(
"[error] startprivate <user>".encode())
else:
targetuser = messageWords[1]
# simple tell the user someone want to join
self.startprivate(targetuser, userName)
return
elif messageWords[0] == "[responseY]":
createSocketUser = messageWords[1]
connectSocketUser = messageWords[2]
host = messageWords[3]
port = self.generatePort()
self.noticeCreatePort(
createSocketUser, port, host, connectSocketUser)
self.noticeConnectPort(
connectSocketUser, port, host, createSocketUser)
elif messageWords[0] == "[responseN]":
threads[createSocketUser].messageWords(
"the user reject private connection")
elif messageWords[0] == "yes" or messageWords[0] == "no":
continue
else:
# if (not str(message).startswith("receive")):
self.clientSocket.send(
"Sorry, I don't understand".encode())
# print(message)
"""
You can create more customized APIs here, e.g., logic for processing user authentication
Each api can be used to handle one specific function, for example:
def process_login(self):
message = 'user credentials request'
self.clientSocket.send(message.encode())
"""
def whoelseList(self, userName):
whoelseList = []
for user in onlineUser:
if user != userName and not self.isHeBlocked(userName, user):
whoelseList.append(user)
whoelseList = set(whoelseList)
whoelseList = list(whoelseList)
return whoelseList
def process_userName(self, inUserName):
file = open(credentials, "r")
lines = file.readlines()
for line in lines:
userName, password = line.split(" ")
if userName == inUserName:
# send confirmation message
self.clientSocket.send("find user name".encode())
return password
self.clientSocket.send("user name not found".encode())
return None
def listOnlineUser():
print(onlineUser)
def isUserExist(self, inUserName):
file = open(credentials, "r")
lines = file.readlines()
for line in lines:
userName, password = line.split(" ")
if userName == inUserName:
# send confirmation message
return True
return False
def addUserData(self, userName, userInformation):
with open(userDataLoc, 'r+') as f:
data = json.load(f)
data[userName] = userInformation
f.seek(0)
json.dump(data, f, indent=4)
f.truncate()
f.close()
def offlineMessage(self, userName, targetUser, message):
with open(userDataLoc, 'r+') as f:
data = json.load(f)
resultMessage = f"[offline] {userName} {message}"
data[targetUser]['message'].append(resultMessage)
f.seek(0)
json.dump(data, f, indent=4)
f.truncate()
f.close()
return
def showOfflineMessage(self, userName):
time.sleep(0.1)
with open(userDataLoc, 'r+') as f:
data = json.load(f)
if not data[userName]['message']:
return
else:
# messageNotice = data[userName]['message']
# print(messageNotice)
for message in data[userName]['message']:
splitmessage = message.split(" ")
messageWord = ""
for i in range(2, len(splitmessage)):
messageWord = messageWord + splitmessage[i] + " "
self.clientSocket.send(
f"[offline] [{splitmessage[1]}]: {messageWord}\n".encode())
data[userName]['message'].remove(message)
f.seek(0)
json.dump(data, f, indent=4)
f.truncate()
f.close()
return
def addEndTime(self, userName, startTime):
with open(userDataLoc, 'r+') as f:
data = json.load(f)
for period in data[userName]['active_period']:
if period['start'] == startTime:
period['end'] = time.time()
f.seek(0)
json.dump(data, f, indent=4)
f.truncate()
f.close()
return
def block(self, targetUserName, userName):
with open(userDataLoc, 'r+') as f:
data = json.load(f)
if self.isHeBlocked(targetUserName, userName):
self.clientSocket.send(
f"{userName} has alreadly been blocked".encode())
return
data[userName]['blackList'].append(targetUserName)
f.seek(0)
json.dump(data, f, indent=4)
f.truncate()
f.close()
return
def unblock(self, targetUserName, userName):
with open(userDataLoc, 'r+') as f:
data = json.load(f)
if not self.isHeBlocked(targetUserName, userName):
self.clientSocket.send(
f"{userName} has not been blocked".encode())
return
data[userName]['blackList'].remove(targetUserName)
f.seek(0)
json.dump(data, f, indent=4)
f.truncate()
f.close()
return
def isHeBlocked(self, targetUserName, userName):
with open(userDataLoc, 'r') as f:
data = json.load(f)
if targetUserName in data[userName]['blackList']:
return True
f.close()
return False
def listAllUser(self):
list = []
file = open(credentials, "r")
lines = file.readlines()
for line in lines:
userName, password = line.split(" ")
list.append(userName)
file.close()
return list
def whoelsesince(self, targetUserName, pasttime):
now = time.time()
since = now - pasttime
whoelsesinceList = []
with open(userDataLoc, 'r') as f:
data = json.load(f)
if (serverStartTime > since):
for user in self.listAllUser():
if data[user]['active_period']:
whoelsesinceList.append(user)
else:
for user in self.listAllUser():
if user != targetUserName and data[user]['active_period']:
for period in data[user]['active_period']:
if period['start'] < since and period['end'] > since:
whoelsesinceList.append(user)
f.close()
return whoelsesinceList
def startprivate(self, targetuser, userName):
if not self.isUserExist(targetuser):
self.clientSocket.send(
"[error], user not exist".encode())
return
if self.isHeBlocked(userName, targetuser):
self.clientSocket.send(
f"[error], you have been blocked by {targetuser}".encode())
return
if targetuser not in onlineUser:
self.clientSocket.send(
"[error], user not online".encode())
return
# tell the targetClient, ask for agreement
# send [private request]
# TODO random a port number and create a socket then this socket will keep listening
if userName == targetuser:
self.clientSocket.send(
"[error], user name == target user".encode()
)
return
request = f" [private request] {userName} {self.clientAddress[0]} -> {targetuser}"
threads[targetuser].messageWords(request)
def generatePort(self):
while 1:
privateport = random.randint(2001, 12000)
if privateport not in usedPort:
return privateport
def noticeCreatePort(self, userName, port, host, targetuser):
threads[userName].messageWords(
f"[portCreate] {port} {host} {targetuser}")
def noticeConnectPort(self, userName, port, host, targetuser):
threads[userName].messageWords(
f"[portConnect] {port} {host} {targetuser}")
def receiveWords(self):
response = self.clientSocket.recv(1024).decode()
return response
def messageWords(self, message):
self.clientSocket.send(message.encode())
# class TimeoutCounter(Thread):
# def __init__(self, timeoutDur, clientSocket, userName):
# Thread.__init__(self)
# self.clientSocket = clientSocket
# self.timeoutDur = timeoutDur
# self.userName = userName
# def run(self):
# startTime = time.time()
# timeout = False
# global noNewContent
# global onlineUser
# while not timeout:
# if noNewContent:
# now = time.time()
# if (now - startTime) > self.timeoutDur:
# try:
# self.clientSocket.send(
# "sorry you are timeout".encode())
# onlineUser.remove(self.userName)
# except:
# print("timeout")
# timeout = True
# time.sleep(0.1)
# break
# else:
# noNewContent = True
# startTime = time.time()
print("\n===== Server is running =====")
print("===== Waiting for connection request from clients...=====")
while True:
serverSocket.listen()
clientSockt, clientAddress = serverSocket.accept()
clientThread = ClientThread(clientAddress, clientSockt)
clientThread.start()
# setup
# excuting the client command and notice new message