From c4b5e703f37c154516e4614063aac6cd6172e313 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Mon, 10 Mar 2025 16:09:28 +0100 Subject: [PATCH] remove dynamic hosts --- app.py | 20 +------------------- templates/local_defaults.html | 2 -- 2 files changed, 1 insertion(+), 21 deletions(-) diff --git a/app.py b/app.py index a34ed0c..50f3fa5 100644 --- a/app.py +++ b/app.py @@ -137,21 +137,9 @@ class LocalDefaultEntry(db.Model): user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False) ip_address = db.Column(db.String(50), nullable=False) hostname = db.Column(db.String(255), nullable=False) - dynamic_variable = db.Column(db.String(255), nullable=True) entry = db.Column(db.Text, nullable=False) # To pole już istnieje - user = db.relationship('User', backref='local_defaults') - def formatted_entry(self, variables={}): - entry_content = f"{self.ip_address} {self.hostname}" - if self.dynamic_variable: - dynamic_content = self.dynamic_variable - for key, value in variables.items(): - placeholder = f"${{{key}}}" - dynamic_content = dynamic_content.replace(placeholder, value) - entry_content += f" {dynamic_content}" - return entry_content - # Funkcje pomocnicze def ensure_local_defaults(content, user_id): default_entries = LocalDefaultEntry.query.filter_by(user_id=user_id).all() @@ -189,10 +177,6 @@ def format_host(host): return f"{resolved_name} ({host.raw_ip})" -def get_user_dynamic_variables(user_id): - user_variables = UserDynamicVariables.query.filter_by(user_id=user_id).all() - variables = {var.variable_name: var.variable_value for var in user_variables} - # Automatyczne dodanie wartości systemowych variables["hostname"] = socket.gethostname() # Nazwa hosta variables["resolved_hostname"] = socket.getfqdn() # Pełna nazwa hosta @@ -1765,11 +1749,9 @@ def local_defaults(): if request.method == 'POST': hostname = request.form.get('hostname', '').strip() ip_address = request.form.get('ip_address', '').strip() - dynamic_variable = request.form.get('dynamic_variable', '').strip() if hostname and ip_address: - entry_content = f"{ip_address} {hostname} {dynamic_variable}".strip() - new_entry = LocalDefaultEntry(user_id=user_id, hostname=hostname, ip_address=ip_address, dynamic_variable=dynamic_variable or None, entry=entry_content) + new_entry = LocalDefaultEntry(user_id=user_id, hostname=hostname, ip_address=ip_address or None, entry=entry_content) db.session.add(new_entry) db.session.commit() flash('Dodano nowy wpis.', 'success') diff --git a/templates/local_defaults.html b/templates/local_defaults.html index d3e598e..25b705b 100644 --- a/templates/local_defaults.html +++ b/templates/local_defaults.html @@ -27,7 +27,6 @@ ID Adres IP Hostname - Zmienna dynamiczna Akcje @@ -37,7 +36,6 @@ {{ e.id }} {{ e.ip_address }} {{ e.hostname }} - {{ e.dynamic_variable or '—' }}