-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
94 lines (75 loc) · 3.42 KB
/
main.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
import argparse
import sys
from compiler_admin import __version__ as version
from compiler_admin.commands.create import create
from compiler_admin.commands.convert import ACCOUNT_TYPE_OU, convert
from compiler_admin.commands.delete import delete
from compiler_admin.commands.info import info
from compiler_admin.commands.init import init
from compiler_admin.commands.offboard import offboard
from compiler_admin.commands.restore import restore
from compiler_admin.commands.signout import signout
def main(argv=None):
argv = argv if argv is not None else sys.argv[1:]
parser = argparse.ArgumentParser(prog="compiler-admin")
# https://stackoverflow.com/a/8521644/812183
parser.add_argument(
"-v",
"--version",
action="version",
version=f"%(prog)s {version}",
)
subparsers = parser.add_subparsers(dest="command")
def _subcmd(name, help, add_username_arg=True) -> argparse.ArgumentParser:
"""Helper creates a new subcommand parser."""
parser = subparsers.add_parser(name, help=help)
if add_username_arg is True:
parser.add_argument("username", help="A Compiler user account name, sans domain.")
return parser
_subcmd("info", help="Print configuration and debugging information.", add_username_arg=False)
init_parser = _subcmd(
"init",
help="Initialize a new admin project. This command should be run once before any others.",
)
init_parser.add_argument("--gam", action="store_true", help="If provided, initialize a new GAM project.")
init_parser.add_argument("--gyb", action="store_true", help="If provided, initialize a new GYB project.")
_subcmd("create", help="Create a new user in the Compiler domain.")
convert_parser = _subcmd("convert", help="Convert a user account to a new type.")
convert_parser.add_argument(
"account_type", choices=ACCOUNT_TYPE_OU.keys(), help="Target account type for this conversion."
)
delete_parser = _subcmd("delete", help="Delete a user account.")
delete_parser.add_argument(
"--force", action="store_true", default=False, help="Don't ask for confirmation before deletion."
)
offboard_parser = _subcmd("offboard", help="Offboard a user account.")
offboard_parser.add_argument("--alias", help="Account to assign username as an alias.")
offboard_parser.add_argument(
"--force", action="store_true", default=False, help="Don't ask for confirmation before offboarding."
)
_subcmd("restore", help="Restore an email backup from a prior offboarding.")
signout_parser = _subcmd("signout", help="Signs a user out from all active sessions.")
signout_parser.add_argument(
"--force", action="store_true", default=False, help="Don't ask for confirmation before signout."
)
if len(argv) == 0:
argv = ["info"]
args, extra = parser.parse_known_args(argv)
if args.command == "info":
return info()
elif args.command == "create":
return create(args, *extra)
elif args.command == "convert":
return convert(args)
elif args.command == "delete":
return delete(args)
elif args.command == "init":
return init(args)
elif args.command == "offboard":
return offboard(args)
elif args.command == "restore":
return restore(args)
elif args.command == "signout":
return signout(args)
if __name__ == "__main__":
raise SystemExit(main())