-
Notifications
You must be signed in to change notification settings - Fork 52
/
MakeGroupMembersSyncs.py
executable file
·66 lines (57 loc) · 2.35 KB
/
MakeGroupMembersSyncs.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
#!/usr/bin/env python3
"""
# Purpose: Convert a CSV file showing group members to one that can be fed into Gam to sync members
# Note: This script can use GAM7 or Advanced GAM:
# https://github.com/GAM-team/GAM
# https://github.com/taers232c/GAMADV-XTD3
# Customize: Set INPUT and OUTPUT field names
# Python: Use python or python3 below as appropriate to your system; verify that you have version 3
# $ python -V or python3 -V
# Python 3.x.y
# Usage:
# 1: Get group members
# $ gam redirect csv ./GroupMembers.csv print group-members fields email,role
# 2: From that list of group members, output a CSV file with headers group,role,mambers that can be used to sync groups
# $ python3 MakeGroupMembersSyncs.py ./GroupMembers.csv ./GroupUpdates.csv
# 3: Preview the changes if desired
# $ gam csv ./GroupUpdates.csv gam update group "~group" sync "~role" preview "~members"
# 3: Sync the groups
# $ gam csv ./GroupUpdates.csv gam update group "~group" sync "~role" "~members"
"""
import csv
import sys
INPUT_GROUP = 'group'
INPUT_ROLE = 'role'
INPUT_EMAIL = 'email'
OUTPUT_GROUP = 'group'
OUTPUT_ROLE = 'role'
OUTPUT_MEMBERS = 'members'
DELIMITER = ' '
QUOTE_CHAR = '"' # Adjust as needed
LINE_TERMINATOR = '\n' # On Windows, you probably want '\r\n'
if (len(sys.argv) > 2) and (sys.argv[2] != '-'):
outputFile = open(sys.argv[2], 'w', encoding='utf-8', newline='')
else:
outputFile = sys.stdout
outputCSV = csv.DictWriter(outputFile, [OUTPUT_GROUP, OUTPUT_ROLE, OUTPUT_MEMBERS], lineterminator=LINE_TERMINATOR, quotechar=QUOTE_CHAR)
outputCSV.writeheader()
if (len(sys.argv) > 1) and (sys.argv[1] != '-'):
inputFile = open(sys.argv[1], 'r', encoding='utf-8')
else:
inputFile = sys.stdin
Groups = {}
for row in csv.DictReader(inputFile, quotechar=QUOTE_CHAR):
group = row[INPUT_GROUP]
role = row[INPUT_ROLE]
Groups.setdefault(group, {})
Groups[group].setdefault(role, [])
Groups[group][role].append(row[INPUT_EMAIL])
for group in sorted(Groups):
for role in Groups[group]:
outputCSV.writerow({OUTPUT_GROUP: group,
OUTPUT_ROLE: role,
OUTPUT_MEMBERS: DELIMITER.join(Groups[group][role])})
if inputFile != sys.stdin:
inputFile.close()
if outputFile != sys.stdout:
outputFile.close()