forked from caphrim007/f5-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiworkflow_license_pool_member.py
376 lines (330 loc) · 11.8 KB
/
iworkflow_license_pool_member.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
# -*- coding: utf-8 -*-
#
# Copyright 2017 F5 Networks Inc.
#
# 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/>.
ANSIBLE_METADATA = {
'status': ['preview'],
'supported_by': 'community',
'metadata_version': '1.0'
}
DOCUMENTATION = '''
module: iworkflow_license_pool_member
short_description: Manages members in a license pool.
description:
- Manages members in a license pool. By adding and removing members from
a pool, you will implicitly be licensing and un-licensing them.
version_added: 2.4
options:
member:
description:
- Name of the managed device to add to the license pool.
required: True
pool:
description:
- The license pool that you want to add the member to.
state:
description:
- Whether the member should exist in the pool (and therefore be licensed)
or if it should not (and therefore be unlicensed).
default: present
choices:
- present
- absent
notes:
- Requires the f5-sdk Python package on the host. This is as easy as pip
install f5-sdk.
extends_documentation_fragment: f5
requirements:
- f5-sdk >= 2.3.0
- iWorkflow >= 2.1.0
author:
- Tim Rupp (@caphrim007)
'''
EXAMPLES = '''
'''
RETURN = '''
'''
import time
from ansible.module_utils.f5_utils import (
AnsibleF5Client,
AnsibleF5Parameters,
defaultdict,
F5ModuleError,
HAS_F5SDK,
iteritems,
defaultdict
)
class Parameters(AnsibleF5Parameters):
returnables = []
api_attributes = []
def __init__(self, params=None):
self._values = defaultdict(lambda: None)
if params:
self.update(params=params)
def update(self, params=None):
if params:
for k, v in iteritems(params):
if self.api_map is not None and k in self.api_map:
map_key = self.api_map[k]
else:
map_key = k
# Handle weird API parameters like `dns.proxy.__iter__` by
# using a map provided by the module developer
class_attr = getattr(type(self), map_key, None)
if isinstance(class_attr, property):
# There is a mapped value for the api_map key
if class_attr.fset is None:
# If the mapped value does not have an associated setter
self._values[map_key] = v
else:
# The mapped value has a setter
setattr(self, map_key, v)
else:
# If the mapped value is not a @property
self._values[map_key] = v
def to_return(self):
result = {}
for returnable in self.returnables:
result[returnable] = getattr(self, returnable)
result = self._filter_params(result)
return result
def api_params(self):
result = {}
for api_attribute in self.api_attributes:
if self.api_map is not None and api_attribute in self.api_map:
result[api_attribute] = getattr(self, self.api_map[api_attribute])
else:
result[api_attribute] = getattr(self, api_attribute)
result = self._filter_params(result)
return result
@property
def devices(self):
if isinstance(self._values['devices'], basestring):
collection = self._get_device_collection()
result = self._get_device_selflinks([str(self._values['devices'])], collection)
return result
elif all('deviceReference' in x for x in self._values['devices']):
# Case for the REST API
result = []
for item in self._values['devices']:
member = defaultdict(lambda: None)
member['deviceReference'] = str(item['deviceReference']['link'])
# This can happen when you delete a device without deleting its associated
# license from iWorkflow. iWorkflow doesnt clean anythign up. le sigh...
if 'hostname' in item['deviceReference']:
member['hostname'] = str(item['deviceReference']['hostname'])
if 'address' in item['deviceReference']:
member['address'] = str(item['deviceReference']['address'])
if 'managementAddress' in item['deviceReference']:
member['managementAddress'] = str(item['deviceReference']['managementAddress'])
if 'selfLink' in item['deviceReference']:
member['selfLink'] = str(item['selfLink'])
result.append(member)
return result
else:
collection = self._get_device_collection()
result = self._get_device_selflinks(self._values['devices'], collection)
return result
def _get_device_selflinks(self, devices, collection):
result = []
resource = None
for device in collection:
if str(device.product) != "BIG-IP":
continue
# The supplied device can be in several formats.
if str(device.hostname) in devices:
resource = device
break
elif str(device.address) in devices:
resource = device
break
elif str(device.managementAddress) in devices:
resource = device
break
if not resource:
raise F5ModuleError(
"Device {0} was not found".format(devices)
)
result.append(resource.selfLink)
return result
def _get_device_collection(self):
dg = self.client.api.shared.resolver.device_groups
return dg.cm_cloud_managed_devices.devices_s.get_collection()
class ModuleManager(object):
def __init__(self, client):
self.client = client
self.have = None
self.want = Parameters()
self.want.client = self.client
self.want.update(self.client.module.params)
self.changes = Parameters()
def _load_pool_by_name(self):
collection = self.client.api.cm.shared.licensing.pools_s.get_collection(
requests_params=dict(
params="$filter=name+eq+'{0}'".format(self.want.pool)
)
)
if len(collection) == 1:
return collection[0]
elif len(collection) == 0:
raise F5ModuleError(
"The specified pool was not found"
)
else:
raise F5ModuleError(
"Multiple pools with the provided name were found!"
)
def _wait_for_pool_member_state_to_license(self, member):
error_values = ['FAILED']
# Wait no more than half an hour
for x in range(1, 180):
member.refresh()
if member.state == 'LICENSED':
break
elif member.state in error_values:
raise F5ModuleError(member.errorText)
time.sleep(10)
def exec_module(self):
changed = False
result = dict()
state = self.want.state
try:
if state == "present":
changed = self.present()
elif state == "absent":
changed = self.absent()
except IOError as e:
raise F5ModuleError(str(e))
changes = self.changes.to_return()
result.update(**changes)
result.update(dict(changed=changed))
return result
def exists(self):
if not self.have.devices:
return False
have_members = set([x['deviceReference'] for x in self.have.devices])
want_members = set(self.want.devices)
if want_members.issubset(have_members):
return True
return False
def present(self):
self.have = self.read_current_from_device()
if self.exists():
return False
else:
return self.create()
def create(self):
if self.client.check_mode:
return True
self.create_on_device()
return True
def create_on_device(self):
device_refs = self.to_add()
pool = self._load_pool_by_name()
if not pool:
raise F5ModuleError(
"Pool disappeared during member licensing."
)
for device in device_refs:
member = pool.members_s.member.create(
deviceReference=dict(
link=device
)
)
self._wait_for_pool_member_state_to_license(member)
return True
def read_current_from_device(self):
resource = self._load_pool_by_name()
collection = resource.members_s.get_collection(
requests_params=dict(
params='$expand=deviceReference'
)
)
devices = [x.attrs for x in collection]
result = Parameters()
result.client = self.client
result.update(dict(
pool=self.want.pool,
devices=devices
))
return result
def absent(self):
if self.exists():
return self.remove()
return False
def remove(self):
if self.client.check_mode:
return True
self.remove_from_device()
if self.exists():
raise F5ModuleError("Failed to remove the pool member")
return True
def remove_from_device(self):
references = self.to_remove()
collection = self._load_pool_by_name()
for member in collection.members_s.get_collection():
if member.selfLink in references:
member.delete()
return True
def to_add(self):
want = set(self.want.devices)
have = set([x['deviceReference'] for x in self.have.devices])
return set(want - have)
def to_remove(self):
want = set([x['selfLink'] for x in self.want.devices])
have = set([x['deviceReference'] for x in self.want.member])
references = set(have - want)
# The code that deletes things doesn't know anything about devices,
# so you need to supply the member selfLink when doing comparisons
# for deletion
return [x['selfLink'] for x in self.want.devices
if x['deviceReference'] in references]
class ArgumentSpec(object):
def __init__(self):
self.supports_check_mode = True
self.argument_spec = dict(
pool=dict(
required=True
),
devices=dict(
required=True,
aliases=['device']
),
state=dict(
default='present',
choices=['absent', 'present']
)
)
self.f5_product_name = 'iworkflow'
def main():
if not HAS_F5SDK:
raise F5ModuleError("The python f5-sdk module is required")
spec = ArgumentSpec()
client = AnsibleF5Client(
argument_spec=spec.argument_spec,
supports_check_mode=spec.supports_check_mode,
f5_product_name=spec.f5_product_name
)
try:
mm = ModuleManager(client)
results = mm.exec_module()
client.module.exit_json(**results)
except F5ModuleError as e:
client.module.fail_json(msg=str(e))
if __name__ == '__main__':
main()