-
Notifications
You must be signed in to change notification settings - Fork 0
/
team_creation.py
190 lines (150 loc) · 5.43 KB
/
team_creation.py
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
"""Helper script for managing teams."""
import sys
import models
def check_teams():
print("Checking for existing teams...\n")
teams = models.Team.get_teams()
ids = []
print("Listing team names:")
for team in teams:
print("Team {}: {}".format(team.id, team.name))
ids.append(team.id)
print("If you would like further team details, enter the team ID.")
print("If you would like to delete an existing team, enter DELETE followed by the team ID.")
print("Hitting ENTER will exit the program.")
print("Example: DELETE 4")
response = input(">>> ").strip()
if len(response) > 0 and response.split()[0] == "DELETE":
# User wants to delete a team
try:
team_id = int(response.split()[1])
delete_team(team_id)
except ValueError:
print("[!] Invalid response!")
sys.exit(1)
elif len(response) > 0:
# User wants team details
try:
team_id = int(response)
if team_id in ids:
print("Getting team details...\n")
team_detail(team_id)
else:
print("Team with that ID does not exist.")
except ValueError:
print("[!] Invalid response!")
sys.exit(1)
def create_team():
print("Please supply the details of the new team...\n")
name = input("Team name: ")
institution = input("Institution: ")
code = input("Code: ")
print("\nAttempting to create new team...")
try:
models.Team.create_team(
name=name,
institution=institution,
code=code
)
print("[!] Team created successfully!")
print("Please remember the code {} for team {}".format(code, name))
except ValueError as e:
print("[!] Team creation failed! Error: {}".format(e))
def delete_team(team_id):
"""Offer ability to delete team with given ID."""
team_detail(team_id)
check = input("Are you sure you would like to delete this team? [N/y] ")
if check.upper() == "Y":
print("Deleting team...")
models.Team.delete_team(team_id)
print("[!] Team deleted!")
else:
print("Canceling... no action taken.")
def team_detail(team_id):
"""Supply team details given it's ID."""
team = models.Team.get_team(team_id)
print("Team name:", team.name)
print("Institution:", team.institution)
print("Team code:", team.code)
def main():
print("[#] Team Manager [#]\n")
task = input("Would you like to check existing teams or create a new one? [CHECK/create] ")
if task.upper() == "CREATE":
create_team()
else:
check_teams()
if __name__ == '__main__':
main()
print("Checking for existing teams...\n")
teams = models.Team.get_teams()
ids = []
print("Listing team names:")
for team in teams:
print("Team {}: {}".format(team.id, team.name))
ids.append(team.id)
print("If you would like further team details, enter the team ID.")
print("If you would like to delete an existing team, enter DELETE followed by the team ID.")
print("Hitting ENTER will exit the program.")
print("Example: DELETE 4")
response = input(">>> ").strip()
if len(response) > 0 and response.split()[0] == "DELETE":
# User wants to delete a team
try:
team_id = int(response.split()[1])
delete_team(team_id)
except ValueError:
print("[!] Invalid response!")
sys.exit(1)
elif len(response) > 0:
# User wants team details
try:
team_id = int(response)
if team_id in ids:
print("Getting team details...\n")
team_detail(team_id)
else:
print("Team with that ID does not exist.")
except ValueError:
print("[!] Invalid response!")
sys.exit(1)
def create_team():
print("Please supply the details of the new team...\n")
name = input("Team name: ")
institution = input("Institution: ")
code = input("Code: ")
print("\nAttempting to create new team...")
try:
models.Team.create_team(
name=name,
institution=institution,
code=code
)
print("[!] Team created successfully!")
print("Please remember the code {} for team {}".format(code, name))
except ValueError as e:
print("[!] Team creation failed! Error: {}".format(e))
def delete_team(team_id):
"""Offer ability to delete team with given ID."""
team_detail(team_id)
check = input("Are you sure you would like to delete this team? [N/y] ")
if check.upper() == "Y":
print("Deleting team...")
models.Team.delete_team(team_id)
print("[!] Team deleted!")
else:
print("Canceling... no action taken.")
def team_detail(team_id):
"""Supply team details given it's ID."""
team = models.Team.get_team(team_id)
print("Team name:", team.name)
print("Institution:", team.institution)
print("Team code:", team.code)
def main():
print("[#] Team Manager [#]\n")
task = input("Would you like to check existing teams or create a new one? [CHECK/create] ")
if task.upper() == "CREATE":
create_team()
else:
check_teams()
if __name__ == '__main__':
main()