|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/CyberPanel/lib64/python3.10/site-packages/examples/ |
Upload File : |
#!/usr/bin/env python
"""Cloudflare API code - example"""
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']
zone_type = zone['type']
if 'email' in zone['owner']:
zone_owner = zone['owner']['email']
else:
zone_owner = '"' + zone['owner']['name'] + '"'
zone_plan = zone['plan']['name']
print('%s %-35s %-30s %-20s %s' % (zone_id, zone_name, zone_type, zone_owner, zone_plan))
try:
dns_records = cf.zones.dns_records.get(zone_id)
except CloudFlare.exceptions.CloudFlareAPIError as e:
sys.stderr.write('/zones/dns_records %d %s - api call failed\n' % (e, e))
continue
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']
if 'content' in dns_record:
r_value = dns_record['content']
else:
# should not happen
r_value = ''
if 'priority' in dns_record:
r_priority = dns_record['priority']
else:
r_priority = ''
r_ttl = dns_record['ttl']
if zone_type == 'secondary':
r_id = 'secondary'
else:
r_id = dns_record['id']
print('\t%s %60s %6d %-5s %4s %s' % (r_id, r_name, r_ttl, r_type, r_priority, r_value))
print('')
exit(0)
if __name__ == '__main__':
main()