remove dynamic hosts
This commit is contained in:
parent
52694519d7
commit
c4b5e703f3
20
app.py
20
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')
|
||||
|
@ -27,7 +27,6 @@
|
||||
<th>ID</th>
|
||||
<th>Adres IP</th>
|
||||
<th>Hostname</th>
|
||||
<th>Zmienna dynamiczna</th>
|
||||
<th>Akcje</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -37,7 +36,6 @@
|
||||
<td>{{ e.id }}</td>
|
||||
<td>{{ e.ip_address }}</td>
|
||||
<td>{{ e.hostname }}</td>
|
||||
<td>{{ e.dynamic_variable or '—' }}</td>
|
||||
<td>
|
||||
<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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user