mirror of
https://github.com/stryan/gandi-live-dns.git
synced 2024-11-22 21:35:45 -05:00
unneeded file and changes i forgot the purpose of
This commit is contained in:
parent
9b3c035587
commit
9206fb674f
@ -25,6 +25,10 @@ def get_dynip(ifconfig_provider):
|
|||||||
return config.static_ip.strip('\n')
|
return config.static_ip.strip('\n')
|
||||||
|
|
||||||
r = requests.get(ifconfig_provider)
|
r = requests.get(ifconfig_provider)
|
||||||
|
if r._content == None:
|
||||||
|
print("No reponse for dynamic IP")
|
||||||
|
exit()
|
||||||
|
|
||||||
print('Checking dynamic IP: ' , r._content.decode().strip('\n'))
|
print('Checking dynamic IP: ' , r._content.decode().strip('\n'))
|
||||||
return r.content.decode().strip('\n')
|
return r.content.decode().strip('\n')
|
||||||
|
|
||||||
@ -37,6 +41,9 @@ def get_uuid():
|
|||||||
'''
|
'''
|
||||||
url = config.api_endpoint + '/domains/' + config.domain
|
url = config.api_endpoint + '/domains/' + config.domain
|
||||||
u = requests.get(url, headers={"X-Api-Key":config.api_secret})
|
u = requests.get(url, headers={"X-Api-Key":config.api_secret})
|
||||||
|
if u._content == None:
|
||||||
|
print("no reponse from Gandi")
|
||||||
|
exit()
|
||||||
json_object = json.loads(u._content)
|
json_object = json.loads(u._content)
|
||||||
if u.status_code == 200:
|
if u.status_code == 200:
|
||||||
return json_object['zone_uuid']
|
return json_object['zone_uuid']
|
||||||
@ -57,13 +64,12 @@ def get_dnsip(uuid):
|
|||||||
url = config.api_endpoint+ '/zones/' + uuid + '/records/' + config.subdomains[0] + '/A'
|
url = config.api_endpoint+ '/zones/' + uuid + '/records/' + config.subdomains[0] + '/A'
|
||||||
headers = {"X-Api-Key":config.api_secret}
|
headers = {"X-Api-Key":config.api_secret}
|
||||||
u = requests.get(url, headers=headers)
|
u = requests.get(url, headers=headers)
|
||||||
if u.status_code == 200:
|
if u.status_code == 200 and u._content != None:
|
||||||
json_object = json.loads(u._content)
|
json_object = json.loads(u._content)
|
||||||
print('Checking IP from DNS Record' , config.subdomains[0], ':', json_object['rrset_values'][0].encode('ascii','ignore').decode().strip('\n'))
|
print('Checking IP from DNS Record' , config.subdomains[0], ':', json_object['rrset_values'][0].encode('ascii','ignore').decode().strip('\n'))
|
||||||
return json_object['rrset_values'][0].strip('\n')
|
return json_object['rrset_values'][0].strip('\n')
|
||||||
else:
|
else:
|
||||||
print('Error: HTTP Status Code ', u.status_code, 'when trying to get IP from subdomain', config.subdomains[0])
|
print('Error: HTTP Status Code ', u.status_code, 'when trying to get IP from subdomain', config.subdomains[0])
|
||||||
print(json_object['message'])
|
|
||||||
exit()
|
exit()
|
||||||
|
|
||||||
def update_records(uuid, dynIP, subdomain):
|
def update_records(uuid, dynIP, subdomain):
|
||||||
@ -80,6 +86,9 @@ def update_records(uuid, dynIP, subdomain):
|
|||||||
payload = {"rrset_ttl": config.ttl, "rrset_values": [dynIP]}
|
payload = {"rrset_ttl": config.ttl, "rrset_values": [dynIP]}
|
||||||
headers = {"Content-Type": "application/json", "X-Api-Key":config.api_secret}
|
headers = {"Content-Type": "application/json", "X-Api-Key":config.api_secret}
|
||||||
u = requests.put(url, data=json.dumps(payload), headers=headers)
|
u = requests.put(url, data=json.dumps(payload), headers=headers)
|
||||||
|
if u._content == None:
|
||||||
|
print("no reponse from gandi")
|
||||||
|
exit()
|
||||||
json_object = json.loads(u._content)
|
json_object = json.loads(u._content)
|
||||||
|
|
||||||
if u.status_code == 201:
|
if u.status_code == 201:
|
||||||
@ -116,6 +125,7 @@ def main(force_update, verbosity):
|
|||||||
else:
|
else:
|
||||||
print("IP Address Mismatch - going to update the DNS Records for the subdomains with new IP", dynIP)
|
print("IP Address Mismatch - going to update the DNS Records for the subdomains with new IP", dynIP)
|
||||||
for sub in config.subdomains:
|
for sub in config.subdomains:
|
||||||
|
sub = sub.replace("\"","")
|
||||||
update_records(uuid, dynIP, sub)
|
update_records(uuid, dynIP, sub)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
@ -1,130 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
# encoding: utf-8
|
|
||||||
'''
|
|
||||||
Gandi v5 LiveDNS - DynDNS Update via REST API and CURL/requests
|
|
||||||
|
|
||||||
@author: cave
|
|
||||||
License GPLv3
|
|
||||||
https://www.gnu.org/licenses/gpl-3.0.html
|
|
||||||
|
|
||||||
Created on 13 Aug 2017
|
|
||||||
http://doc.livedns.gandi.net/
|
|
||||||
http://doc.livedns.gandi.net/#api-endpoint -> https://dns.gandi.net/api/v5/
|
|
||||||
'''
|
|
||||||
|
|
||||||
import requests, json
|
|
||||||
import config
|
|
||||||
import argparse
|
|
||||||
|
|
||||||
|
|
||||||
def get_dynip(ifconfig_provider):
|
|
||||||
''' find out own IPv4 at home <-- this is the dynamic IP which changes more or less frequently
|
|
||||||
similar to curl ifconfig.me/ip, see example.config.py for details to ifconfig providers
|
|
||||||
'''
|
|
||||||
r = requests.get(ifconfig_provider)
|
|
||||||
print 'Checking dynamic IP: ' , r._content.strip('\n')
|
|
||||||
return r.content.strip('\n')
|
|
||||||
|
|
||||||
def get_uuid():
|
|
||||||
'''
|
|
||||||
find out ZONE UUID from domain
|
|
||||||
Info on domain "DOMAIN"
|
|
||||||
GET /domains/<DOMAIN>:
|
|
||||||
|
|
||||||
'''
|
|
||||||
url = config.api_endpoint + '/domains/' + config.domain
|
|
||||||
u = requests.get(url, headers={"X-Api-Key":config.api_secret})
|
|
||||||
json_object = json.loads(u._content)
|
|
||||||
if u.status_code == 200:
|
|
||||||
return json_object['zone_uuid']
|
|
||||||
else:
|
|
||||||
print 'Error: HTTP Status Code ', u.status_code, 'when trying to get Zone UUID'
|
|
||||||
print json_object['message']
|
|
||||||
exit()
|
|
||||||
|
|
||||||
def get_dnsip(uuid):
|
|
||||||
''' find out IP from first Subdomain DNS-Record
|
|
||||||
List all records with name "NAME" and type "TYPE" in the zone UUID
|
|
||||||
GET /zones/<UUID>/records/<NAME>/<TYPE>:
|
|
||||||
|
|
||||||
The first subdomain from config.subdomain will be used to get
|
|
||||||
the actual DNS Record IP
|
|
||||||
'''
|
|
||||||
|
|
||||||
url = config.api_endpoint+ '/zones/' + uuid + '/records/' + config.subdomains[0] + '/A'
|
|
||||||
headers = {"X-Api-Key":config.api_secret}
|
|
||||||
u = requests.get(url, headers=headers)
|
|
||||||
if u.status_code == 200:
|
|
||||||
json_object = json.loads(u._content)
|
|
||||||
print 'Checking IP from DNS Record' , config.subdomains[0], ':', json_object['rrset_values'][0].encode('ascii','ignore').strip('\n')
|
|
||||||
return json_object['rrset_values'][0].encode('ascii','ignore').strip('\n')
|
|
||||||
else:
|
|
||||||
print 'Error: HTTP Status Code ', u.status_code, 'when trying to get IP from subdomain', config.subdomains[0]
|
|
||||||
print json_object['message']
|
|
||||||
exit()
|
|
||||||
|
|
||||||
def update_records(uuid, dynIP, subdomain):
|
|
||||||
''' update DNS Records for Subdomains
|
|
||||||
Change the "NAME"/"TYPE" record from the zone UUID
|
|
||||||
PUT /zones/<UUID>/records/<NAME>/<TYPE>:
|
|
||||||
curl -X PUT -H "Content-Type: application/json" \
|
|
||||||
-H 'X-Api-Key: XXX' \
|
|
||||||
-d '{"rrset_ttl": 10800,
|
|
||||||
"rrset_values": ["<VALUE>"]}' \
|
|
||||||
https://dns.gandi.net/api/v5/zones/<UUID>/records/<NAME>/<TYPE>
|
|
||||||
'''
|
|
||||||
url = config.api_endpoint+ '/zones/' + uuid + '/records/' + subdomain + '/A'
|
|
||||||
payload = {"rrset_ttl": config.ttl, "rrset_values": [dynIP]}
|
|
||||||
headers = {"Content-Type": "application/json", "X-Api-Key":config.api_secret}
|
|
||||||
u = requests.put(url, data=json.dumps(payload), headers=headers)
|
|
||||||
json_object = json.loads(u._content)
|
|
||||||
|
|
||||||
if u.status_code == 201:
|
|
||||||
print 'Status Code:', u.status_code, ',', json_object['message'], ', IP updated for', subdomain
|
|
||||||
return True
|
|
||||||
else:
|
|
||||||
print 'Error: HTTP Status Code ', u.status_code, 'when trying to update IP from subdomain', subdomain
|
|
||||||
print json_object['message']
|
|
||||||
exit()
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def main(force_update, verbosity):
|
|
||||||
|
|
||||||
if verbosity:
|
|
||||||
print "verbosity turned on - not implemented by now"
|
|
||||||
|
|
||||||
|
|
||||||
#get zone ID from Account
|
|
||||||
uuid = get_uuid()
|
|
||||||
|
|
||||||
#compare dynIP and DNS IP
|
|
||||||
dynIP = get_dynip(config.ifconfig)
|
|
||||||
dnsIP = get_dnsip(uuid)
|
|
||||||
|
|
||||||
if force_update:
|
|
||||||
print "Going to update/create the DNS Records for the subdomains"
|
|
||||||
for sub in config.subdomains:
|
|
||||||
update_records(uuid, dynIP, sub)
|
|
||||||
else:
|
|
||||||
if dynIP == dnsIP:
|
|
||||||
print "IP Address Match - no further action"
|
|
||||||
else:
|
|
||||||
print "IP Address Mismatch - going to update the DNS Records for the subdomains with new IP", dynIP
|
|
||||||
for sub in config.subdomains:
|
|
||||||
update_records(uuid, dynIP, sub)
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
parser = argparse.ArgumentParser()
|
|
||||||
parser.add_argument('-v', '--verbose', help="increase output verbosity", action="store_true")
|
|
||||||
parser.add_argument('-f', '--force', help="force an update/create", action="store_true")
|
|
||||||
args = parser.parse_args()
|
|
||||||
|
|
||||||
|
|
||||||
main(args.force, args.verbose)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user