-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete.py
34 lines (24 loc) · 1.07 KB
/
delete.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
from argparse import Namespace
from compiler_admin.commands import RESULT_SUCCESS, RESULT_FAILURE
from compiler_admin.services.google import CallGAMCommand, user_account_name, user_exists
def delete(args: Namespace) -> int:
"""Delete the user account.
Args:
username (str): The account to delete. Must exist and not be an alias.
Returns:
A value indicating if the operation succeeded or failed.
"""
if not hasattr(args, "username"):
raise ValueError("username is required")
account = user_account_name(args.username)
if not user_exists(account):
print(f"User does not exist: {account}")
return RESULT_FAILURE
if getattr(args, "force", False) is False:
cont = input(f"Delete account {account}? (Y/n)")
if not cont.lower().startswith("y"):
print("Aborting delete.")
return RESULT_SUCCESS
print(f"User exists, deleting: {account}")
res = CallGAMCommand(("delete", "user", account, "noactionifalias"))
return RESULT_SUCCESS if res == RESULT_SUCCESS else RESULT_FAILURE