remove dynamic hosts

This commit is contained in:
Mateusz Gruszczyński 2025-03-10 16:09:28 +01:00
parent 52694519d7
commit c4b5e703f3
2 changed files with 1 additions and 21 deletions

20
app.py
View File

@ -137,21 +137,9 @@ class LocalDefaultEntry(db.Model):
user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False) user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False)
ip_address = db.Column(db.String(50), nullable=False) ip_address = db.Column(db.String(50), nullable=False)
hostname = db.Column(db.String(255), 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 entry = db.Column(db.Text, nullable=False) # To pole już istnieje
user = db.relationship('User', backref='local_defaults') 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 # Funkcje pomocnicze
def ensure_local_defaults(content, user_id): def ensure_local_defaults(content, user_id):
default_entries = LocalDefaultEntry.query.filter_by(user_id=user_id).all() 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})" 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 # Automatyczne dodanie wartości systemowych
variables["hostname"] = socket.gethostname() # Nazwa hosta variables["hostname"] = socket.gethostname() # Nazwa hosta
variables["resolved_hostname"] = socket.getfqdn() # Pełna nazwa hosta variables["resolved_hostname"] = socket.getfqdn() # Pełna nazwa hosta
@ -1765,11 +1749,9 @@ def local_defaults():
if request.method == 'POST': if request.method == 'POST':
hostname = request.form.get('hostname', '').strip() hostname = request.form.get('hostname', '').strip()
ip_address = request.form.get('ip_address', '').strip() ip_address = request.form.get('ip_address', '').strip()
dynamic_variable = request.form.get('dynamic_variable', '').strip()
if hostname and ip_address: 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 or None, entry=entry_content)
new_entry = LocalDefaultEntry(user_id=user_id, hostname=hostname, ip_address=ip_address, dynamic_variable=dynamic_variable or None, entry=entry_content)
db.session.add(new_entry) db.session.add(new_entry)
db.session.commit() db.session.commit()
flash('Dodano nowy wpis.', 'success') flash('Dodano nowy wpis.', 'success')

View File

@ -27,7 +27,6 @@
<th>ID</th> <th>ID</th>
<th>Adres IP</th> <th>Adres IP</th>
<th>Hostname</th> <th>Hostname</th>
<th>Zmienna dynamiczna</th>
<th>Akcje</th> <th>Akcje</th>
</tr> </tr>
</thead> </thead>
@ -37,7 +36,6 @@
<td>{{ e.id }}</td> <td>{{ e.id }}</td>
<td>{{ e.ip_address }}</td> <td>{{ e.ip_address }}</td>
<td>{{ e.hostname }}</td> <td>{{ e.hostname }}</td>
<td>{{ e.dynamic_variable or '—' }}</td>
<td> <td>
<form method="POST" action="{{ url_for('delete_local_default', entry_id=e.id) }}" onsubmit="return confirm('Usunąć wpis?');"> <form method="POST" action="{{ url_for('delete_local_default', entry_id=e.id) }}" onsubmit="return confirm('Usunąć wpis?');">
<button class="btn btn-danger btn-sm">Usuń</button> <button class="btn btn-danger btn-sm">Usuń</button>