work on the cliui
This commit is contained in:
parent
1203bb2b7a
commit
9fd985ea49
@ -37,19 +37,37 @@ class OnionrCLIUI:
|
|||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def refresh(self):
|
||||||
|
for i in range(100):
|
||||||
|
print('')
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
'''Main CLI UI interface menu'''
|
'''Main CLI UI interface menu'''
|
||||||
showMenu = True
|
showMenu = True
|
||||||
|
isOnline = "No"
|
||||||
|
firstRun = True
|
||||||
|
|
||||||
while showMenu:
|
while showMenu:
|
||||||
print('''\n1. Flow (Anonymous public chat, use at your own risk)
|
if firstRun:
|
||||||
|
print("please wait while Onionr starts...")
|
||||||
|
subprocess.Popen(["./onionr.py", "start"], stdin=subprocess.PIPE, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
|
||||||
|
time.sleep(30)
|
||||||
|
firstRun = False
|
||||||
|
|
||||||
|
if self.myCore._utils.localCommand('ping') == 'pong':
|
||||||
|
isOnline = "Yes"
|
||||||
|
print('''Online Status: ''' + isOnline + '''
|
||||||
|
|
||||||
|
1. Flow (Anonymous public chat, use at your own risk)
|
||||||
2. Mail (Secure email-like service)
|
2. Mail (Secure email-like service)
|
||||||
3. File Sharing
|
3. File Sharing
|
||||||
4. User Settings
|
4. User Settings
|
||||||
5. Quit
|
5. Start/Stop Daemon
|
||||||
|
6. Quit
|
||||||
''')
|
''')
|
||||||
try:
|
try:
|
||||||
choice = input(">").strip().lower()
|
choice = input(">").strip().lower()
|
||||||
except KeyboardInterrupt:
|
except (KeyboardInterrupt, EOFError):
|
||||||
choice = "quit"
|
choice = "quit"
|
||||||
|
|
||||||
if choice in ("flow", "1"):
|
if choice in ("flow", "1"):
|
||||||
@ -61,8 +79,20 @@ class OnionrCLIUI:
|
|||||||
self.setName()
|
self.setName()
|
||||||
except (KeyboardInterrupt, EOFError) as e:
|
except (KeyboardInterrupt, EOFError) as e:
|
||||||
pass
|
pass
|
||||||
elif choice in ("5", "quit"):
|
elif choice in ("5", "daemon"):
|
||||||
|
if isOnline == "Yes":
|
||||||
|
print("Onionr daemon will shutdown...")
|
||||||
|
#self.myCore._utils.localCommand("shutdown")
|
||||||
|
self.myCore.daemonQueueAdd('shutdown')
|
||||||
|
else:
|
||||||
|
print("Starting Daemon...")
|
||||||
|
subprocess.Popen(["./onionr.py", "start"], stdin=subprocess.PIPE, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
|
||||||
|
elif choice in ("6", "quit"):
|
||||||
showMenu = False
|
showMenu = False
|
||||||
|
elif choice == "":
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
print("Invalid choice")
|
||||||
return
|
return
|
||||||
|
|
||||||
def setName(self):
|
def setName(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user