-
Notifications
You must be signed in to change notification settings - Fork 8
/
import_projects.py
315 lines (238 loc) · 8.1 KB
/
import_projects.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
#!/usr/bin/env python
"""Import Google Cloud Platform projects into an organization."""
import argparse
import re
import sys
from lib.google import Google
def add_project_to_org(admin, project):
"""Add the project to the organization."""
output = []
project_id = project['projectId']
body = project.copy()
del body['bindings']
del body['google']
del body['owner']
body['parent'] = {
'type': 'organization',
'id': admin.organization_id
}
params = {
'projectId': project_id,
'body': body,
}
# connect as service account
sa = Google()
sa.auth(service_account_file='serviceaccount.json')
try:
sa.crm.projects().update(**params).execute()
text = ' + added project to organization %s.' % (
admin.organization_id,
)
output.append(text)
except Exception as e:
print 'ERROR adding project %s to organization %s!' % (
project_id,
admin.organization_id,
)
print e
return output
def add_serviceaccount_owner(admin, project_id, project):
"""Add our service account as an owner on the project."""
sa_email = admin.credentials.service_account_email
newbindings = []
update = False
for b in project['bindings']:
user = 'serviceAccount:%s' % (sa_email)
if b['role'] == 'roles/owner' and user not in b['members']:
b['members'].append(user)
update = True
newbindings.append(b)
body = {
'policy': {
'bindings': newbindings
}
}
params = {
'resource': project_id,
'body': body,
}
output = []
if update:
g = project['google']
try:
g.crm.projects().setIamPolicy(**params).execute()
text = ' + added %s as project owner.' % (
sa_email
)
output.append(text)
except Exception as e:
print 'ERROR: Failed to add service account to %s!' % (
project_id
)
print e
return output
def display_projects(projects):
"""Display the list of projects to import."""
if projects:
print '\nFound %s projects to import:' % (len(projects))
for project_id in projects:
owner = projects[project_id]['owner']
print ' * %s (%s)' % (project_id, owner)
def get_domain_users(admin):
"""Return all users in the domain."""
# get users as superadmin
print 'Retrieving users from Google Admin SDK Directory API...'
users = admin.get_users()
print 'Found %s users in domain.' % (len(users))
return users
def get_args():
"""Return the arguments from argparse."""
parser = argparse.ArgumentParser()
parser.add_argument('superadmin')
return parser.parse_args()
def get_domain_projects(users):
"""Return a dict of all domain projects that have no parent."""
domain_projects = {}
# scan all users and get all their projects
print '\nScanning all users for projects without a parent...'
for user in users:
email = user['primaryEmail']
# authenticate as the user
g = Google()
g.auth(
service_account_file='serviceaccount.json',
sub_account=email,
)
# retrieve the user's projects
try:
projects = g.get_projects()
except Exception as e:
print 'ERROR retrieving %s: %s' % (
email, e
)
continue
# scan the projects
user_projects = scan_user_projects(g, email, projects)
domain_projects.update(user_projects)
return domain_projects
def get_organization_id(admin):
"""Return the organization_id based on the super admin email."""
organization_id = None
# get list of organizations
organizations = admin.get_organizations()
# find the correct organization
for o in organizations:
domain = o['displayName']
if domain == admin.domain:
name = o['name']
organization_id = name.replace('organizations/', '')
print 'Organization: %s [%s] (customer: %s)\n' % (
domain,
organization_id,
o['owner']['directoryCustomerId'],
)
return organization_id
def move_projects(admin, projects):
"""Update and move projects into the organization."""
for project_id in sorted(projects):
project = projects[project_id]
# add service account as project owner
output = add_serviceaccount_owner(admin, project_id, project)
# add project to organization
output += add_project_to_org(admin, project)
if output:
print ' * %s:' % (project_id)
print '\n'.join(output)
print
def scan_user_projects(g, email, projects):
"""Return the list of projects to import."""
user_projects = {}
output = []
for p in sorted(projects, key=lambda x: x['name']):
# skip projects that are not active
if p['lifecycleState'] != 'ACTIVE':
continue
# look for projects that have no parent
if 'parent' not in p or not p['parent']:
project_id = p['projectId']
params = {
'resource': project_id,
'body': {},
}
# retrieve the iam policy for the project
policy = g.crm.projects().getIamPolicy(**params).execute()
owner = None
# scan each of the bindings to see if user is owner
bindings = policy.get('bindings', [])
for b in bindings:
# skip bindings other than owner
if b['role'] != 'roles/owner':
continue
# see if user is one of the owners
if 'user:%s' % (email) in b['members']:
owner = email
# skip projects where the user is not the owner
if not owner:
continue
# create some text to output about the user's project
text = ' * %s: %s [%s] (%s)' % (
p['name'],
p['projectId'],
p['projectNumber'],
p['lifecycleState'],
)
output.append(text)
# add bindings, google auth and owner to the project data
p['bindings'] = bindings
p['google'] = g
p['owner'] = email
# add project to list of projects to import
user_projects[project_id] = p
# display the output for this user
if output:
print ' %s:' % (email)
print '\n'.join(output)
return user_projects
def main():
"""Main function."""
# get arguments
args = get_args()
# create google class object
admin = Google(superadmin=args.superadmin)
# authenticate with the service account
admin.auth(
service_account_file='serviceaccount.json',
sub_account=args.superadmin,
)
# get domain users
users = get_domain_users(admin)
# get domain-owned projects that have no parent
projects = get_domain_projects(users)
# exit if there are no projects to import
if not projects:
sys.exit(0)
# display the list of all projects we can import
display_projects(projects)
# ask if we are sure we want to continue
print '\nPreparing to move %s projects into org: %s...' % (
len(projects),
admin.domain,
)
prompt = " ---> Are you sure you want to continue? [y/N]: "
confirm = raw_input(prompt)
# continue if Yes or yes or Y or y
if not re.search('y|Y', confirm):
print 'Exiting.'
sys.exit(1)
print
# get the oranization ID based on the super admin email
admin.organization_id = get_organization_id(admin)
# fail if the organization_id is not set
if not admin.organization_id:
print 'ERORR: organization_id not found!'
sys.exit(1)
# move projects into the organization
move_projects(admin, projects)
print 'Done.'
if __name__ == "__main__":
main()