forked from Nosmoht/ansible-module-powerdns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
powerdns_record.py
426 lines (364 loc) · 15.7 KB
/
powerdns_record.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
DOCUMENTATION = '''
---
module: powerdns_record
short_description: Manage PowerDNS records
description:
- Create, update or delete a PowerDNS records using API
- A record is unique identified by name and type
- Changing a records type is therefore not possible
options:
content:
description:
- Content of the record
- Could be an ip address or hostname
exclusive:
description:
- Whether to remove all other non-specified records from the recordset.
Applicable to A, AAAA, MX, SRV, and TXT records.
required: false
default: true
name:
description:
- Record name
- If name is not an FQDN, zone will be added at the end to create an FQDN
required: true
server:
description:
- Server name.
required: false
default: localhost
ttl:
description:
- Record TTL
required: false
default: 86400
type:
description:
- Record type
required: false
choices: ['A', 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT', 'LUA', 'NS']
default: None
set_ptr:
description:
- >
If set to true, the server will find the matching reverse zone and create
a PTR there. Existing PTR records are replaced. If no matching reverse
Zone, an error is thrown. Only valid in client bodies, only valid for A
and AAAA types.
required: false
choices: ['True', 'False']
default: False
zone:
description:
- Name of zone where to ensure the record
required: true
pdns_host:
description:
- Name or ip address of PowerDNS host
required: false
default: 127.0.0.1
pdns_port:
description:
- Port used by PowerDNS API
required: false
default: 8081
pdns_prot:
description:
- Protocol used by PowerDNS API
required: false
default: http
choices: ['http', 'https']
pdns_api_key:
description:
- API Key to authenticate through PowerDNS API
strict_ssl_checking:
description:
- Disables strict certificate checking
default: true
author: "Thomas Krahn (@nosmoht)"
'''
EXAMPLES = '''
- powerdns_record:
name: host01.internal.example.com
type: A
content: 192.168.1.234
state: present
zone: internal.example.com
pdns_host: powerdns.example.com
pdns_port: 8080
pdns_prot: http
pdns_api_key: topsecret
'''
try:
import requests
HAS_REQUESTS = True
except ImportError:
HAS_REQUESTS = False
class PowerDNSError(Exception):
def __init__(self, url, status_code, message):
self.url = url
self.status_code = status_code
self.message = message
super(PowerDNSError, self).__init__()
class PowerDNSClient:
def __init__(self, host, port, prot, api_key, verify):
self.url = '{prot}://{host}:{port}/api/v1'.format(prot=prot, host=host, port=port)
self.session = requests.Session()
self.session.headers.update({'X-API-Key': api_key})
self.session.verify = verify
def _handle_request(self, req):
if req.status_code in [200, 201, 204]:
if req.text:
try:
return req.json()
except Exception as e:
print(e) # same as yield
return dict()
elif req.status_code == 404:
error_message = 'Not found'
else:
error_message = self._get_request_error_message(data=req)
raise PowerDNSError(url=req.url,
status_code=req.status_code,
message=error_message)
def _get_request_error_message(self, data):
try:
request_json = data.json()
if 'error' in request_json:
request_error = request_json.get('error')
elif 'errors' in request_json:
request_error = request_json.get('errors')
else:
request_error = 'No error message found'
return request_error
except Exception:
pass
return data.text
def _get_search_url(self, server):
return '{url}/servers/{server}/search-data'.format(url=self.url,
server=server)
def _get_zones_url(self, server):
return '{url}/servers/{server}/zones'.format(url=self.url, server=server)
def _get_zone_url(self, server, name):
return '{url}/{name}'.format(url=self._get_zones_url(server), name=name)
@staticmethod
def _make_canonical(name):
if not name.endswith('.'):
name += '.'
return name
def get_zone(self, server, name):
req = self.session.get(url=self._get_zone_url(server, name))
if req.status_code == 422: # zone does not exist
return None
return self._handle_request(req)
def get_record(self, server, zone, name, rtype):
"""Search for a given record (name) in the specified zone."""
url = self._get_search_url(server)
params = {'q': name}
resp = self._handle_request(self.session.get(url=url, params=params))
# Canonicalize record name and zone
canonical_name = self._make_canonical(name)
canonical_zone = self._make_canonical(zone)
# Convert search result response to RRSet object
rrset = dict(records=[], comments=[])
for record in resp:
if record['object_type'] != 'record' or record['type'] != rtype:
continue
if record['name'] == canonical_name and record['zone'] == canonical_zone:
if 'name' not in rrset:
rrset['name'] = record['name']
if 'type' not in rrset:
rrset['type'] = record['type']
if 'ttl' not in rrset:
rrset['ttl'] = record['ttl']
rrentry = dict(content=record['content'],
disabled=record['disabled'])
rrset['records'].append(rrentry)
return rrset
def _get_request_data(self, changetype, server, zone, name, rtype, set_ptr=False, content=None, disabled=None, ttl=None):
record_content = list()
if content:
for record in content:
entry = dict(content=record, disabled=disabled)
if rtype in ['A', 'AAAA'] and set_ptr:
entry['set-ptr'] = True
record_content.append(entry)
record = dict(name=name, type=rtype, changetype=changetype, records=record_content, ttl=ttl)
rrsets = list()
rrsets.append(record)
data = dict(rrsets=rrsets)
return data
def create_record(self, server, zone, name, rtype, content, disabled, ttl, set_ptr):
url = self._get_zone_url(server=server, name=zone)
# Ensure record name is fully canonical
canonical_name = self._make_canonical(name)
data = self._get_request_data(
changetype='REPLACE',
server=server,
zone=zone,
name=canonical_name,
rtype=rtype,
content=content,
set_ptr=set_ptr,
disabled=disabled,
ttl=ttl
)
req = self.session.patch(url=url, json=data)
return self._handle_request(req)
def delete_record(self, server, zone, name, rtype):
canonical_name = self._make_canonical(name)
url = self._get_zone_url(server=server, name=zone)
data = self._get_request_data(changetype='DELETE', server=server,
zone=zone, name=canonical_name, rtype=rtype)
req = self.session.patch(url=url, json=data)
return self._handle_request(req)
def serial(content):
""" Returns the serial of the given SOA record. """
return content.split(' ')[2]
def ignore_serial(content):
""" Returns the SOA record with the serial removed. """
parts = content.split(' ')
return ' '.join(parts[:2] + parts[3:])
def matches_existing_content(rtype, content, existing_content):
""" Returns True if the content of the given record matches the existing
content (i.e. if no change is necessary).
"""
# Ignore the serial in SOA records if it is 0, which signifies a serial
# that is automatically incremented (as often happens in PowerDNS setups).
if rtype == 'SOA' and serial(content) == '0':
content = ignore_serial(content)
existing_content = [ignore_serial(e) for e in existing_content]
return content in existing_content
def ensure(module, pdns_client):
content = module.params['content']
disabled = module.params['disabled']
exclusive = module.params['exclusive']
name = module.params['name']
rtype = module.params['type']
set_ptr = module.params['set_ptr']
ttl = module.params['ttl']
zone_name = module.params['zone']
server = module.params['server']
state = module.params['state']
# Remove trailing periods on records
# Will be added later during CRUD operations.
if name.endswith('.'):
name = name.rstrip('.')
if zone_name.endswith('.'):
zone_name = zone_name.rstrip('.')
if zone_name not in name:
name = '{name}.{zone}'.format(name=name, zone=zone_name)
# Try to find the record by name and type
record = pdns_client.get_record(name=name, server=server, rtype=rtype, zone=zone_name)
existing_content = [c.get('content') for c in record["records"]]
# Sanitize user-provided input for certain record types
if content:
if rtype == 'AAAA':
# Lowercase IPv6 addresses to match case returned by the API.
# Necessary for later comparisons.
content = content.lower()
# Ensure TXT records are double quoted
if rtype == 'TXT' and not (content.startswith('"') and content.endswith('"')):
content = '"{}"'.format(content.strip('"'))
if state == 'present':
record_content = []
# Create record if it does not exist
if not existing_content:
record_content.append(content)
try:
if not module.check_mode:
pdns_client.create_record(server=server, zone=zone_name, name=name, rtype=rtype, content=record_content,
set_ptr=set_ptr, ttl=ttl, disabled=disabled)
return True, pdns_client.get_record(server=server, rtype=rtype, zone=zone_name, name=name)
except PowerDNSError as e:
module.fail_json(
msg='Could not create record {name}: HTTP {code}: {err}'.format(name=name, code=e.status_code,
err=e.message))
# Check if changeable parameters match, else update record.
if not matches_existing_content(rtype, content, existing_content) or record.get('ttl', None) != ttl or (exclusive and len(existing_content) > 1):
# Add provided content to record content payload
record_content.append(content)
# Add existing content to payload if not exclusive
if not exclusive:
record_content = record_content + existing_content
try:
if not module.check_mode:
pdns_client.create_record(server=server, zone=zone_name, name=name, rtype=rtype, content=record_content,
set_ptr=set_ptr, ttl=ttl, disabled=disabled)
return True, pdns_client.get_record(server=server, rtype=rtype, zone=zone_name, name=name)
except PowerDNSError as e:
module.fail_json(
msg='Could not update record {name}: HTTP {code}: {err}'.format(name=name, code=e.status_code,
err=e.message))
elif state == 'absent':
if existing_content and exclusive:
# Delete entire record
try:
if not module.check_mode:
pdns_client.delete_record(server=server, zone=zone_name, name=name, rtype=rtype)
return True, None
except PowerDNSError as e:
module.fail_json(
msg='Could not delete record {name}: HTTP {code}: {err}'.format(name=name, code=e.status_code,
err=e.message))
elif existing_content and not exclusive and content in existing_content:
# Remove specified record from the recordset. Update record.
existing_content.remove(content)
record_content = existing_content
try:
if not module.check_mode:
pdns_client.create_record(server=server, zone=zone_name, name=name, rtype=rtype, content=record_content,
set_ptr=set_ptr, ttl=ttl, disabled=disabled)
return True, pdns_client.get_record(server=server, rtype=rtype, zone=zone_name, name=name)
except PowerDNSError as e:
module.fail_json(
msg='Could not delete record {name}: HTTP {code}: {err}'.format(name=name, code=e.status_code,
err=e.message))
try:
if not module.check_mode:
pdns_client.delete_record(server=server, zone=zone_name, name=name, rtype=rtype)
return True, None
except PowerDNSError as e:
module.fail_json(
msg='Could not delete record {name}: HTTP {code}: {err}'.format(name=name, code=e.status_code,
err=e.message))
return False, record
def main():
module = AnsibleModule(
argument_spec=dict(
content=dict(type='str', required=False),
exclusive=dict(type='bool', default=True),
disabled=dict(type='bool', default=False),
name=dict(type='str', required=True),
server=dict(type='str', default='localhost'),
set_ptr=dict(type='bool', default=False),
state=dict(type='str', default='present', choices=['present', 'absent']),
ttl=dict(type='int', default=86400),
type=dict(type='str', required=False, choices=['A', 'AAAA', 'CNAME', 'MX', 'PTR', 'SOA', 'SRV', 'TXT', 'LUA', 'NS']),
zone=dict(type='str', required=True),
pdns_host=dict(type='str', default='127.0.0.1'),
pdns_port=dict(type='int', default=8081),
pdns_prot=dict(type='str', default='http', choices=['http', 'https']),
pdns_api_key=dict(type='str', required=False),
strict_ssl_checking=dict(type='bool', default=True),
),
supports_check_mode=True,
)
if not HAS_REQUESTS:
module.fail_json(msg="requests must be installed to use this module.")
pdns_client = PowerDNSClient(host=module.params['pdns_host'],
port=module.params['pdns_port'],
prot=module.params['pdns_prot'],
api_key=module.params['pdns_api_key'],
verify=module.params['strict_ssl_checking'])
try:
changed, record = ensure(module, pdns_client)
module.exit_json(changed=changed, record=record)
except Exception as e:
module.fail_json(msg='Error: {0}'.format(str(e)))
# import module snippets
from ansible.module_utils.basic import *
if __name__ == '__main__':
main()