Compare commits

...

2 Commits

Author SHA1 Message Date
Attila Szigeti ccc664e0ea Merge branch 'master' of https://git.kmlabz.com/BiztProtoBois/server
continuous-integration/drone/push Build is passing Details
2021-04-25 18:29:55 +02:00
Attila Szigeti 4e5634eb1d DNL 2021-04-25 18:29:49 +02:00
1 changed files with 6 additions and 7 deletions

View File

@ -107,13 +107,12 @@ class Server:
if secondParam != "":
self.networkInstance.sendMessage("ERROR".encode('UTF-8'))
else:
# TODO
# Megkapod a filenevet arguemntumkent
# Kuldeni kell egy uzenetet, ami a falj tartalma
# Kuldeni kell egy uzenetet, ami EOF
# Mindig minden legyen UTF-8-kent kodolva, kiveve a falj, az marard
# Ha sikeres, OK valaszt megkapod, kulonben ERROR valaszt megkapod
pass
try:
file = self.executor.getFileInCurrentDirectory(firstParam)
self.networkInstance.sendMessage(file)
self.networkInstance.sendMessage("OK".encode('UTF-8'))
except:
self.networkInstance.sendMessage("ERROR".encode('UTF-8'))
else:
self.networkInstance.sendMessage("ERROR".encode('UTF-8'))