-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandLineInterface.py
More file actions
149 lines (75 loc) · 3.05 KB
/
CommandLineInterface.py
File metadata and controls
149 lines (75 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import asyncio
from FileHandler import FileHandler
from os import system
class Interactions(FileHandler):
def __init__(self):
super().__init__()
self.options = {
'a': self.__create,
'b': self.__login,
'c': self.__update,
'd': self.__delete,
'e': self.__ban
}
# self.initiateProcess()
async def __clearConsole(self):
await system('cls')
print("NOルVA v1.0b")
print("Author: 列星氷刃")
def __hashText(self, text):
return super().__hashText(text)
def __create(self, payload):
self.__clearConsole()
payload = {}
payload['username'] = input('Enter username: ')
payload['password'] = input('Enter password: ')
payload['display_name'] = input('Enter display name: ')
return super().createUser(payload)
def __login(self):
self.__clearConsole()
payload = {}
payload['username'] = input('Enter username: ')
payload['password'] = input('Enter password: ')
return super().loginUser(payload)
def __update(self, payload):
self.__clearConsole()
payload = {}
payload['username'] = input('Enter username: ')
payload['password'] = input('Enter password: ')
payload['display_name'] = input('Enter display name: ')
return super().updateUser(payload)
def __delete(self):
self.__clearConsole()
username = input('Enter username: ')
password = input('Enter password: ')
return super().deleteUser(username, password)
def __ban(self):
self.__clearConsole()
username = input('Enter username: ')
return super().banUser(username)
async def initiateProcess(self):
while True:
await self.__clearConsole()
print('''Select an option...
A. Create user
B. Login user
C. Update user
D. Delete user
''')
option = input('Enter option: ').lower()
if option in self.options:
await self.options[option]()
else:
print('\nInvalid option')
break
# async def initiate():
# interactions = await Interactions()
# # interactions.initiateProcess()
# if __name__ == '__main__':
# try:
# initiate()
# except Exception as error:
# pass
# Interactions()
Interactions = Interactions()
asyncio.run(Interactions.initiateProcess())