Merge branch 'master' of https://git.kmlabz.com/BiztProtoBois/client into master
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2021-04-26 23:27:32 +02:00
commit 48fd34117d
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
1 changed files with 22 additions and 10 deletions

View File

@ -56,13 +56,13 @@ def printCommand():
' List content of current directory -> LST \n' +
' Upload file to current directory -> UPL <filename> \n' +
' Download file from current directory -> DNL <filename> \n' +
' Login -> LIN <username> \n' +
' Login -> LIN <username> <password> \n' +
' Logout -> LOUT \n')
def printCommandsWihtoutLogin():
print('\nYou must log in before issuing other commads!\n',
' Login -> LIN <username> \n',
' Login -> LIN <username> <password> \n',
' Exit -> EXIT\n')
@ -89,6 +89,7 @@ if not os.path.isfile(CONFIG_LOCATION) or os.stat(CONFIG_LOCATION).st_size == 0:
SERVER_PUBLIC_KEY = loadPublicKey()
CLIENT_PRIVATE_KEY = loadPrivateKey(PASSPHRASE)
CLIENT_ADDRESS = loadAddress()
LOGGED_IN = False
while True:
command = input("Type a command:")
@ -99,15 +100,25 @@ while True:
print("Invalid command format!")
continue
if separatedCommand[0] == 'LIN' and len(separatedCommand) == 2:
network = NetWrapper(CLIENT_PRIVATE_KEY, CLIENT_ADDRESS, separatedCommand[1], SERVER_PUBLIC_KEY)
try:
network.connectToServer(separatedCommand[2])
except Exception as e:
print("Error: "+str(e))
if not LOGGED_IN:
if separatedCommand[0] == 'LIN' and len(separatedCommand) == 3:
network = NetWrapper(CLIENT_PRIVATE_KEY, CLIENT_ADDRESS, separatedCommand[1], SERVER_PUBLIC_KEY)
try:
network.connectToServer(separatedCommand[2])
response = network.recieveMessage().decode('UTF-8')
print(response)
if response == 'OK':
LOGGED_IN = True
else:
LOGGED_IN = False
except Exception as e:
print("Error: "+str(e))
LOGGED_IN = False
continue
continue
LOGGED_IN = True
continue
else:
print('You are already logged in!')
if separatedCommand[0] == 'EXIT':
sys.exit(1)
@ -181,3 +192,4 @@ while True:
except Exception as e:
print('Error: ' + str(e))
continue