-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset_password.py
40 lines (27 loc) · 1.25 KB
/
reset_password.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
from argparse import Namespace
from compiler_admin.commands import RESULT_SUCCESS, RESULT_FAILURE
from compiler_admin.commands.signout import signout
from compiler_admin.services.google import USER_HELLO, CallGAMCommand, user_account_name, user_exists
def reset_password(args: Namespace) -> int:
"""Reset a user's password.
Optionally notify an email address with the new randomly generated password.
Args:
username (str): the user account to reset.
notify (str): an email address to send the new password notification.
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
command = ("update", "user", account, "password", "random", "changepassword")
notify = getattr(args, "notify", None)
if notify:
command += ("notify", notify, "from", USER_HELLO)
print(f"User exists, resetting password: {account}")
res = CallGAMCommand(command)
res += signout(args)
return RESULT_SUCCESS if res == RESULT_SUCCESS else RESULT_FAILURE