new options in devices

This commit is contained in:
Mateusz Gruszczyński 2025-02-24 14:23:46 +01:00
parent 54b7d62e72
commit 977e969464
2 changed files with 95 additions and 49 deletions

24
app.py
View File

@ -731,6 +731,30 @@ def anomalies():
anomalies = Anomaly.query.join(Device).filter(Device.user_id == current_user.id).order_by(Anomaly.timestamp.desc()).all()
return render_template('anomalies.html', anomalies=anomalies)
@app.route('/devices/update_selected', methods=['POST'])
@login_required
def update_selected_devices():
selected_ids = request.form.getlist('selected_devices')
if not selected_ids:
flash("Nie wybrano żadnych urządzeń.")
return redirect(url_for('devices'))
for device_id in selected_ids:
device = Device.query.get(device_id)
if device and device.user_id == current_user.id:
result, update_available, current_version, current_firmware = check_device_update(device)
device.last_log = result
device.last_check = datetime.utcnow()
device.update_required = update_available
device.current_version = current_version
device.current_firmware = current_firmware
db.session.commit()
# Dodaj log dla aktualizacji
log_entry = Log(message=result, device_id=device.id, user_id=device.user_id)
db.session.add(log_entry)
db.session.commit()
flash("Wybrane urządzenia zostały zaktualizowane.")
return redirect(url_for('devices'))
# Zamknięcie harmonogramu przy zatrzymaniu aplikacji
atexit.register(lambda: scheduler.shutdown())

View File

@ -2,10 +2,19 @@
{% block title %}Moje urządzenia - RouterOS Update{% endblock %}
{% block content %}
<h2>Moje urządzenia</h2>
<button type="button" class="btn btn-success mb-3" onclick="window.location.href='{{ url_for('add_device') }}'">Dodaj nowe urządzenie</button>
<table class="table table-bordered table-hover">
<div class="row mb-3">
<div class="col text-end">
<button type="button" class="btn btn-success" onclick="window.location.href='{{ url_for('add_device') }}'">
Dodaj nowe urządzenie
</button>
</div>
</div>
<form method="POST" action="{{ url_for('update_selected_devices') }}">
<button type="submit" class="btn btn-primary mb-3">Aktualizuj wybrane</button>
<table class="table table-bordered table-hover">
<thead class="table-dark">
<tr>
<th><input type="checkbox" id="select-all"></th>
<th>Nazwa / Adres IP</th>
<th>Ostatnie sprawdzenie</th>
<th>Status</th>
@ -16,6 +25,9 @@
<tbody>
{% for device in devices %}
<tr>
<td>
<input type="checkbox" name="selected_devices" value="{{ device.id }}">
</td>
<td>
{% if device.name %}
{{ device.name }} |
@ -46,9 +58,19 @@
</tr>
{% else %}
<tr>
<td colspan="5" class="text-center">Brak dodanych urządzeń.</td>
<td colspan="6" class="text-center">Brak dodanych urządzeń.</td>
</tr>
{% endfor %}
</tbody>
</table>
</table>
</form>
<script>
// Funkcja "Select all" zaznacza lub odznacza wszystkie checkboxy
document.getElementById('select-all').addEventListener('change', function() {
var checkboxes = document.querySelectorAll('input[name="selected_devices"]');
for (var checkbox of checkboxes) {
checkbox.checked = this.checked;
}
});
</script>
{% endblock %}