-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpacket_sshkey.py
376 lines (317 loc) · 11.1 KB
/
packet_sshkey.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
#!/usr/bin/python
#
# An ansible module for manipulating ssh keys using
# [Packet's API](https://www.packet.net/resources/docs/)
#
# Copyright (c) 2016 Niels Grewe
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
# At your discretion, you may also use this module under the terms of the MIT
# license.
DOCUMENTATION = '''
---
module: packet_sshkey
short_description: Create/delete a SSH key in Packet
description:
- Create or delete a SSH key for the current user in Packet
notes:
- check_mode is supported.
version_added: "2.2"
author: "Niels Grewe, @ngrewe"
requirements:
- Requires the packet-python library
- If sshpubkeys is installed, it will be used to validate the keys prior
to sending them to the other end.
options:
label:
description:
- The label of the key to manipulate
required: true
default: null
aliases: [ 'name' ]
ssh_pub_key:
description:
- The public SSH key you want to add/remove for the user
required: true
default: null
auth_token:
description:
- Your authentication token for API access
required: true
default: null
aliases: [ 'api_token' ]
state:
description:
- Determines whether the key should be present or removed
default: 'present'
choices: [ 'present', 'absent' ]
'''
EXAMPLES = '''
- packet_sshkey:
label: my_key
ssh_pub_key: 'ssh-rsa DEADBEEF...'
state: present
auth_token: XYZ
'''
RETURN = '''
id:
description: The UUID identifying the ssh key
returned: when the key exists
type: string
sample: "e22ee691-9c3e-4b71-a45c-07a3c3190f96"
label:
description: The label assigned to the key
returned: when the key exists
type: string
sample: "foo"
created_at:
description: Timestamp when the key was created
returned: when the key exists
type: string
sample: "2016-06-01T12:00:00Z"
updated_at:
description: Timestamp when the key was last changed
returned: when the key exists
type: string
sample: "2016-06-01T12:00:00Z"
fingerprint:
description: The fingerprint of the key
returned: when the key exists
type: string
sample: "74:f6:47:91:78:a2:c7:1e:ef:73:c9:b3:17:ab:ec:c9"
'''
# Begin common code applying to all modules
from ansible.module_utils.basic import AnsibleModule
from operator import attrgetter
try:
import packet
HAS_PACKET = True
except ImportError:
HAS_PACKET = False
class PacketProperties(object):
if HAS_PACKET:
mapping = {
packet.Project.Project: (
'id',
'name',
'created_at',
'updated_at'),
packet.SSHKey.SSHKey: (
'id',
'label',
'created_at',
'updated_at',
'key',
'fingerprint'),
packet.Device.Device: (
'id',
'hostname',
'user_data',
'locked',
'tags',
'created_at',
'updated_at',
'state',
'ip_addresses',
'operating_system',
'plan'),
packet.OperatingSystem.OperatingSystem: (
'slug',
'name',
'distro',
'version')}
else:
mapping = dict()
@classmethod
def to_ansible(self, obj, inner=False):
"""Convert an packet API object into a dictionary presentation"""
if (inner and not isinstance(obj, packet.baseapi.BaseAPI) and
not isinstance(obj, packet.OperatingSystem.OperatingSystem)):
return obj
try:
properties = self.mapping[type(obj)]
except KeyError:
properties = dict()
return dict((name, self.to_ansible(getattr(obj, name), inner=True))
for name in dir(obj)
if name in properties)
class PacketAction(object):
def apply(self):
"""Apply the action to the API endpoint, returning the result
Subclasses need to override this method.
"""
raise NotImplementedError
class PacketByIdLookup(AnsibleModule):
"""Allow API entities to be loaded by ID
This mixin allows classes to declare that they support loading and
manipulating objects by ID. The id argument is automatically added, but the
subclass still needs to implement entity_by_id and set the required_one_of
kwarg as needed.
"""
def __init__(self, *args, **kwargs):
spec = kwargs.get('argument_spec')
if spec is None:
spec = dict()
kwargs['argument_spec'] = spec
if 'id' not in spec:
spec.update(id=dict())
super(PacketByIdLookup, self).__init__(*args, **kwargs)
def entity_by_id(self):
"""Return the entity mentiond in id using the packet API
Subclasses must override this method.
"""
raise NotImplementedError
class PacketModule(AnsibleModule):
def __init__(self, *args, **kwargs):
spec = kwargs.get('argument_spec')
if spec is None:
spec = dict()
kwargs['argument_spec'] = spec
spec.update(auth_token=dict(required=True, aliases=['api_token'],
no_log=True))
super(PacketModule, self).__init__(*args, **kwargs)
self._manager = None
@property
def manager(self):
"""The object responsible for all comms with Packet"""
if self._manager is None:
# Note: Lazy initialisation of the manager object isn't thread-safe
# but the same module object shouldn't be used in multiple threads
# simultaneously.
self._manager = packet.Manager(
auth_token=self.params['auth_token']
)
return self._manager
@staticmethod
def is_packet_supported():
return HAS_PACKET
def list_entities(self):
"""Return the list of entities using the packet API
Subclasses must override this method.
"""
raise NotImplementedError
def matched_entities(self, entities):
"""Extracts the entity to work on from the list of entities returned
Subclasses must override this method.
"""
raise NotImplementedError
def action_for_entity(self, entity):
"""Returns an action object used for state synchronisation
Used to sync state with packet. Returns None if the state is already
synchronised, otherwise the returned instances should be of
:class:`PacketAction`.
Subclasses must override this method.
"""
raise NotImplementedError
def execute_module(self):
"""Execute the module
This method relies on the abstract methods in the class to implement
the default update process:
1. List the entities
2. Find the one matching the module invocation
3. Generate required state changes
4. Apply
"""
if not self.is_packet_supported():
self.fail_json(msg="packet-python not installed")
matched = None
if (isinstance(self, PacketByIdLookup) and 'id' in self.params
and self.params['id']):
try:
matched = self.entity_by_id()
except packet.baseapi.Error as e:
# we need to convert a 404
if (attrgetter('cause.response.status_code')(e) == 404):
matched = None
else:
self.fail_json(msg=str(e))
else:
try:
entities = self.list_entities()
except packet.baseapi.Error as e:
self.fail_json(msg=str(e))
matches = self.matched_entities(entities)
if (len(matches) > 1):
self.fail_json(msg="Named entity not unique", choices=matches)
elif not matches:
matched = None
else:
matched = matches[0]
result = PacketProperties.to_ansible(matched)
action = self.action_for_entity(matched)
if self.check_mode or not action:
self.exit_json(changed=(action is not None), **result)
try:
result = PacketProperties.to_ansible(action.apply())
except packet.baseapi.Error as e:
self.fail_json(msg=str(e))
self.exit_json(changed=True, **result)
# End common code applying to all modules
class Creation(PacketAction):
def __init__(self, manager, label, key):
self._manager = manager
self._label = label
self._key = key
super(Creation, self).__init__()
def apply(self):
return self._manager.create_ssh_key(self._label, self._key)
class Update(PacketAction):
def __init__(self, key, label):
self._key = key
self._label = label
super(Update, self).__init__()
def apply(self):
self._key.label = self._label
self._key.update()
return self._key
class Deletion(PacketAction):
def __init__(self, key):
self._key = key
super(Deletion, self).__init__()
def apply(self):
self._key.delete()
class PacketSSHKeyModule(PacketModule):
def __init__(self, *args, **kwargs):
spec = kwargs.get('argument_spec')
if spec is None:
spec = dict()
spec.update(label=dict(required=True, aliases=['name']),
ssh_pub_key=dict(required=True),
state=dict(default='present',
choices=['present', 'absent']),
)
kwargs['supports_check_mode'] = True
kwargs['argument_spec'] = spec
super(PacketSSHKeyModule, self).__init__(*args, **kwargs)
def list_entities(self):
return self.manager.list_ssh_keys()
def matched_entities(self, entities):
return [x for x in entities if x.key == self.params['ssh_pub_key']]
def action_for_entity(self, entity):
if (self.params['state'] == 'present' and not entity):
return Creation(self.manager, self.params['label'],
self.params['ssh_pub_key'])
elif (self.params['state'] == 'present'
and entity.label != self.params['label']):
return Update(entity, self.params['label'])
elif (self.params['state'] == 'absent' and entity):
return Deletion(entity)
return None
def main():
PacketSSHKeyModule().execute_module()
if __name__ == '__main__':
main()