This repository has been archived by the owner on Apr 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
k5_inter_project_link.py
296 lines (214 loc) · 9.11 KB
/
k5_inter_project_link.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
#!/usr/bin/python
ANSIBLE_METADATA = {'status': ['preview'],
'supported_by': 'community',
'version': '1.0'}
DOCUMENTATION = '''
---
module: k5_inter_project_link
short_description: Create inter-project link on K5 in particular AZ
version_added: "1.0"
description:
- K5 call to inter-project network link in an AZ - the inter-project link is custom to K5 therefore there is no Openstack module.
options:
router_name:
description:
- Name of the router network.
required: true
default: None
state:
description:
- State of the network. Can be 'present' or 'absent'.
required: true
default: None
k5_port:
description:
- dict of k5_port module output.
required: true
default: None
k5_auth:
description:
- dict of k5_auth module output.
required: true
default: None
requirements:
- "python >= 2.6"
'''
EXAMPLES = '''
# Create an inter-project link in an AZ
- k5_create_inter_project_link:
state: present
k5_port: "{{ k5_port_reg.k5_port_facts }}"
router_name: "nx-test-net-1a"
k5_auth: "{{ k5_auth_reg.k5_auth_facts }}"
'''
RETURN = '''
-
'''
import requests
import os
import json
from ansible.module_utils.basic import *
############## Common debug ###############
k5_debug = False
k5_debug_out = []
def k5_debug_get():
"""Return our debug list"""
return k5_debug_out
def k5_debug_clear():
"""Clear our debug list"""
k5_debug_out = []
def k5_debug_add(s):
"""Add string to debug list if env K5_DEBUG is defined"""
if k5_debug:
k5_debug_out.append(s)
############## inter-project link functions #############
def k5_get_endpoint(e,name):
"""Pull particular endpoint name from dict"""
return e['endpoints'][name]
def k5_get_router_id_from_name(module, k5_facts):
"""Get an id from a router_name"""
endpoint = k5_facts['endpoints']['networking']
auth_token = k5_facts['auth_token']
router_name = module.params['router_name']
session = requests.Session()
headers = {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': auth_token }
url = endpoint + '/v2.0/routers'
k5_debug_add('endpoint: {0}'.format(endpoint))
k5_debug_add('REQ: {0}'.format(url))
k5_debug_add('headers: {0}'.format(headers))
try:
response = session.request('GET', url, headers=headers)
except requests.exceptions.RequestException as e:
module.fail_json(msg=e)
# we failed to get data
if response.status_code not in (200,):
module.fail_json(msg="RESP: HTTP Code:" + str(response.status_code) + " " + str(response.content), debug=k5_debug_out)
#k5_debug_add("RESP: " + str(response.json()))
for n in response.json()['routers']:
#k5_debug_add("Found router name: " + str(n['name']))
if str(n['name']) == router_name:
#k5_debug_add("Found it!")
return n['id']
return ''
def k5_create_inter_project_link(module):
"""Create an inter-project link in an AZ on K5"""
global k5_debug
k5_debug_clear()
if 'K5_DEBUG' in os.environ:
k5_debug = True
if 'auth_spec' in module.params['k5_auth']:
k5_facts = module.params['k5_auth']
else:
module.fail_json(msg="k5_auth_facts not found, have you run k5_auth?")
if 'id' in module.params['k5_port']:
k5_port = module.params['k5_port']
else:
module.fail_json(msg="k5_port_id not found, have you run k5_create_port?")
endpoint = k5_facts['endpoints']['networking-ex']
auth_token = k5_facts['auth_token']
port_id = k5_port['id']
router_name = module.params['router_name']
# we need the router_id not router_name, so grab it
router_id = k5_get_router_id_from_name(module, k5_facts)
if router_id == '':
if k5_debug:
module.exit_json(changed=False, msg="Router " + router_name + " not found", debug=k5_debug_out)
else:
module.exit_json(changed=False, msg="Router " + router_name + " not found")
if router_id == k5_port['device_id']:
module.exit_json(changed=False, msg="Port already connected to the correct router")
elif k5_port['device_id'] != '':
if k5_debug:
module.fail_json(changed=False, msg="Port already attached to " + k5_port['device_id'], debug=k5_debug_out)
else:
module.fail_json(changed=False, msg="Port already attached to " + k5_port['device_id'])
# actually the project_id, but stated as tenant_id in the API
tenant_id = k5_facts['auth_spec']['os_project_id']
k5_debug_add('router_name: {0}'.format(router_name))
k5_debug_add('port_id: {0}'.format(port_id))
session = requests.Session()
headers = {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': auth_token }
url = endpoint + '/v2.0/routers/' + router_id + '/add_cross_project_router_interface'
query_json = { "port_id": port_id }
k5_debug_add('REQ: {0}'.format(url))
k5_debug_add('headers: {0}'.format(headers))
k5_debug_add('json: {0}'.format(query_json))
try:
response = session.request('PUT', url, headers=headers, json=query_json)
except requests.exceptions.RequestException as e:
module.fail_json(msg=e)
# we failed to make a change
if response.status_code not in (200,):
module.fail_json(msg="RESP: HTTP Code:" + str(response.status_code) + " " + str(response.content), debug=k5_debug_out)
if k5_debug:
module.exit_json(changed=True, msg="Inter-porject Link Creation Successful", debug=k5_debug_out )
module.exit_json(changed=True, msg="Inter-porject Link Creation Successful")
def k5_delete_inter_project_link(module):
"""Delete an inter-project link in an AZ on K5"""
global k5_debug
k5_debug_clear()
if 'K5_DEBUG' in os.environ:
k5_debug = True
if 'auth_spec' in module.params['k5_auth']:
k5_facts = module.params['k5_auth']
else:
module.fail_json(msg="k5_auth_facts not found, have you run k5_auth?")
if 'id' in module.params['k5_port']:
k5_port = module.params['k5_port']
port_id = k5_port['id']
elif 'id' in module.params:
port_id = module.params['port_id']
else:
module.fail_json(msg="port_id or k5_port not supplied")
endpoint = k5_facts['endpoints']['networking-ex']
auth_token = k5_facts['auth_token']
router_name = module.params['router_name']
# we need the router_id not router_name, so grab it
router_id = k5_get_router_id_from_name(module, k5_facts)
if router_id == '':
if k5_debug:
module.exit_json(changed=False, msg="Router " + router_name + " not found", debug=k5_debug_out)
else:
module.exit_json(changed=False, msg="Router " + router_name + " not found")
# actually the project_id, but stated as tenant_id in the API
tenant_id = k5_facts['auth_spec']['os_project_id']
k5_debug_add('router_name: {0}'.format(router_name))
k5_debug_add('port_id: {0}'.format(port_id))
session = requests.Session()
headers = {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': auth_token }
url = endpoint + '/v2.0/routers/' + router_id + '/remove_cross_project_router_interface'
query_json = { "port_id": port_id }
k5_debug_add('REQ: {0}'.format(url))
k5_debug_add('headers: {0}'.format(headers))
k5_debug_add('json: {0}'.format(query_json))
try:
response = session.request('PUT', url, headers=headers, json=query_json)
except requests.exceptions.RequestException as e:
module.fail_json(msg=e)
# we failed to make a change
if response.status_code not in (200,):
if "does not have an interface with id" in response.content:
if k5_debug:
module.exit_json(changed=False, msg="Inter-project Link did not exist", debug=k5_debug_out)
module.exit_json(changed=False, msg="Inter-project Link did not exist")
module.fail_json(msg="RESP: HTTP Code:" + str(response.status_code) + " " + str(response.content), debug=k5_debug_out)
if k5_debug:
module.exit_json(changed=True, msg="Inter-porject Link Deleted Successful", debug=k5_debug_out )
module.exit_json(changed=True, msg="Inter-porject Link Deleted Successful" )
######################################################################################
def main():
module = AnsibleModule( argument_spec=dict(
router_name = dict(required=True, default=None, type='str'),
state = dict(required=True, type='str'), # should be a choice
k5_port = dict(required=True, default=None, type='dict'),
k5_auth = dict(required=True, default=None, type='dict')
) )
if module.params['state'] == 'present':
k5_create_inter_project_link(module)
elif module.params['state'] == 'absent':
k5_delete_inter_project_link(module)
else:
module.fail_json(msg="Unknown state")
######################################################################################
if __name__ == '__main__':
main()