fixy i now funkcje (przebudowa rozwiazywania nazw)
This commit is contained in:
parent
f8a9dd451b
commit
1dc4300881
153
app.py
153
app.py
@ -56,6 +56,26 @@ class Host(db.Model):
|
|||||||
except Exception:
|
except Exception:
|
||||||
return self.hostname
|
return self.hostname
|
||||||
|
|
||||||
|
@property
|
||||||
|
def resolved_daemon(self):
|
||||||
|
if self.daemon_url:
|
||||||
|
try:
|
||||||
|
daemon_str = self.daemon_url.split("://")[-1]
|
||||||
|
daemon_ip = daemon_str.split(":")[0]
|
||||||
|
return socket.gethostbyaddr(daemon_ip)[0]
|
||||||
|
except Exception:
|
||||||
|
return daemon_ip
|
||||||
|
return ""
|
||||||
|
|
||||||
|
@property
|
||||||
|
def raw_ip(self):
|
||||||
|
if self.use_daemon and self.type == 'linux' and self.daemon_url:
|
||||||
|
daemon_str = self.daemon_url.split("://")[-1]
|
||||||
|
daemon_ip = daemon_str.split(":")[0]
|
||||||
|
return daemon_ip
|
||||||
|
return self.hostname
|
||||||
|
|
||||||
|
|
||||||
class DeployLog(db.Model):
|
class DeployLog(db.Model):
|
||||||
id = db.Column(db.Integer, primary_key=True)
|
id = db.Column(db.Integer, primary_key=True)
|
||||||
timestamp = db.Column(db.DateTime, default=db.func.current_timestamp())
|
timestamp = db.Column(db.DateTime, default=db.func.current_timestamp())
|
||||||
@ -329,6 +349,12 @@ def cleanup_old_backups():
|
|||||||
db.session.delete(b)
|
db.session.delete(b)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
|
||||||
|
def format_host(host):
|
||||||
|
if host.use_daemon and host.type == 'linux' and host.daemon_url:
|
||||||
|
return f"{host.resolved_daemon} ({host.raw_ip})"
|
||||||
|
else:
|
||||||
|
return f"{host.resolved_hostname} ({host.raw_ip})"
|
||||||
|
|
||||||
# -------------------
|
# -------------------
|
||||||
# LOGOWANIE, REJESTRACJA, ZMIANA HASŁA
|
# LOGOWANIE, REJESTRACJA, ZMIANA HASŁA
|
||||||
# -------------------
|
# -------------------
|
||||||
@ -553,33 +579,25 @@ def edit_server(id):
|
|||||||
def test_server_connection(id):
|
def test_server_connection(id):
|
||||||
if 'user_id' not in session:
|
if 'user_id' not in session:
|
||||||
return redirect(url_for('login'))
|
return redirect(url_for('login'))
|
||||||
|
|
||||||
host = db.session.get(Host, id)
|
host = db.session.get(Host, id)
|
||||||
if not host or host.user_id != session['user_id']:
|
if not host or host.user_id != session['user_id']:
|
||||||
flash('Host not found or unauthorized', 'danger')
|
flash('Host not found or unauthorized', 'danger')
|
||||||
return redirect(url_for('server_list'))
|
return redirect(url_for('server_list'))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if host.use_daemon and host.type == 'linux':
|
if host.use_daemon and host.type == 'linux':
|
||||||
# Połączenie przez demon (self-signed certy, verify=False)
|
|
||||||
import requests
|
import requests
|
||||||
headers = {"Authorization": host.daemon_token}
|
headers = {"Authorization": host.daemon_token}
|
||||||
|
|
||||||
# Najpierw sprawdzenie /health
|
|
||||||
health_url = host.daemon_url.rstrip('/') + '/health'
|
health_url = host.daemon_url.rstrip('/') + '/health'
|
||||||
resp = requests.get(health_url, headers=headers, verify=False, timeout=5)
|
resp = requests.get(health_url, headers=headers, verify=False, timeout=5)
|
||||||
if resp.status_code == 200:
|
if resp.status_code == 200:
|
||||||
flash(f'Demon connection successful (health OK) for {host.hostname}', 'success')
|
flash(f'Demon connection successful (health OK) for {format_host(host)}', 'success')
|
||||||
else:
|
else:
|
||||||
raise Exception(f"Demon health check returned {resp.status_code}")
|
raise Exception(f"Demon health check returned {resp.status_code}")
|
||||||
|
|
||||||
# Dodatkowe pobranie /system-info
|
|
||||||
sysinfo_url = host.daemon_url.rstrip('/') + '/system-info'
|
sysinfo_url = host.daemon_url.rstrip('/') + '/system-info'
|
||||||
sysinfo_resp = requests.get(sysinfo_url, headers=headers, verify=False, timeout=5)
|
sysinfo_resp = requests.get(sysinfo_url, headers=headers, verify=False, timeout=5)
|
||||||
if sysinfo_resp.status_code == 200:
|
if sysinfo_resp.status_code == 200:
|
||||||
info = sysinfo_resp.json()
|
info = sysinfo_resp.json()
|
||||||
# Wyświetlamy kilka przykładowych danych w flash:
|
msg = (f"System-info for {format_host(host)}: "
|
||||||
msg = (f"System-info for {host.hostname}: "
|
|
||||||
f"CPU={info.get('cpu_percent')}%, "
|
f"CPU={info.get('cpu_percent')}%, "
|
||||||
f"MEM={info.get('memory_percent')}%, "
|
f"MEM={info.get('memory_percent')}%, "
|
||||||
f"DISK={info.get('disk_percent')}%, "
|
f"DISK={info.get('disk_percent')}%, "
|
||||||
@ -587,16 +605,12 @@ def test_server_connection(id):
|
|||||||
flash(msg, 'info')
|
flash(msg, 'info')
|
||||||
else:
|
else:
|
||||||
raise Exception(f"Demon system-info returned {sysinfo_resp.status_code}")
|
raise Exception(f"Demon system-info returned {sysinfo_resp.status_code}")
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# Standardowe sprawdzenie przez SSH
|
|
||||||
ssh = open_ssh_connection(host)
|
ssh = open_ssh_connection(host)
|
||||||
ssh.close()
|
ssh.close()
|
||||||
flash(f'SSH connection to {host.hostname} successful.', 'success')
|
flash(f'SSH connection to {format_host(host)} successful.', 'success')
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
flash(f'Connection failed for {host.hostname}: {str(e)}', 'danger')
|
flash(f'Connection failed for {format_host(host)}: {str(e)}', 'danger')
|
||||||
|
|
||||||
return redirect(url_for('server_list'))
|
return redirect(url_for('server_list'))
|
||||||
|
|
||||||
# -------------------
|
# -------------------
|
||||||
@ -740,7 +754,7 @@ def delete_hosts_file(file_id):
|
|||||||
# -------------------
|
# -------------------
|
||||||
# WDROŻENIE WYBRANEGO PLIKU HOSTS NA WYBRANE SERWERY
|
# WDROŻENIE WYBRANEGO PLIKU HOSTS NA WYBRANE SERWERY
|
||||||
# -------------------
|
# -------------------
|
||||||
import socket
|
|
||||||
|
|
||||||
@app.route('/deploy-hosts-file/<int:file_id>', methods=['GET', 'POST'])
|
@app.route('/deploy-hosts-file/<int:file_id>', methods=['GET', 'POST'])
|
||||||
def deploy_hosts_file(file_id):
|
def deploy_hosts_file(file_id):
|
||||||
@ -752,23 +766,23 @@ def deploy_hosts_file(file_id):
|
|||||||
return redirect(url_for('list_hosts_files'))
|
return redirect(url_for('list_hosts_files'))
|
||||||
hosts = Host.query.filter_by(user_id=session['user_id']).all()
|
hosts = Host.query.filter_by(user_id=session['user_id']).all()
|
||||||
|
|
||||||
# Dla hostów z demonem obliczamy IP i rozwiązaną nazwę z IP
|
# Dla hostów korzystających z demona – obliczamy IP oraz rozwiązaną nazwę
|
||||||
for host in hosts:
|
for host in hosts:
|
||||||
if host.use_daemon and host.type == 'linux' and host.daemon_url:
|
if host.use_daemon and host.type == 'linux' and host.daemon_url:
|
||||||
daemon_str = host.daemon_url.split("://")[-1]
|
daemon_str = host.daemon_url.split("://")[-1]
|
||||||
daemon_ip = daemon_str.split(":")[0]
|
daemon_ip = daemon_str.split(":")[0]
|
||||||
host.daemon_ip = daemon_ip
|
host.daemon_ip = daemon_ip
|
||||||
try:
|
try:
|
||||||
host.resolved_daemon = socket.gethostbyaddr(daemon_ip)[0]
|
resolved_daemon = socket.gethostbyaddr(daemon_ip)[0]
|
||||||
except Exception:
|
except Exception:
|
||||||
host.resolved_daemon = daemon_ip # jeśli nie uda się rozwiązać, pozostaw IP
|
resolved_daemon = daemon_ip
|
||||||
|
host._resolved_daemon_local = resolved_daemon
|
||||||
|
|
||||||
if request.method == 'POST':
|
if request.method == 'POST':
|
||||||
selected_host_ids = request.form.getlist('hosts')
|
selected_host_ids = request.form.getlist('hosts')
|
||||||
for host in hosts:
|
for host in hosts:
|
||||||
if str(host.id) in selected_host_ids:
|
if str(host.id) in selected_host_ids:
|
||||||
try:
|
try:
|
||||||
# Przygotuj zawartość do wgrania
|
|
||||||
adjusted_content = ensure_local_defaults(file.content)
|
adjusted_content = ensure_local_defaults(file.content)
|
||||||
wrapped_content = wrap_content_with_comments(adjusted_content)
|
wrapped_content = wrap_content_with_comments(adjusted_content)
|
||||||
|
|
||||||
@ -780,17 +794,13 @@ def deploy_hosts_file(file_id):
|
|||||||
headers=headers, timeout=10, verify=False)
|
headers=headers, timeout=10, verify=False)
|
||||||
if resp.status_code != 200:
|
if resp.status_code != 200:
|
||||||
raise Exception(f"Daemon POST error: {resp.status_code} - {resp.text}")
|
raise Exception(f"Daemon POST error: {resp.status_code} - {resp.text}")
|
||||||
db.session.add(DeployLog(
|
log_details = f'[LINUX/DAEMON] Updated {format_host(host)}'
|
||||||
details=f'[LINUX/DAEMON] Deployed file "{file.title}" to {host.daemon_ip} - {host.resolved_daemon} for user {session["user_id"]}',
|
db.session.add(DeployLog(details=log_details, user_id=session['user_id']))
|
||||||
user_id=session['user_id']
|
|
||||||
))
|
|
||||||
elif host.type == 'mikrotik':
|
elif host.type == 'mikrotik':
|
||||||
wrapped_mikro = wrap_mikrotik_content(file.content)
|
wrapped_mikro = wrap_mikrotik_content(file.content)
|
||||||
deploy_mikrotik(host, wrapped_mikro)
|
deploy_mikrotik(host, wrapped_mikro)
|
||||||
db.session.add(DeployLog(
|
log_details = f'[MIKROTIK] Updated {format_host(host)}'
|
||||||
details=f'[MIKROTIK] Deployed file "{file.title}" to {host.hostname} for user {session["user_id"]}',
|
db.session.add(DeployLog(details=log_details, user_id=session['user_id']))
|
||||||
user_id=session['user_id']
|
|
||||||
))
|
|
||||||
else:
|
else:
|
||||||
ssh = open_ssh_connection(host)
|
ssh = open_ssh_connection(host)
|
||||||
with tempfile.NamedTemporaryFile(mode='w', delete=False) as tmpf:
|
with tempfile.NamedTemporaryFile(mode='w', delete=False) as tmpf:
|
||||||
@ -801,14 +811,12 @@ def deploy_hosts_file(file_id):
|
|||||||
sftp.close()
|
sftp.close()
|
||||||
ssh.close()
|
ssh.close()
|
||||||
os.remove(tmp_file_path)
|
os.remove(tmp_file_path)
|
||||||
db.session.add(DeployLog(
|
log_details = f'[LINUX] Updated {format_host(host)}'
|
||||||
details=f'[LINUX] Deployed file "{file.title}" to {host.hostname} for user {session["user_id"]}',
|
db.session.add(DeployLog(details=log_details, user_id=session['user_id']))
|
||||||
user_id=session['user_id']
|
|
||||||
))
|
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
flash(f'Deployed file "{file.title}" to {host.hostname}', 'success')
|
flash(f'Deployed file "{file.title}" to {format_host(host)}', 'success')
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
flash(f'Error deploying file "{file.title}" to {host.hostname}: {str(e)}', 'danger')
|
flash(f'Error deploying file "{file.title}" to {format_host(host)}: {str(e)}', 'danger')
|
||||||
return redirect(url_for('list_hosts_files'))
|
return redirect(url_for('list_hosts_files'))
|
||||||
|
|
||||||
return render_template('deploy_hosts_file.html', file=file, hosts=hosts)
|
return render_template('deploy_hosts_file.html', file=file, hosts=hosts)
|
||||||
@ -835,26 +843,21 @@ def server_backup(host_id):
|
|||||||
raise Exception(f"Daemon GET error: {resp.status_code} - {resp.text}")
|
raise Exception(f"Daemon GET error: {resp.status_code} - {resp.text}")
|
||||||
data = resp.json()
|
data = resp.json()
|
||||||
content = data.get("hosts", "")
|
content = data.get("hosts", "")
|
||||||
# Wyodrębnienie adresu IP z daemon_url
|
description = f'Backup from server {format_host(host)} at {datetime.now(timezone.utc).strftime("%Y-%m-%d %H:%M:%S")}'
|
||||||
daemon_str = host.daemon_url.split("://")[-1]
|
|
||||||
daemon_ip = daemon_str.split(":")[0]
|
|
||||||
description = f'Backup (daemon) from {host.hostname} (Daemon IP: {daemon_ip})'
|
|
||||||
elif host.type == 'mikrotik':
|
elif host.type == 'mikrotik':
|
||||||
ssh = open_ssh_connection(host)
|
ssh = open_ssh_connection(host)
|
||||||
stdin, stdout, stderr = ssh.exec_command("/ip dns static export")
|
stdin, stdout, stderr = ssh.exec_command("/ip dns static export")
|
||||||
content = stdout.read().decode('utf-8')
|
content = stdout.read().decode('utf-8')
|
||||||
ssh.close()
|
ssh.close()
|
||||||
description = f'Backup (mikrotik) from {host.hostname}'
|
description = f'Backup from server {format_host(host)}'
|
||||||
else:
|
else:
|
||||||
# Standard Linux (SSH)
|
|
||||||
ssh = open_ssh_connection(host)
|
ssh = open_ssh_connection(host)
|
||||||
sftp = ssh.open_sftp()
|
sftp = ssh.open_sftp()
|
||||||
with sftp.open('/etc/hosts', 'r') as remote_file:
|
with sftp.open('/etc/hosts', 'r') as remote_file:
|
||||||
content = remote_file.read().decode('utf-8')
|
content = remote_file.read().decode('utf-8')
|
||||||
sftp.close()
|
sftp.close()
|
||||||
ssh.close()
|
ssh.close()
|
||||||
description = f'Backup from {host.hostname}'
|
description = f'Backup from server {format_host(host)}'
|
||||||
|
|
||||||
backup = Backup(
|
backup = Backup(
|
||||||
user_id=session['user_id'],
|
user_id=session['user_id'],
|
||||||
host_id=host.id,
|
host_id=host.id,
|
||||||
@ -863,9 +866,9 @@ def server_backup(host_id):
|
|||||||
)
|
)
|
||||||
db.session.add(backup)
|
db.session.add(backup)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
flash(f'Backup for host {host.hostname} created successfully.', 'success')
|
flash(f'Backup for host {format_host(host)} created successfully.', 'success')
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
flash(f'Error creating backup for host {host.hostname}: {str(e)}', 'danger')
|
flash(f'Error creating backup for host {format_host(host)}: {str(e)}', 'danger')
|
||||||
return redirect(url_for('server_list'))
|
return redirect(url_for('server_list'))
|
||||||
|
|
||||||
@app.route('/backups')
|
@app.route('/backups')
|
||||||
@ -891,37 +894,32 @@ def restore_backup(backup_id):
|
|||||||
try:
|
try:
|
||||||
if host.type == 'mikrotik':
|
if host.type == 'mikrotik':
|
||||||
ssh = open_ssh_connection(host)
|
ssh = open_ssh_connection(host)
|
||||||
# Usuń istniejące wpisy
|
|
||||||
ssh.exec_command("/ip dns static remove [find]")
|
ssh.exec_command("/ip dns static remove [find]")
|
||||||
import time
|
import time
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
# Przygotuj jedno polecenie, które dodaje wszystkie wpisy
|
|
||||||
commands = []
|
commands = []
|
||||||
for line in backup.content.splitlines():
|
for line in backup.content.splitlines():
|
||||||
line = line.strip()
|
line = line.strip()
|
||||||
if line.startswith("add "):
|
if line.startswith("add "):
|
||||||
commands.append("/ip dns static " + line)
|
commands.append("/ip dns static " + line)
|
||||||
full_command = " ; ".join(commands)
|
full_command = " ; ".join(commands)
|
||||||
#print("[DEBUG] Full command sent to Mikrotik:", full_command)
|
|
||||||
ssh.exec_command(full_command)
|
ssh.exec_command(full_command)
|
||||||
ssh.close()
|
ssh.close()
|
||||||
flash(f'Backup restored to mikrotik host {host.hostname} successfully.', 'success')
|
flash(f'Backup restored to {format_host(host)} successfully.', 'success')
|
||||||
else:
|
else:
|
||||||
ssh = open_ssh_connection(host)
|
ssh = open_ssh_connection(host)
|
||||||
sftp = ssh.open_sftp()
|
sftp = ssh.open_sftp()
|
||||||
with tempfile.NamedTemporaryFile(mode='w', delete=False) as tmpf:
|
with tempfile.NamedTemporaryFile(mode='w', delete=False) as tmpf:
|
||||||
tmpf.write(backup.content)
|
tmpf.write(backup.content)
|
||||||
tmp_file_path = tmpf.name
|
tmp_file_path = tmpf.name
|
||||||
#print(f"[DEBUG] Tymczasowy plik: {tmp_file_path} zawiera: {backup.content}")
|
|
||||||
sftp.put(tmp_file_path, '/etc/hosts')
|
sftp.put(tmp_file_path, '/etc/hosts')
|
||||||
sftp.close()
|
sftp.close()
|
||||||
ssh.close()
|
ssh.close()
|
||||||
os.remove(tmp_file_path)
|
os.remove(tmp_file_path)
|
||||||
flash(f'Backup restored to host {host.hostname} successfully.', 'success')
|
flash(f'Backup restored to {format_host(host)} successfully.', 'success')
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
flash(f'Error restoring backup to host {host.hostname}: {str(e)}', 'danger')
|
flash(f'Error restoring backup to {format_host(host)}: {str(e)}', 'danger')
|
||||||
else:
|
else:
|
||||||
# Przywrócenie backupu jako domyślnej konfiguracji (Default Hosts)
|
|
||||||
hostfile = HostFile.query.filter_by(user_id=session['user_id'], title="Default Hosts").first()
|
hostfile = HostFile.query.filter_by(user_id=session['user_id'], title="Default Hosts").first()
|
||||||
if not hostfile:
|
if not hostfile:
|
||||||
hostfile = HostFile(user_id=session['user_id'], title="Default Hosts", content=backup.content)
|
hostfile = HostFile(user_id=session['user_id'], title="Default Hosts", content=backup.content)
|
||||||
@ -963,26 +961,21 @@ def backup_all():
|
|||||||
raise Exception(f"Daemon GET error: {resp.status_code} - {resp.text}")
|
raise Exception(f"Daemon GET error: {resp.status_code} - {resp.text}")
|
||||||
data = resp.json()
|
data = resp.json()
|
||||||
content = data.get("hosts", "")
|
content = data.get("hosts", "")
|
||||||
# Wyodrębnienie adresu IP demona
|
description = f'Backup from server {format_host(host)}'
|
||||||
daemon_str = host.daemon_url.split("://")[-1]
|
|
||||||
daemon_ip = daemon_str.split(":")[0]
|
|
||||||
description = f'Backup (daemon) from {host.hostname} (Daemon IP: {daemon_ip})'
|
|
||||||
elif host.type == 'mikrotik':
|
elif host.type == 'mikrotik':
|
||||||
ssh = open_ssh_connection(host)
|
ssh = open_ssh_connection(host)
|
||||||
stdin, stdout, stderr = ssh.exec_command("/ip dns static export")
|
stdin, stdout, stderr = ssh.exec_command("/ip dns static export")
|
||||||
content = stdout.read().decode('utf-8')
|
content = stdout.read().decode('utf-8')
|
||||||
ssh.close()
|
ssh.close()
|
||||||
description = f'Backup (mikrotik) from {host.hostname}'
|
description = f'Backup from server {format_host(host)}'
|
||||||
else:
|
else:
|
||||||
# Standard Linux (SSH)
|
|
||||||
ssh = open_ssh_connection(host)
|
ssh = open_ssh_connection(host)
|
||||||
sftp = ssh.open_sftp()
|
sftp = ssh.open_sftp()
|
||||||
with sftp.open('/etc/hosts', 'r') as remote_file:
|
with sftp.open('/etc/hosts', 'r') as remote_file:
|
||||||
content = remote_file.read().decode('utf-8')
|
content = remote_file.read().decode('utf-8')
|
||||||
sftp.close()
|
sftp.close()
|
||||||
ssh.close()
|
ssh.close()
|
||||||
description = f'Backup from {host.hostname}'
|
description = f'Backup from server {format_host(host)}'
|
||||||
|
|
||||||
backup = Backup(
|
backup = Backup(
|
||||||
user_id=user_id,
|
user_id=user_id,
|
||||||
host_id=host.id,
|
host_id=host.id,
|
||||||
@ -992,11 +985,9 @@ def backup_all():
|
|||||||
db.session.add(backup)
|
db.session.add(backup)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
flash(f'Error creating backup for host {host.hostname}: {str(e)}', 'danger')
|
flash(f'Error creating backup for {format_host(host)}: {str(e)}', 'danger')
|
||||||
|
|
||||||
flash('Backup for all hosts created successfully.', 'success')
|
flash('Backup for all hosts created successfully.', 'success')
|
||||||
return redirect(url_for('backups'))
|
return redirect(url_for('backups'))
|
||||||
|
|
||||||
# -------------------
|
# -------------------
|
||||||
# IMPORT/EXPORT HOSTÓW
|
# IMPORT/EXPORT HOSTÓW
|
||||||
# -------------------
|
# -------------------
|
||||||
@ -1193,35 +1184,26 @@ def deploy_user(user_id):
|
|||||||
default_file = HostFile.query.filter_by(user_id=user_id, title="Default Hosts").first()
|
default_file = HostFile.query.filter_by(user_id=user_id, title="Default Hosts").first()
|
||||||
if not default_file:
|
if not default_file:
|
||||||
return
|
return
|
||||||
|
|
||||||
# Pobieramy regex tylko raz – globalnie
|
|
||||||
regex_lines = ""
|
regex_lines = ""
|
||||||
if user_settings and user_settings.regex_deploy_enabled:
|
if user_settings and user_settings.regex_deploy_enabled:
|
||||||
regex_lines = generate_regex_hosts(user_id)
|
regex_lines = generate_regex_hosts(user_id)
|
||||||
|
|
||||||
hosts = Host.query.filter_by(user_id=user_id).all()
|
hosts = Host.query.filter_by(user_id=user_id).all()
|
||||||
for h in hosts:
|
for h in hosts:
|
||||||
if not h.auto_deploy_enabled:
|
if not h.auto_deploy_enabled:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if h.preferred_hostfile_id:
|
if h.preferred_hostfile_id:
|
||||||
chosen_file = HostFile.query.filter_by(id=h.preferred_hostfile_id, user_id=user_id).first()
|
chosen_file = HostFile.query.filter_by(id=h.preferred_hostfile_id, user_id=user_id).first()
|
||||||
if not chosen_file:
|
if not chosen_file:
|
||||||
chosen_file = default_file
|
chosen_file = default_file
|
||||||
else:
|
else:
|
||||||
chosen_file = default_file
|
chosen_file = default_file
|
||||||
|
|
||||||
# Dołączamy regex_lines tylko, jeśli dla hosta nie wyłączono tej opcji
|
|
||||||
final_content = ("" if h.disable_regex_deploy else regex_lines) + chosen_file.content
|
final_content = ("" if h.disable_regex_deploy else regex_lines) + chosen_file.content
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if h.type == 'mikrotik':
|
if h.type == 'mikrotik':
|
||||||
wrapped_content = wrap_mikrotik_content(final_content)
|
wrapped_content = wrap_mikrotik_content(final_content)
|
||||||
deploy_mikrotik(h, wrapped_content)
|
deploy_mikrotik(h, wrapped_content)
|
||||||
db.session.add(DeployLog(
|
log_details = f'[MIKROTIK] Updated {format_host(h)} for user {user_id}'
|
||||||
details=f'[MIKROTIK] Updated {h.hostname} for user {user_id}',
|
db.session.add(DeployLog(details=log_details, user_id=user_id))
|
||||||
user_id=user_id
|
|
||||||
))
|
|
||||||
elif h.use_daemon and h.type == 'linux':
|
elif h.use_daemon and h.type == 'linux':
|
||||||
import requests
|
import requests
|
||||||
adjusted_content = ensure_local_defaults(final_content)
|
adjusted_content = ensure_local_defaults(final_content)
|
||||||
@ -1231,13 +1213,8 @@ def deploy_user(user_id):
|
|||||||
resp = requests.post(url, json={"hosts": wrapped_content}, headers=headers, timeout=10, verify=False)
|
resp = requests.post(url, json={"hosts": wrapped_content}, headers=headers, timeout=10, verify=False)
|
||||||
if resp.status_code != 200:
|
if resp.status_code != 200:
|
||||||
raise Exception(f"Daemon POST error: {resp.status_code} - {resp.text}")
|
raise Exception(f"Daemon POST error: {resp.status_code} - {resp.text}")
|
||||||
|
log_details = f'[LINUX/DAEMON] Updated {format_host(h)} for user {user_id}'
|
||||||
daemon_str = h.daemon_url.split("://")[-1]
|
db.session.add(DeployLog(details=log_details, user_id=user_id))
|
||||||
daemon_ip = daemon_str.split(":")[0]
|
|
||||||
db.session.add(DeployLog(
|
|
||||||
details=f'[LINUX/DAEMON] Updated {h.hostname} (Daemon IP: {daemon_ip}) for user {user_id}',
|
|
||||||
user_id=user_id
|
|
||||||
))
|
|
||||||
else:
|
else:
|
||||||
ssh = open_ssh_connection(h)
|
ssh = open_ssh_connection(h)
|
||||||
adjusted_content = ensure_local_defaults(final_content)
|
adjusted_content = ensure_local_defaults(final_content)
|
||||||
@ -1250,17 +1227,11 @@ def deploy_user(user_id):
|
|||||||
sftp.close()
|
sftp.close()
|
||||||
ssh.close()
|
ssh.close()
|
||||||
os.remove(tmp_file_path)
|
os.remove(tmp_file_path)
|
||||||
db.session.add(DeployLog(
|
log_details = f'[LINUX] Updated {format_host(h)} for user {user_id}'
|
||||||
details=f'[LINUX] Updated {h.hostname} for user {user_id}',
|
db.session.add(DeployLog(details=log_details, user_id=user_id))
|
||||||
user_id=user_id
|
|
||||||
))
|
|
||||||
|
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
db.session.add(DeployLog(
|
db.session.add(DeployLog(details=f'Failed to update {format_host(h)}: {str(e)} for user {user_id}', user_id=user_id))
|
||||||
details=f'Failed to update {h.hostname}: {str(e)} for user {user_id}',
|
|
||||||
user_id=user_id
|
|
||||||
))
|
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
<th>Wybrany plik /etc/hosts</th>
|
<th>Wybrany plik /etc/hosts</th>
|
||||||
<th>Auto Deploy</th>
|
<th>Auto Deploy</th>
|
||||||
<th>Auto Backup</th>
|
<th>Auto Backup</th>
|
||||||
<th>Wyłącz regex deploy</th> <!-- Nowa kolumna -->
|
<th>Wyłącz CIDR/regex deploy</th>
|
||||||
<th>Akcje</th>
|
<th>Akcje</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -37,16 +37,15 @@
|
|||||||
{% for h in hosts %}
|
{% for h in hosts %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ h.id }}</td>
|
<td>{{ h.id }}</td>
|
||||||
<td data-bs-toggle="tooltip" data-bs-placement="top"
|
<td data-bs-toggle="tooltip" data-bs-placement="top" title="{{ h.raw_ip }}">
|
||||||
title="{% if h.use_daemon and h.type == 'linux' and h.daemon_url %}{{ h.resolved_daemon }}{% else %}{{ h.resolved_hostname }}{% endif %}">
|
|
||||||
{% if h.use_daemon and h.type == 'linux' and h.daemon_url %}
|
{% if h.use_daemon and h.type == 'linux' and h.daemon_url %}
|
||||||
{% set daemon_str = h.daemon_url.split('://') | last %}
|
{{ h.resolved_daemon }}
|
||||||
{% set daemon_ip = daemon_str.split(':')[0] %}
|
|
||||||
{{ daemon_ip }}
|
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ h.hostname }}
|
{{ h.resolved_hostname }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
{% if h.use_daemon and h.type == 'linux' %}
|
{% if h.use_daemon and h.type == 'linux' %}
|
||||||
<em>—</em>
|
<em>—</em>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user