forked from taers232c/GAM-Scripts3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GetGroupsWithOnlyExternalMembers.py
executable file
·86 lines (76 loc) · 2.99 KB
/
GetGroupsWithOnlyExternalMembers.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
#!/usr/bin/env python3
"""
# Purpose: Produce a CSV file showing groups with only external members, i.e, those in domains other than ones you specify.
# Note: This script can use Basic or Advanced GAM:
# https://github.com/GAM-team/GAM
# https://github.com/taers232c/GAMADV-XTD3
# Customize: DELIMITER, DOMAIN_LIST, AGGREGATE_DOMAINS
# 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
# $ Basic: gam print group-members fields email,type > GroupMembers.csv
# $ Advanced: gam redirect csv ./GroupMembers.csv print group-members fields email,type
# 2: From that list of group members, output a CSV file with headers group,domain,count
# $ python3 GetGroupsWithOnlyExternalMembers.py ./GroupMembers.csv ./GroupsWithOnlyExternalMembers.csv
"""
import csv
import sys
DELIMITER = ' ' # Character to separate domains in output CSV
QUOTE_CHAR = '"' # Adjust as needed
LINE_TERMINATOR = '\n' # On Windows, you probably want '\r\n'
# Substitute your internal domain(s) in the list below, e.g., DOMAIN_LIST = ['domain.com',] DOMAIN_LIST = ['domain1.com', 'domain2.com',]
DOMAIN_LIST = ['domain.com',]
# False - show one group/one external domain per line
# True - show one group/all external domains per line
AGGREGATE_DOMAINS = True
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, ['group', 'domain', 'count'], 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
inputCSV = csv.DictReader(inputFile, quotechar=QUOTE_CHAR)
Groups = {}
GroupsWithInternalMembers = set()
for row in inputCSV:
if row['type'] in ['USER', 'GROUP']:
group = row['group']
emailAddress = row['email']
atLoc = emailAddress.find('@')
if atLoc > 1:
domain = emailAddress[atLoc+1:].lower()
else:
domain = 'unknown'
if domain not in DOMAIN_LIST:
Groups.setdefault(group, {})
Groups[group].setdefault(domain, 0)
Groups[group][domain] += 1
else:
GroupsWithInternalMembers.add(group)
for group, domains in sorted(iter(Groups.items())):
if group in GroupsWithInternalMembers:
continue
if not AGGREGATE_DOMAINS:
for domain, count in sorted(iter(domains.items())):
outputCSV.writerow({'group': group,
'domain': domain,
'count': count})
else:
total = 0
domainsList = []
for domain, count in sorted(iter(domains.items())):
domainsList.append(domain)
total += count
outputCSV.writerow({'group': group,
'domain': DELIMITER.join(domainsList),
'count': total})
if inputFile != sys.stdin:
inputFile.close()
if outputFile != sys.stdout:
outputFile.close()