Compare commits

...

2 Commits

Author SHA1 Message Date
Attila Szigeti f345d4b961 Merge branch 'master' of https://git.kmlabz.com/BiztProtoBois/server
continuous-integration/drone/push Build is passing Details
2021-04-25 18:19:18 +02:00
Attila Szigeti 487f5ec772 UPL 2021-04-25 18:19:08 +02:00
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'))