This commit is contained in:
Attila Szigeti 2021-04-25 18:19:08 +02:00
parent a5490854af
commit 487f5ec772
1 changed files with 8 additions and 7 deletions

View File

@ -94,13 +94,14 @@ class Server:
if secondParam != "":
self.networkInstance.sendMessage("ERROR".encode('UTF-8'))
else:
# TODO
# Megkapod a filenevet argumentumneknt
# Fogadni kell egy uzenetet, ami a fajl tartalma
# Fogadni kell egy uzenetet, ami "EOF"
# Mindig minden legyen UTF-8-kent kodolva, kiveve a falj, az marard
# Ha sikeres, OK kuldese, kulonben ERROR kuldese
pass
fileName = firstParam
fileMessage = self.networkInstance.recieveMessage()
eof = self.networkInstance.recieveEncryptedMessage().decode('UTF-8')
if eof == "EOF":
self.executor.putFileInCurrentDirectory(fileName, fileMessage)
self.networkInstance.sendMessage("OK".encode('UTF-8'))
else:
self.networkInstance.sendMessage("ERROR".encode('UTF-8'))
elif command == "DNL":
if secondParam != "":
self.networkInstance.sendMessage("ERROR".encode('UTF-8'))