poprawka w format_host

This commit is contained in:
Mateusz Gruszczyński 2025-03-10 14:19:33 +01:00
parent 5f4973bfa4
commit e0f739e9a9

35
app.py
View File

@ -160,34 +160,29 @@ class UserDynamicVariables(db.Model):
user = db.relationship('User', backref='dynamic_variables') user = db.relationship('User', backref='dynamic_variables')
# Funkcje pomocnicze # Funkcje pomocnicze
def get_user_dynamic_variables(user_id): def get_user_dynamic_variables(user_id):
user_variables = UserDynamicVariables.query.filter_by(user_id=user_id).all() user_variables = UserDynamicVariables.query.filter_by(user_id=user_id).all()
return {var.variable_name: var.variable_value for var in user_variables} return {var.variable_name: var.variable_value for var in user_variables}
def ensure_local_defaults(content, user_id): def format_host(host):
default_entries = LocalDefaultEntry.query.filter_by(user_id=user_id).all() resolved_name = None
required_lines = [] # Priorytet dla Linux Daemon
if host.use_daemon and host.type == 'linux' and host.daemon_url:
resolved_name = host.resolved_daemon or host.hostname
for entry in default_entries: # Dla standardowych hostów używamy resolved_hostname
# Sprawdzenie, czy wpis zawiera zarówno IP, jak i hostname if not resolved_name:
if entry.ip_address and entry.hostname: resolved_name = host.resolved_hostname or host.hostname
required_lines.append(f"{entry.ip_address} {entry.hostname}".strip())
# Usuń puste linie i unikaj duplikatów # Jeśli resolved_name nadal jest IP, spróbuj rozwiązać przez DNS
lines = [l.rstrip() for l in content.splitlines() if l.strip()] if resolved_name == host.raw_ip:
lines = [line for line in lines if not any(line.startswith(e.split()[0]) for e in required_lines)] try:
resolved_name = socket.gethostbyaddr(host.raw_ip)[0]
# Dodaj wymagane wpisy na górę listy except (socket.herror, socket.gaierror):
lines = required_lines + lines pass # Jeśli nie można rozwiązać, pozostaw IP
# Połącz w finalny format
final_content = "\n".join(lines) + "\n"
return final_content
return f"{resolved_name} ({host.raw_ip})"
def get_user_dynamic_variables(user_id): def get_user_dynamic_variables(user_id):
user_variables = UserDynamicVariables.query.filter_by(user_id=user_id).all() user_variables = UserDynamicVariables.query.filter_by(user_id=user_id).all()