2013-06-16 01:06:25 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import json
|
|
|
|
from urllib import urlopen
|
|
|
|
|
2013-06-16 09:45:02 +02:00
|
|
|
urls = ['http://dynette-dev.herokuapp.com']
|
|
|
|
lines = []
|
|
|
|
|
|
|
|
for url in urls:
|
|
|
|
domains = json.loads(str(urlopen(url +'/domains').read()))
|
|
|
|
|
|
|
|
for domain in domains:
|
2013-06-16 10:39:41 +02:00
|
|
|
result = json.loads(str(urlopen(url +'/all/'+ domain).read()))
|
2013-06-16 09:45:02 +02:00
|
|
|
lines.extend([
|
|
|
|
'zone "'+ domain +'" {',
|
|
|
|
' type master;',
|
2013-06-16 10:39:41 +02:00
|
|
|
' file "/var/named/data/'+ domain +'.db"; ',
|
2013-06-16 09:45:02 +02:00
|
|
|
' update-policy {',
|
|
|
|
])
|
|
|
|
|
|
|
|
for entry in result:
|
2013-06-16 10:39:41 +02:00
|
|
|
fqdn = entry['subdomain'] +'.'
|
2013-06-16 09:45:02 +02:00
|
|
|
lines.extend([
|
2013-06-16 12:26:24 +02:00
|
|
|
' grant '+ fqdn +' name '+ fqdn +' A TXT MX;',
|
2013-06-16 09:45:02 +02:00
|
|
|
' grant '+ fqdn +' name pubsub.'+ fqdn +' A;',
|
|
|
|
' grant '+ fqdn +' name muc.'+ fqdn +' A;',
|
|
|
|
' grant '+ fqdn +' name vjud.'+ fqdn +' A;',
|
|
|
|
' grant '+ fqdn +' name _xmpp-client._tcp.'+ fqdn +' SRV;',
|
|
|
|
' grant '+ fqdn +' name _xmpp-server._tcp.'+ fqdn +' SRV;',
|
|
|
|
])
|
|
|
|
|
|
|
|
lines.extend([
|
|
|
|
' };',
|
|
|
|
'};',
|
|
|
|
])
|
|
|
|
|
|
|
|
for entry in result:
|
2013-06-16 10:39:41 +02:00
|
|
|
fqdn = entry['subdomain'] +'.'
|
2013-06-16 09:45:02 +02:00
|
|
|
lines.extend([
|
|
|
|
'key '+ fqdn +' {',
|
|
|
|
' algorithm hmac-md5;',
|
|
|
|
' secret "'+ entry['public_key'] +'";',
|
|
|
|
'};',
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
os.system('cp /etc/bind/named.conf.local /etc/bind/named.conf.local.back')
|
2013-06-16 01:06:25 +02:00
|
|
|
|
|
|
|
with open('/etc/bind/named.conf.local', 'w') as zone:
|
|
|
|
for line in lines:
|
|
|
|
zone.write(line + '\n')
|
|
|
|
|
2013-06-16 09:45:02 +02:00
|
|
|
if os.system('rndc reload') == 0:
|
|
|
|
exit(0)
|
|
|
|
else:
|
|
|
|
os.system('cp /etc/bind/named.conf.local /etc/bind/named.conf.local.bad')
|
|
|
|
os.system('cp /etc/bind/named.conf.back /etc/bind/named.conf.local')
|
|
|
|
os.system('rndc reload')
|
|
|
|
print("An error occured ! Please check daemon.log and your conf.bad")
|
|
|
|
exit(1)
|