forked from taers232c/GAM-Scripts3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GetUsersNoGroups.py
executable file
·54 lines (46 loc) · 1.75 KB
/
GetUsersNoGroups.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
#!/usr/bin/env python3
"""
# Purpose: Create a CSV file showing users that don't belong to any groups
# Note: This script can use Basic or Advanced GAM:
# https://github.com/GAM-team/GAM
# https://github.com/taers232c/GAMADV-XTD3
# 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 list of users, group members
# $ gam print users > Users.csv
# $ gam print group-members > GroupMembers.csv
# 2: From that list of users, output a CSV file with the same headers as Users.csv plus GroupsCount
# that shows users that don't belong to any groups
# $ python3 GetUsersNoGroups.py ./Users.csv ./GroupMembers.csv ./UsersNoGroups.csv
"""
import csv
import sys
QUOTE_CHAR = '"' # Adjust as needed
LINE_TERMINATOR = '\n' # On Windows, you probably want '\r\n'
Users = {}
inputFile = open(sys.argv[1], 'r', encoding='utf-8')
inputCSV = csv.DictReader(inputFile, quotechar=QUOTE_CHAR)
fieldnames = inputCSV.fieldnames[:]
fieldnames.insert(1, 'GroupsCount')
for row in inputCSV:
row['GroupsCount'] = 0
Users[row['primaryEmail']] = row
inputFile.close()
inputFile = open(sys.argv[2], 'r', encoding='utf-8')
for row in csv.DictReader(inputFile, quotechar=QUOTE_CHAR):
if row['email'] in Users:
Users[row['email']]['GroupsCount'] += 1
inputFile.close()
if (len(sys.argv) > 3) and (sys.argv[3] != '-'):
outputFile = open(sys.argv[3], 'w', encoding='utf-8', newline='')
else:
outputFile = sys.stdout
outputCSV = csv.DictWriter(outputFile, fieldnames, lineterminator=LINE_TERMINATOR, quotechar=QUOTE_CHAR)
outputCSV.writeheader()
for _, v in sorted(Users.items()):
if v['GroupsCount'] == 0:
outputCSV.writerow(v)
if outputFile != sys.stdout:
outputFile.close()