-
Notifications
You must be signed in to change notification settings - Fork 52
/
user_deprovision.py
executable file
·583 lines (519 loc) · 22.9 KB
/
user_deprovision.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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
#!/usr/bin/env python
#
# Copyright (c) 2018, PagerDuty, Inc. <[email protected]>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of PagerDuty Inc nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL PAGERDUTY INC BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# PagerDuty Support asset: user_deprovision
import argparse
import json
import logging
import os
import time
import csv
from datetime import datetime
from six.moves import input
from pdpyras import APISession, PDClientError
log = logging.getLogger('user_deprovision')
class Resources:
def __init__(self, access_token, from_email):
self.schedules = None
self.teams = None
self.session = APISession(access_token, default_from=from_email)
def get_schedules(self):
if self.schedules is None:
log.info("Retrieving all schedules on the account. This could take several minutes.")
print("Retrieving all schedules on the account. This could take several minutes.")
self.schedules = self.session.list_all('schedules')
log.info("Retrieving a list of users for each schedule. This could take several minutes.")
for schedule in self.schedules:
schedule['details'] = self.session.rget(schedule.get('self'))
return self.schedules
def get_teams(self):
if self.teams is None:
log.info("Retrieving all teams on the account. This could take several minutes.")
print("Retrieving all teams on the account. This could take several minutes.")
self.teams = self.session.list_all('teams')
log.info("Retrieving a list of users for each team. This could take several minutes.")
for team in self.teams:
team['users'] = self.session.list_all('users', params={'team_ids[]': team.get('id')})
return self.teams
def handle_exception(e):
r = e.response
if r is not None:
r = e.response
log.error("HTTP error %d: %s", r.status_code, r.text)
else:
log.exception(e)
def input_yn(message):
"""Prompt for a yes or no
Summary: Prompt a y/n question
Attributes:
@param message: question requiring y/n answer from user
Returns: Boolean value of the user's answer
"""
response = input(message + " (y/n): ").strip().lower()
valid_responses = ('n', 'y')
if response and response[0] in valid_responses:
return bool(valid_responses.index(response))
else:
return input_yn(message)
class DeleteUser(APISession):
"""Class to handle all user deletion logic.
REST API access methods are inherited from pdpyras.APISession.
"""
def __init__(self, access_token, email, from_email, backup):
super(DeleteUser, self).__init__(access_token, default_from=from_email)
self.email = email
self.backup = backup
# Memoize user and set user_id property for convenience
self.user_id = False
if self.user is not None:
self.user_id = self.user['id']
def backup_object(self, url, modification):
"""
Makes a backup file of an object.
:param url:
The URL to the resource to be backed up
:param modification:
The type of modification being made
"""
if not os.path.isdir('backup'):
os.mkdir('backup')
now = int(time.time())
if 'teams' in url:
# Removed the user from team. Record that this was done
user_id, team_id = url.split('/')[::-2][:2]
filename = "removeduser-%s-fromteam-%s-%d" % (user_id, team_id, now)
# Just create an empty file (TODO: retrieve and save team role)
open(os.path.join('backup', filename), 'a').write('')
else:
# Save the object in a JSON file.
obj = self.rget(url)
filename = '%s-%s-%s-%d.json' % (modification, obj['type'], obj['id'],
now)
fh = open(os.path.join('backup', filename), 'w')
json.dump(obj, fh)
fh.close()
def delete(self, url, **kw):
"""
Delete an object, optionally making a backup first.
"""
if self.backup:
self.backup_object(url, 'deleted')
return super(DeleteUser, self).delete(url, **kw)
def delete_user(self):
"""Delete user from PagerDuty"""
r = self.delete('users/' + self.user_id)
return r.ok
def list_open_incidents(self, additional_params=None):
"""
Get any open incidents assigned to the user.
:param additional_params:
Parameters to send to the list incidents index. One could specify
``'date_range': 'all'`` to get all incidents and not just those that
are recent, for instance, or restrict to certain service IDs using
the ``service_ids[]`` parameter.
"""
default_params = {
'statuses[]': ['triggered', 'acknowledged'],
'user_ids[]': self.user_id,
'date_range': 'all'
}
if additional_params:
default_params.update(additional_params)
return self.list_all('incidents', params=default_params)
def resolve_incidents(self, incidents):
"""
Resolves a list of incidents.
:param incidents:
List of incident-like dict objects, i.e. retrieved from the API
"""
for incident in incidents:
log.info('Resolving %s', incident['id'])
try:
self.rput(incident['self'],
json={'type': 'incident_reference', 'status': 'resolved'})
except PDClientError as e:
handle_exception(e)
log.error("Could not resolve incident %s.", incident['id'])
@property
def escalation_policies(self):
"""List all escalation policies user is on"""
if not hasattr(self, '_escalation_policies'):
self._escalation_policies = self.list_all('escalation_policies', params={'user_ids[]': self.user_id})
return self._escalation_policies
def schedule_has_user(self, schedule):
"""Check if a schedule contains a particular user"""
for user in schedule.get('users', []):
if user.get('id') == self.user_id:
return True
return False
def remove_from_escalation_policy(self, escalation_policy, obj=None):
"""
Remove a user or schedule from an escalation policy's rules.
:param escalation_policy:
reference to the escalation policy to remove the user from
:param obj:
PagerDuty object or resource reference
"""
if obj is None: # Assume it's the user we want to remove
obj = self.user
obj_type = obj['type'].replace('_reference', '')
new_rules = []
for i, rule in enumerate(escalation_policy['escalation_rules']):
new_targets = []
for j, target in enumerate(rule['targets']):
# Remove the target because it's being deleted
if target['id'] == obj['id'] and \
target['type'].startswith(obj_type):
continue
new_targets.append(target)
# Remove the rule because it has no targets
if not len(new_targets):
continue
rule['targets'] = new_targets
new_rules.append(rule)
escalation_policy['escalation_rules'] = new_rules
return len(new_rules) > 0
def remove_from_schedule(self, schedule):
"""
Removes the user from a given schedule.
:param schedule:
Schedule dictionary object
"""
new_layers = []
not_empty = False
for layer in schedule['schedule_layers']:
# Get index of user in layer
new_users = []
for u in layer['users']:
# Remove the user
if u['user']['id'] == self.user_id:
continue
new_users.append(u)
# If this is the only user on the layer, end the layer now
if not len(new_users):
layer['end'] = datetime.now().isoformat()
else:
layer['users'] = new_users
not_empty = True
new_layers.append(layer)
# Reverse the order before saving because of a known issue
schedule['schedule_layers'] = new_layers[::-1]
# Remove read-only property
del schedule['users']
return not_empty
def remove_user_from_team(self, team_id):
"""Remove a user from a team"""
try:
self.rdelete('/teams/{team_id}/users/{user_id}'.format(
team_id=team_id, user_id=self.user_id))
except PDClientError as e:
handle_exception(e)
def team_has_user(self, team_users):
"""Check the users on a team for the deletion user"""
for user in team_users:
if user['id'] == self.user_id:
return True
return False
def put(self, url, **kw):
"""
Performs a put request, optionally making a backup first.
"""
if self.backup:
self.backup_object(url, 'updated')
return super(DeleteUser, self).put(url, **kw)
@property
def user(self):
if not (hasattr(self, '_user') and self._user):
self._user = self.find('users', self.email,
attribute='email')
return self._user
def delete_user(user_email, args, resources):
"""
Deletes a PagerDuty user.
Prompts for input when necessary to make decisions, i.e. whether to delete
an escalation policy or schedule that will be empty after removing the user.
:returns: integer 1 or 0 signifying whether the user was deleted
"""
access_token = args.access_token
from_email = args.from_email
prompt_del = args.prompt_del
auto_resolve = args.auto_resolve
backup = args.backup
no_delete = args.do_not_delete
# Declare an instance of the DeleteUser class
user_deleter = DeleteUser(access_token, user_email, from_email, backup)
if user_deleter.user is None:
log.error("Unable to find user matching email %s; skipping.",
user_email)
return 0
# Get the user ID of the user to be deleted
user_id = user_deleter.user_id
if no_delete:
log.info('Removing user from all associated resources: %(id)s (%(name)s <%(email)s>)',
user_deleter.user)
else:
log.info('Deleting user: %(id)s (%(name)s <%(email)s>)',
user_deleter.user)
#############
# Incidents #
#############
log.info("Checking for incidents assigned to user %s...", user_id)
# Check for open incidents user is currently in use for
incidents = user_deleter.list_open_incidents()
n_incidents = len(incidents)
if n_incidents > 0:
# Determine if we want to auto-resolve them
autores = auto_resolve or input_yn("There are currently %d open "
"incidents that this user is assigned. Do you want to auto-resolve "
"them?" % n_incidents)
if autores:
log.info('Resolving all open incidents...')
user_deleter.resolve_incidents(incidents)
log.info('Successfully resolved all open incidents')
else:
log.critical("There are currently %d open incidents that this "
"user is assigned. Please resolve them and try again.",
n_incidents)
log.info("The %s%d incidents assigned to this user are: ",
"first " if n_incidents > 20 else "", n_incidents)
for i in incidents[:20]:
log.info(i['self'])
return 0
#######################
# Escalation Policies #
#######################
log.info("Removing user %s from escalation policies...", user_id)
escalation_policies = user_deleter.escalation_policies
log.debug('Escalation policies: %s', ','.join(
[e['id'] for e in escalation_policies]))
for ep in escalation_policies:
# Cache escalation policy
user_deleter.remove_from_escalation_policy(ep)
# Update the escalation policy. If it's empty, ask if the user wants to
# delete the escalation policy
if len(ep['escalation_rules']) != 0 or (
prompt_del and not input_yn(
"Escalation policy ID=%s, name=%s will be empty. Delete?" % (
ep['id'],
ep['name']
)
)):
# Update the escalation policy
try:
# Delete description in case it is null
del (ep['description'])
user_deleter.rput(ep['self'], json=ep)
except PDClientError as e:
handle_exception(e)
else:
# Attempt to delete the empty EP otherwise:
try:
log.info("Escalation policy %s is empty after removing "
"the user; deleting it.", ep['id'])
user_deleter.rdelete(ep['self'])
except Exception:
log.warning('Could not delete escalation policy %s. It no '
'longer has any on-call engineers or schedules but may '
'still be in use by services in your account.',
ep['name'])
log.info("Finished escalation policies for user %s.", user_id)
#############
# Schedules #
#############
log.info("Removing user %s from schedules...", user_id)
for schedule in resources.get_schedules():
# Check if user is in schedule
if user_deleter.schedule_has_user(schedule.get('details')):
non_empty = user_deleter.remove_from_schedule(schedule.get('details'))
# If deleting, remove the schedule from any escalation policies
if not non_empty and (prompt_del and input_yn(
("Schedule (ID=%s, name=%s) will be empty after removing "
"user. Delete it?") % (schedule.get('details', {}).get('id'), schedule.get('details', {}).get('name'))
)):
for ep_ref in schedule.get('details', {}).get('escalation_policies'):
# Remove schedule from escalation policies...
ep = user_deleter.rget(ep_ref['self'])
user_deleter.remove_from_escalation_policy(ep, obj=schedule)
# Update the escalation policy if there are rules or delete
# the escalation policy if there are none
if len(ep['escalation_rules']) > 0:
try:
log.info("Updating escalation policy " + ep['id'])
user_deleter.rput(ep['self'], json=ep)
except PDClientError as e:
handle_exception(e)
elif not prompt_del or input_yn((
"Escalation policy (ID=%s, name=%s) will be empty"
"after removing the schedule to be deleted. "
"Delete the escalation policy also?") % (
ep['id'], ep['name'])):
try:
log.info("Escalation policy %s will be empty "
"after removing the schedule to be deleted "
"(%s). The escalation policy will also be "
"deleted.", ep['id'], schedule.get('details', {}).get('id'))
user_deleter.rdelete(ep['self'])
except Exception:
log.warning("Escalation policy %s no longer "
"has any on-call engineers or schedules but "
"is still attached to services in your "
"account. ", ep['id'])
user_deleter.rdelete(schedule.get('details', {}).get('self'))
else:
# Save updated schedule with user removed
user_deleter.rput(schedule.get('details', {}).get('self'), json=schedule.get('details'))
log.info("Finished schedules for user %s.", user_id)
#########
# Teams #
#########
log.info("Removing user %s from teams...", user_id)
for team in resources.get_teams():
if user_deleter.team_has_user(team['users']):
user_deleter.remove_user_from_team(team['id'])
log.info("Finished teams for user %s.", user_id)
##################
# Sayonara, User #
##################
# Show the impact of removing the user:
for resource in ('schedules', 'escalation_policies', 'teams'):
label = resource.capitalize().replace('_', ' ')
suffix = '/users/{id}' if resource == 'teams' else ''
log.info('%s affected: %d', label, sum([
user_deleter.api_call_counts.get(
'%s:%s/{id}%s' % (method, resource, suffix), 0
) for method in ('put', 'delete')
]))
if no_delete:
log.info('User %s was not deleted; "Do not delete user" flag selected.', user_email)
return 0
elif user_deleter.delete_user():
log.info('User %s has been successfully deleted!', user_email)
return 1
else:
log.info('User %s not removed; aborted, or API error.', user_email)
return 0
def setup_logging(is_log_verbose):
# Initialize logging:
logdir = os.path.join(os.getcwd(), 'logs')
if not os.path.isdir(os.path.join(os.getcwd(), './logs')):
os.mkdir(logdir)
logfile = os.path.join(logdir, '%s.log' % datetime.now().isoformat())
file_formatter = logging.Formatter(
fmt=u"[%(asctime)s] %(levelname)s: %(message)s",
datefmt=u"%Y-%m-%dT%H:%M:%S"
)
fileh = logging.FileHandler(logfile)
fileh.setFormatter(file_formatter)
log.addHandler(fileh)
log.setLevel(logging.INFO)
if is_log_verbose:
stderrh = logging.StreamHandler()
stderrh.setFormatter(logging.Formatter(u"%(levelname)s: %(message)s"))
log.addHandler(stderrh)
log.setLevel(logging.DEBUG)
def main(arguments):
resources = Resources(arguments.access_token, arguments.from_email)
email_list = []
with open(arguments.user_csv) as file:
for (i, row) in enumerate(csv.reader(file)):
email = row[0].strip()
# Skip blank emails
if not email:
continue
email_list.append(email)
if arguments.do_not_delete is True:
print("{} users to be removed from schedules, teams, and escalation policies. Users will not be deleted."
.format(len(email_list)))
else:
print("{} users to be deleted".format(len(email_list)))
# Initialize logging:
setup_logging(arguments.verbose)
# Do the deed:
count = 0
for email in email_list:
if arguments.prompt_del and arguments.do_not_delete:
if not input_yn("Proceed with removal of user (%s) from all associated resources?" % email):
continue
elif arguments.prompt_del and not input_yn("Proceed with deletion of user (%s)?" % email):
continue
count += delete_user(email, arguments, resources)
log.info("%d user(s) out of %d specified have been deleted." % (
count, len(email_list)
))
print("Script complete.\n")
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Delete a PagerDuty user')
parser.add_argument(
'--access-token', '-a',
help="PagerDuty REST API access token",
dest='access_token',
required=True
)
parser.add_argument(
'--users-emails-from-csv', '-u',
help="File specifying list of users to delete. The file should be a CSV " \
"with user(s) login email(s) in a single column.",
dest='user_csv', type=str,
required=True
)
parser.add_argument(
'--from-email', '-f',
help="Email address of the user requesting deletion",
dest='from_email'
)
parser.add_argument(
'--auto-resolve-incidents', '-r',
help="Automatically resolve incidents assigned to the user.",
dest='auto_resolve', action='store_true', default=False
)
parser.add_argument(
'--delete-yes-to-all', '-y',
help="When removing a user results in an empty object, i.e. an "
"escalation policy with no rules, the script will prompt you as to "
"whether you want to remove the empty object. Enabling this flag "
"skips this prompting for deletion of objects and deletes all "
"empty objects automatically.",
dest='prompt_del', action='store_false', default=True
)
parser.add_argument(
'--backup', '-b',
help="Make backup JSON files of all objects that are deleted or "
"updated, in a directory named 'backup' within the current working "
"directory.",
default=False, action='store_true'
)
parser.add_argument(
'--do-not-delete-users', '-n',
help="Do not delete user but perform all other actions",
dest='do_not_delete', action='store_true', default=False
)
parser.add_argument(
'--verbose', '-v',
help="Verbose command line output (show progress)",
default=False, action='store_true'
)
args = parser.parse_args()
main(args)