|
| 1 | +#!/usr/bin/env python |
| 2 | +# |
| 3 | +# Copyright (c) 2016, PagerDuty, Inc. <[email protected]> |
| 4 | +# All rights reserved. |
| 5 | +# |
| 6 | +# Redistribution and use in source and binary forms, with or without |
| 7 | +# modification, are permitted provided that the following conditions are met: |
| 8 | +# * Redistributions of source code must retain the above copyright |
| 9 | +# notice, this list of conditions and the following disclaimer. |
| 10 | +# * Redistributions in binary form must reproduce the above copyright |
| 11 | +# notice, this list of conditions and the following disclaimer in the |
| 12 | +# documentation and/or other materials provided with the distribution. |
| 13 | +# * Neither the name of PagerDuty Inc nor the |
| 14 | +# names of its contributors may be used to endorse or promote products |
| 15 | +# derived from this software without specific prior written permission. |
| 16 | +# |
| 17 | +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 18 | +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 19 | +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 20 | +# ARE DISCLAIMED. IN NO EVENT SHALL PAGERDUTY INC BE LIABLE FOR ANY |
| 21 | +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 22 | +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 23 | +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 24 | +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 26 | +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | + |
| 28 | +import json |
| 29 | +import csv |
| 30 | + |
| 31 | +import requests |
| 32 | + |
| 33 | + |
| 34 | +# Update to match your API key |
| 35 | +API_KEY = 'XXXXXXXX' |
| 36 | + |
| 37 | +# Update to match your PagerDuty account's email address |
| 38 | + |
| 39 | + |
| 40 | +CSV_FILE = 'users.csv' |
| 41 | +ENDPOINT = 'https://api.pagerduty.com/users' |
| 42 | + |
| 43 | + |
| 44 | +class User(): |
| 45 | + def __init__(self, data): |
| 46 | + self.name = data[0] |
| 47 | + self.email = data[1] |
| 48 | + self.role = data[2] |
| 49 | + |
| 50 | + |
| 51 | +def create_users(): |
| 52 | + users = [] |
| 53 | + |
| 54 | + with open(CSV_FILE, newline='') as csvfile: |
| 55 | + csv_data = csv.reader(csvfile, delimiter=',') |
| 56 | + next(csv_data) # skips the first row, which should be headers |
| 57 | + for row in csv_data: |
| 58 | + users.append(User(row)) |
| 59 | + |
| 60 | + pd_session = requests.Session() |
| 61 | + pd_session.headers.update({ |
| 62 | + 'Authorization': 'Token token={}'.format(API_KEY), |
| 63 | + 'Content-Type': 'application/json', |
| 64 | + 'From': PD_EMAIL |
| 65 | + }) |
| 66 | + |
| 67 | + print("Starting upload") |
| 68 | + for user in users: |
| 69 | + payload = json.dumps({ |
| 70 | + 'user': { |
| 71 | + 'type': 'user', |
| 72 | + 'name': user.name, |
| 73 | + 'email': user.email, |
| 74 | + 'role': user.role |
| 75 | + } |
| 76 | + }) |
| 77 | + print(payload) |
| 78 | + response = pd_session.post(ENDPOINT, data=payload) |
| 79 | + if response.status_code != 201: |
| 80 | + raise Warning(("Failed to create user {}, process aborted. " |
| 81 | + "Any previous users successfully created. Server responded with" |
| 82 | + " status code {}." |
| 83 | + .format(user.name, response.status_code))) |
| 84 | + print("Upload complete") |
| 85 | + |
| 86 | + |
| 87 | +if __name__ == '__main__': |
| 88 | + create_users() |
0 commit comments