diff --git a/app.py b/app.py index 529130a..f3f8c56 100644 --- a/app.py +++ b/app.py @@ -1296,7 +1296,7 @@ def deploy_mikrotik(host, hosts_content): exported = stdout.read().decode('utf-8').splitlines() existing_dns = {} - # Przetwarzamy aktualne wpisy z urządzenia + # Parsujemy aktualne wpisy z urządzenia (format: "add address=... name=...") for line in exported: line = line.strip() if not line.startswith('add '): @@ -1314,26 +1314,39 @@ def deploy_mikrotik(host, hosts_content): existing_dns[name_val] = address_val desired_dns = {} - # Parsujemy zawartość backupu w taki sam sposób jak wpisy aktualne + # Parsujemy zawartość backupu/wdrażaną treść – obsługujemy dwa formaty: + # 1. Format z tokenami ("add address=... name=...") + # 2. Prosty format ("ip hostname") for line in hosts_content.splitlines(): line = line.strip() if not line: continue - if line.startswith('add '): - line = line[4:].strip() # usuwamy "add " + # Pomijamy linie nagłówkowe/stopowe if line.startswith('#') or 'Auto-hosts_upload:' in line or 'End_of_auto-hosts_upload:' in line: continue - parts = line.split() - address_val = None - name_val = None - for part in parts: - if part.startswith('address='): - address_val = part.replace('address=', '') - elif part.startswith('name='): - name_val = part.replace('name=', '') - if address_val and name_val: - desired_dns[name_val] = address_val + if "address=" in line and "name=" in line: + # Format: "add address=... name=..." + # Jeśli linia zaczyna się od "add ", usuńmy go, choć może już być usunięty + if line.startswith('add '): + line = line[4:].strip() + parts = line.split() + address_val = None + name_val = None + for part in parts: + if part.startswith('address='): + address_val = part.replace('address=', '') + elif part.startswith('name='): + name_val = part.replace('name=', '') + if address_val and name_val: + desired_dns[name_val] = address_val + else: + # Zakładamy prosty format: "ip hostname" (przynajmniej dwa tokeny) + parts = line.split() + if len(parts) >= 2: + ip = parts[0] + hostname = parts[1] + desired_dns[hostname] = ip # Dodajemy lub aktualizujemy wpisy, a zbędne usuwamy for name_val, ip_val in desired_dns.items(): @@ -1354,7 +1367,6 @@ def deploy_mikrotik(host, hosts_content): ssh.close() - @app.route('/deploy-now') def deploy_now(): if 'user_id' not in session: