début de réplication
This commit is contained in:
parent
6377ccb9e7
commit
74ee60e86c
3 changed files with 63 additions and 2 deletions
28
server.py
28
server.py
|
@ -17,10 +17,19 @@ import itertools
|
|||
from email.mime.text import MIMEText
|
||||
from email.mime.multipart import MIMEMultipart
|
||||
|
||||
try:
|
||||
from cpasswords import clientlib
|
||||
except ImportError:
|
||||
print("Couldn't import clientlib. Remote sync may not work")
|
||||
|
||||
# Même problème que pour le client, il faut bootstraper le nom de la commande
|
||||
# Pour accéder à la config
|
||||
cmd_name = os.path.split(sys.argv[0])[1].replace("-server", "")
|
||||
sys.path.append("/etc/%s/" % (cmd_name,))
|
||||
conf_path = os.getenv('CRANSPASSWORDS_SERVER_CONFIG_DIR', None)
|
||||
if not conf_path:
|
||||
cmd_name = os.path.split(sys.argv[0])[1].replace("-server", "")
|
||||
conf_path = "/etc/%s/" % (cmd_name,)
|
||||
|
||||
sys.path.append(conf_path)
|
||||
import serverconfig
|
||||
|
||||
MYUID = pwd.getpwuid(os.getuid())[0]
|
||||
|
@ -190,6 +199,11 @@ def _putfile(filename, roles, contents):
|
|||
# Or fuck yourself
|
||||
|
||||
writefile(filepath, json.dumps({'roles': roles, 'contents': contents}))
|
||||
|
||||
data = {'filename': filename, 'roles': roles, 'contents': contents}
|
||||
for client in _list_to_replicate(data):
|
||||
client.put_file(data)
|
||||
|
||||
return [True, u"Modification effectuée."]
|
||||
|
||||
@server_command('putfile', stdin_input=True, write=True)
|
||||
|
@ -245,6 +259,16 @@ def backup(corps, fname, old):
|
|||
back.write((u'* %s: %s\n' % (str(datetime.datetime.now()), corps)).encode("utf-8"))
|
||||
back.close()
|
||||
|
||||
def _list_to_replicate(data):
|
||||
"""Renvoie une liste d'options clients sur lesquels appliquer relancer
|
||||
la procédure (pour réplication auto)"""
|
||||
roles = data.get('roles', [])
|
||||
backups = getattr(serverconfig, 'BACKUP_ROLES', {})
|
||||
servers = getattr(serverconfig, 'BACKUP_SERVERS', {})
|
||||
|
||||
configs = set(name for role in roles for name in backups.get(role, []))
|
||||
return [ clientlib.Client(servers[name]) for name in configs ]
|
||||
|
||||
_notif_todo = []
|
||||
def notification(action, fname, actor):
|
||||
"""Enregistre une notification"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue