This repository was archived by the owner on Nov 22, 2024. It is now read-only.
forked from cloudflare-api/python-cloudflare-v4
-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathexample_zones.py
More file actions
executable file
·66 lines (51 loc) · 1.87 KB
/
example_zones.py
File metadata and controls
executable file
·66 lines (51 loc) · 1.87 KB
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
#!/usr/bin/env python
"""Cloudflare API code - example"""
from __future__ import print_function
import os
import sys
import re
sys.path.insert(0, os.path.abspath('..'))
import CloudFlare
def main():
"""Cloudflare API code - example"""
# Grab the first argument, if there is one
try:
zone_name = sys.argv[1]
params = {'name':zone_name, 'per_page':1}
except IndexError:
params = {'per_page':50}
cf = CloudFlare.CloudFlare()
# grab the zone identifier
try:
zones = cf.zones.get(params=params)
except CloudFlare.exceptions.CloudFlareAPIError as e:
exit('/zones %d %s - api call failed' % (e, e))
except Exception as e:
exit('/zones.get - %s - api call failed' % (e))
# there should only be one zone
for zone in sorted(zones, key=lambda v: v['name']):
zone_name = zone['name']
zone_id = zone['id']
if 'email' in zone['owner']:
zone_owner = zone['owner']['email']
else:
zone_owner = '"' + zone['owner']['name'] + '"'
zone_plan = zone['plan']['name']
try:
dns_records = cf.zones.dns_records.get(zone_id)
except CloudFlare.exceptions.CloudFlareAPIError as e:
exit('/zones/dns_records %d %s - api call failed' % (e, e))
print(zone_id, zone_name, zone_owner, zone_plan)
prog = re.compile('\.*'+zone_name+'$')
dns_records = sorted(dns_records, key=lambda v: prog.sub('', v['name']) + '_' + v['type'])
for dns_record in dns_records:
r_name = dns_record['name']
r_type = dns_record['type']
r_value = dns_record['content']
r_ttl = dns_record['ttl']
r_id = dns_record['id']
print('\t%s %60s %6d %-5s %s' % (r_id, r_name, r_ttl, r_type, r_value))
print('')
exit(0)
if __name__ == '__main__':
main()