new options in devices
This commit is contained in:
parent
54b7d62e72
commit
977e969464
24
app.py
24
app.py
@ -731,6 +731,30 @@ def anomalies():
|
|||||||
anomalies = Anomaly.query.join(Device).filter(Device.user_id == current_user.id).order_by(Anomaly.timestamp.desc()).all()
|
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)
|
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
|
# Zamknięcie harmonogramu przy zatrzymaniu aplikacji
|
||||||
|
|
||||||
atexit.register(lambda: scheduler.shutdown())
|
atexit.register(lambda: scheduler.shutdown())
|
||||||
|
@ -2,53 +2,75 @@
|
|||||||
{% block title %}Moje urządzenia - RouterOS Update{% endblock %}
|
{% block title %}Moje urządzenia - RouterOS Update{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h2>Moje urządzenia</h2>
|
<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>
|
<div class="row mb-3">
|
||||||
<table class="table table-bordered table-hover">
|
<div class="col text-end">
|
||||||
<thead class="table-dark">
|
<button type="button" class="btn btn-success" onclick="window.location.href='{{ url_for('add_device') }}'">
|
||||||
<tr>
|
Dodaj nowe urządzenie
|
||||||
<th>Nazwa / Adres IP</th>
|
</button>
|
||||||
<th>Ostatnie sprawdzenie</th>
|
</div>
|
||||||
<th>Status</th>
|
</div>
|
||||||
<th>System / Firmware</th>
|
<form method="POST" action="{{ url_for('update_selected_devices') }}">
|
||||||
<th>Akcje</th>
|
<button type="submit" class="btn btn-primary mb-3">Aktualizuj wybrane</button>
|
||||||
</tr>
|
<table class="table table-bordered table-hover">
|
||||||
</thead>
|
<thead class="table-dark">
|
||||||
<tbody>
|
<tr>
|
||||||
{% for device in devices %}
|
<th><input type="checkbox" id="select-all"></th>
|
||||||
<tr>
|
<th>Nazwa / Adres IP</th>
|
||||||
<td>
|
<th>Ostatnie sprawdzenie</th>
|
||||||
{% if device.name %}
|
<th>Status</th>
|
||||||
{{ device.name }} |
|
<th>System / Firmware</th>
|
||||||
<code><small class="text-muted">{{ device.ip }}</small></code>
|
<th>Akcje</th>
|
||||||
{% else %}
|
</tr>
|
||||||
{{ device.ip }}
|
</thead>
|
||||||
{% endif %}
|
<tbody>
|
||||||
</td>
|
{% for device in devices %}
|
||||||
<td>{{ device.last_check.strftime('%Y-%m-%d %H:%M:%S') if device.last_check else 'Brak' }}</td>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
{% if device.update_required %}
|
<input type="checkbox" name="selected_devices" value="{{ device.id }}">
|
||||||
<span class="badge bg-danger">Wymaga aktualizacji</span>
|
</td>
|
||||||
{% else %}
|
<td>
|
||||||
<span class="badge bg-success">Aktualny</span>
|
{% if device.name %}
|
||||||
{% endif %}
|
{{ device.name }} |
|
||||||
</td>
|
<code><small class="text-muted">{{ device.ip }}</small></code>
|
||||||
<td>
|
{% else %}
|
||||||
<small>
|
{{ device.ip }}
|
||||||
<strong>System:</strong> {{ device.current_version or 'Brak' }}<br>
|
{% endif %}
|
||||||
<strong>Firmware:</strong> {{ device.current_firmware or 'Brak' }}
|
</td>
|
||||||
</small>
|
<td>{{ device.last_check.strftime('%Y-%m-%d %H:%M:%S') if device.last_check else 'Brak' }}</td>
|
||||||
</td>
|
<td>
|
||||||
<td>
|
{% if device.update_required %}
|
||||||
<button type="button" class="btn btn-info btn-sm" onclick="window.location.href='{{ url_for('device_detail', device_id=device.id) }}'">Szczegóły</button>
|
<span class="badge bg-danger">Wymaga aktualizacji</span>
|
||||||
<button type="button" class="btn btn-secondary btn-sm" onclick="window.location.href='{{ url_for('force_check', device_id=device.id) }}'">Wymuś sprawdzenie</button>
|
{% else %}
|
||||||
<button type="button" class="btn btn-warning btn-sm" onclick="window.location.href='{{ url_for('edit_device', device_id=device.id) }}'">Edytuj</button>
|
<span class="badge bg-success">Aktualny</span>
|
||||||
</td>
|
{% endif %}
|
||||||
</tr>
|
</td>
|
||||||
{% else %}
|
<td>
|
||||||
<tr>
|
<small>
|
||||||
<td colspan="5" class="text-center">Brak dodanych urządzeń.</td>
|
<strong>System:</strong> {{ device.current_version or 'Brak' }}<br>
|
||||||
</tr>
|
<strong>Firmware:</strong> {{ device.current_firmware or 'Brak' }}
|
||||||
{% endfor %}
|
</small>
|
||||||
</tbody>
|
</td>
|
||||||
</table>
|
<td>
|
||||||
|
<button type="button" class="btn btn-info btn-sm" onclick="window.location.href='{{ url_for('device_detail', device_id=device.id) }}'">Szczegóły</button>
|
||||||
|
<button type="button" class="btn btn-secondary btn-sm" onclick="window.location.href='{{ url_for('force_check', device_id=device.id) }}'">Wymuś sprawdzenie</button>
|
||||||
|
<button type="button" class="btn btn-warning btn-sm" onclick="window.location.href='{{ url_for('edit_device', device_id=device.id) }}'">Edytuj</button>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
{% else %}
|
||||||
|
<tr>
|
||||||
|
<td colspan="6" class="text-center">Brak dodanych urządzeń.</td>
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</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 %}
|
{% endblock %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user