forked from digideskio/GAM-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGetEmptyGroups.py
More file actions
executable file
·40 lines (34 loc) · 1.33 KB
/
GetEmptyGroups.py
File metadata and controls
executable file
·40 lines (34 loc) · 1.33 KB
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
#!/usr/bin/env python2
"""
# Purpose: Make a CSV file showing groups with no members
# Note: This script can use Basic or Advanced GAM:
# https://github.com/jay0lee/GAM
# https://github.com/taers232c/GAMADV-XTD3
# Usage:
# 1: Get group member counts
# $ gam print groups memberscount managerscount ownerscount > ./GroupCounts.csv
# 2: From that list of groups, output a CSV file with headers "group" for those groups with no members
# $ python GetEmptyGroups.py ./GroupCounts.csv ./EmptyGroups.csv
"""
import csv
import sys
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], 'wb')
else:
outputFile = sys.stdout
outputCSV = csv.DictWriter(outputFile, ['group'], lineterminator=LINE_TERMINATOR, quotechar=QUOTE_CHAR)
outputCSV.writeheader()
if (len(sys.argv) > 1) and (sys.argv[1] != '-'):
inputFile = open(sys.argv[1], 'rbU')
else:
inputFile = sys.stdin
for row in csv.DictReader(inputFile, quotechar=QUOTE_CHAR):
total = int(row.get('MembersCount', '0'))+int(row.get('ManagersCount', '0'))+int(row.get('OwnersCount', '0'))
if total == 0:
outputCSV.writerow({'group': row.get('email', row.get('Email', 'Unknown'))})
if inputFile != sys.stdin:
inputFile.close()
if outputFile != sys.stdout:
outputFile.close()