Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a9af17c7ce | |||
| 386ecd4409 | |||
| f7c113b760 | |||
| f35f0d6908 | |||
| a577c7bda7 | |||
| b37e630cde | |||
| aa0f7c68bd | |||
| 68596b6939 | |||
| 8dbdcaff56 | |||
| 622e257145 | |||
| 7e66dad7e7 | |||
| 69fb566e8a | |||
| 3e993f65e6 | |||
| 3cffa4f601 | |||
| adc484cc26 | |||
| c99e61ac45 | |||
| e1e488f723 | |||
| 0562aee04b | |||
| b1c104f36c | |||
| 5afe05b2d2 | |||
| 7207fef0d4 | |||
| 3f9fae10af |
@@ -1,11 +0,0 @@
|
|||||||
NUITKA_BUILD=0
|
|
||||||
INVENTAR_HTTP_PORT=10000
|
|
||||||
INVENTAR_HTTP_PORTS=10000
|
|
||||||
INVENTAR_APP_IMAGE=ghcr.io/aiirondev/legendary-octo-garbanzo:v0.7.42
|
|
||||||
INVENTAR_APP_CPUS=1.0
|
|
||||||
INVENTAR_APP_MEM_LIMIT=384m
|
|
||||||
INVENTAR_APP_MEM_SWAP_LIMIT=768m
|
|
||||||
INVENTAR_WORKERS=4
|
|
||||||
INVENTAR_THREADS=2
|
|
||||||
INVENTAR_WORKER_TIMEOUT=30
|
|
||||||
INVENTAR_WORKER_CONNECTIONS=100
|
|
||||||
@@ -118,14 +118,14 @@ jobs:
|
|||||||
echo "tag=$TAG" >> "$GITHUB_OUTPUT"
|
echo "tag=$TAG" >> "$GITHUB_OUTPUT"
|
||||||
echo "image=$IMAGE" >> "$GITHUB_OUTPUT"
|
echo "image=$IMAGE" >> "$GITHUB_OUTPUT"
|
||||||
echo "lower_repo=$LOWER_REPO" >> "$GITHUB_OUTPUT"
|
echo "lower_repo=$LOWER_REPO" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Ensure Docker CLI is available and up to date
|
- name: Ensure Docker CLI is available and up to date
|
||||||
run: |
|
run: |
|
||||||
install_docker=true
|
install_docker=true
|
||||||
|
|
||||||
# Prüfen, ob Docker existiert und ob die Version ausreicht
|
# Prüfen, ob Docker existiert und ob die Version ausreicht
|
||||||
if command -v docker >/dev/null 2>&1; then
|
if command -v docker >/dev/null 2>&1; then
|
||||||
# Extrahiere die Major-Version (z. B. "20" aus "20.10.24" oder "26" aus "26.1.0")
|
# Extrahiere die Major-Version
|
||||||
DOCKER_MAJOR=$(docker --version | grep -oE '[0-9]+' | head -n1)
|
DOCKER_MAJOR=$(docker --version | grep -oE '[0-9]+' | head -n1)
|
||||||
|
|
||||||
# API 1.44 erfordert mindestens Docker v25
|
# API 1.44 erfordert mindestens Docker v25
|
||||||
@@ -135,19 +135,31 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$install_docker" = true ]; then
|
if [ "$install_docker" = true ]; then
|
||||||
echo "Veraltete oder fehlende Docker-Installation erkannt. Führe Update durch..."
|
echo "Veraltete oder fehlende Docker-Installation erkannt. Lade statische Docker CLI herunter..."
|
||||||
if command -v apt-get >/dev/null 2>&1; then
|
|
||||||
apt-get update
|
DOCKER_VERSION="26.1.4"
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get install -y curl
|
|
||||||
# Nutzt das offizielle Docker-Skript (installiert docker-ce statt das alte docker.io)
|
# Download der statischen Binaries via curl oder wget (umgeht apt-get komplett)
|
||||||
curl -fsSL https://get.docker.com | sh
|
if command -v curl >/dev/null 2>&1; then
|
||||||
elif command -v apk >/dev/null 2>&1; then
|
curl -fsSLO "https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz"
|
||||||
apk update
|
|
||||||
apk add --no-cache docker-cli
|
|
||||||
else
|
else
|
||||||
echo "Error: no supported package manager found to install docker"
|
wget -q "https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz"
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
tar -xzf docker-${DOCKER_VERSION}.tgz
|
||||||
|
|
||||||
|
# Installation in lokalen Benutzer-Pfad, um sudo/root-Rechte-Probleme zu vermeiden
|
||||||
|
mkdir -p "$HOME/.local/bin"
|
||||||
|
cp docker/docker "$HOME/.local/bin/"
|
||||||
|
|
||||||
|
# Pfad für nachfolgende GitHub Actions Schritte verfügbar machen
|
||||||
|
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
|
||||||
|
|
||||||
|
# Pfad für diesen spezifischen Shell-Run exportieren
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
|
||||||
|
rm -rf docker docker-${DOCKER_VERSION}.tgz
|
||||||
|
echo "Docker CLI wurde erfolgreich aktualisiert."
|
||||||
else
|
else
|
||||||
echo "Docker CLI ist bereits auf einem aktuellen Stand."
|
echo "Docker CLI ist bereits auf einem aktuellen Stand."
|
||||||
fi
|
fi
|
||||||
@@ -256,7 +268,7 @@ jobs:
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Copy runtime scripts and config if present
|
# Copy runtime scripts and config if present
|
||||||
for f in start.sh stop.sh restart.sh backup.sh config.json update.sh; do
|
for f in start.sh stop.sh restart.sh backup.sh restore.sh config.json update.sh; do
|
||||||
if [ -f "$f" ]; then
|
if [ -f "$f" ]; then
|
||||||
cp "$f" "release-bundle/$(basename "$f")"
|
cp "$f" "release-bundle/$(basename "$f")"
|
||||||
fi
|
fi
|
||||||
|
|||||||
+411
-218
File diff suppressed because it is too large
Load Diff
@@ -323,7 +323,8 @@ def get_effective_permissions(username):
|
|||||||
if bool(user.get('Admin', False)):
|
if bool(user.get('Admin', False)):
|
||||||
return build_default_permission_payload('full_access')
|
return build_default_permission_payload('full_access')
|
||||||
|
|
||||||
preset_key = user.get('PermissionPreset') or 'standard_user'
|
preset_key = user.get('PermissionPreset')
|
||||||
|
print(preset_key)
|
||||||
payload = build_default_permission_payload(preset_key)
|
payload = build_default_permission_payload(preset_key)
|
||||||
payload['actions'] = _normalize_bool_map(user.get('ActionPermissions', {}), payload['actions'])
|
payload['actions'] = _normalize_bool_map(user.get('ActionPermissions', {}), payload['actions'])
|
||||||
payload['pages'] = _normalize_bool_map(user.get('PagePermissions', {}), payload['pages'])
|
payload['pages'] = _normalize_bool_map(user.get('PagePermissions', {}), payload['pages'])
|
||||||
@@ -552,10 +553,15 @@ def add_user(
|
|||||||
for key, value in page_permissions.items():
|
for key, value in page_permissions.items():
|
||||||
permission_defaults['pages'][str(key)] = bool(value)
|
permission_defaults['pages'][str(key)] = bool(value)
|
||||||
|
|
||||||
|
if permission_preset == "full_access":
|
||||||
|
can_admin_preset_based = True
|
||||||
|
else:
|
||||||
|
can_admin_preset_based = False
|
||||||
|
|
||||||
user_doc = {
|
user_doc = {
|
||||||
'Username': username,
|
'Username': username,
|
||||||
'Password': hashing(password),
|
'Password': hashing(password),
|
||||||
'Admin': False,
|
'Admin': can_admin_preset_based,
|
||||||
'active_ausleihung': None,
|
'active_ausleihung': None,
|
||||||
'name': name.strip() if name else '',
|
'name': name.strip() if name else '',
|
||||||
'last_name': last_name.strip() if last_name else '',
|
'last_name': last_name.strip() if last_name else '',
|
||||||
|
|||||||
+173
-70
@@ -1130,7 +1130,7 @@
|
|||||||
<li class="nav-item" data-nav-fixed="true">
|
<li class="nav-item" data-nav-fixed="true">
|
||||||
<a class="nav-link {% if current_path == url_for('terminplan') %}nav-active{% endif %}" href="{{ url_for('terminplan') }}" data-tutorial-tip="Hier sehen Sie den Kalender mit den bestehenden Terminen.">Kalender</a>
|
<a class="nav-link {% if current_path == url_for('terminplan') %}nav-active{% endif %}" href="{{ url_for('terminplan') }}" data-tutorial-tip="Hier sehen Sie den Kalender mit den bestehenden Terminen.">Kalender</a>
|
||||||
</li>
|
</li>
|
||||||
{% if current_permissions.pages.get('terminplan', True) and current_permissions.actions.get('can_insert', True) %}
|
{% if current_permissions.pages.get('terminplan', False) and current_permissions.actions.get('can_insert', False) %}
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link quick-link-pill {% if current_path == url_for('terminplaner.configure') %}nav-active{% endif %}" href="{{ url_for('terminplaner.configure') }}" data-tutorial-tip="Neuen Terminplan erstellen und an Ihr Team versenden.">Neue Planung</a>
|
<a class="nav-link quick-link-pill {% if current_path == url_for('terminplaner.configure') %}nav-active{% endif %}" href="{{ url_for('terminplaner.configure') }}" data-tutorial-tip="Neuen Terminplan erstellen und an Ihr Team versenden.">Neue Planung</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -1145,20 +1145,22 @@
|
|||||||
<a class="nav-link dropdown-toggle" href="#" id="termMoreDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false" title="Weitere Optionen">Mehr Optionen</a>
|
<a class="nav-link dropdown-toggle" href="#" id="termMoreDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false" title="Weitere Optionen">Mehr Optionen</a>
|
||||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="termMoreDropdown">
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="termMoreDropdown">
|
||||||
{% if 'username' in session %}
|
{% if 'username' in session %}
|
||||||
{% if current_permissions.pages.get('tutorial_page', True) %}
|
{% if current_permissions.pages.get('tutorial_page', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('tutorial_page') }}">Tutorial</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('tutorial_page') }}">Tutorial</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if current_permissions.pages.get('admin_school_settings', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('admin_school_settings') }}">Schulstammdaten</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('admin_school_settings') }}">Schulstammdaten</a></li>
|
||||||
{% if current_permissions.actions.get('can_view_logs', True) and current_permissions.pages.get('admin_audit_dashboard', True) %}
|
{% endif %}
|
||||||
|
{% if current_permissions.actions.get('can_view_logs', False) or current_permissions.pages.get('admin_audit_dashboard', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('admin_audit_dashboard') }}">Audit Dashboard</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('admin_audit_dashboard') }}">Audit Dashboard</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><hr class="dropdown-divider"></li>
|
<li><hr class="dropdown-divider"></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if current_permissions.pages.get('home', True) %}
|
{% if current_permissions.pages.get('home', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('home') }}">Inventarsystem</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('home') }}">Inventarsystem</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if current_permissions.pages.get('library_view', True) and library_module_enabled %}
|
{% if current_permissions.pages.get('library_view', False) and library_module_enabled %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('library_view') }}">Bibliothek</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('library_view') }}">Bibliothek</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><hr class="dropdown-divider"></li>
|
<li><hr class="dropdown-divider"></li>
|
||||||
@@ -1191,7 +1193,7 @@
|
|||||||
<span class="user-notification-dot {% if unread_notification_count and unread_notification_count > 0 %}visible{% endif %}" aria-hidden="true"></span>
|
<span class="user-notification-dot {% if unread_notification_count and unread_notification_count > 0 %}visible{% endif %}" aria-hidden="true"></span>
|
||||||
</button>
|
</button>
|
||||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="invUserMenuDropdown">
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="invUserMenuDropdown">
|
||||||
{% if current_permissions.pages.get('notifications_view', True) %}
|
{% if current_permissions.pages.get('notifications_view', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('notifications_view') }}">Benachrichtigungen</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('notifications_view') }}">Benachrichtigungen</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><hr class="dropdown-divider"></li>
|
<li><hr class="dropdown-divider"></li>
|
||||||
@@ -1214,13 +1216,13 @@
|
|||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="inventoryNavContent">
|
<div class="collapse navbar-collapse" id="inventoryNavContent">
|
||||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0" id="inventoryNavList">
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0" id="inventoryNavList">
|
||||||
{% if current_permissions.pages.get('home', True) %}
|
{% if current_permissions.pages.get('home', False) %}
|
||||||
<li class="nav-item" data-nav-fixed="true">
|
<li class="nav-item" data-nav-fixed="true">
|
||||||
<a class="nav-link {% if current_path == url_for('home') %}nav-active{% endif %}" href="{{ url_for('home') }}" data-tutorial-tip="Starten Sie hier mit dem Materialbestand und suchen Sie nach Artikeln.">Artikel</a>
|
<a class="nav-link {% if current_path == url_for('home') %}nav-active{% endif %}" href="{{ url_for('home') }}" data-tutorial-tip="Starten Sie hier mit dem Materialbestand und suchen Sie nach Artikeln.">Artikel</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if 'username' in session %}
|
{% if 'username' in session %}
|
||||||
{% if current_permissions.pages.get('my_borrowed_items', True) %}
|
{% if current_permissions.pages.get('my_borrowed_items', False) %}
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link quick-link-pill {% if current_path == url_for('my_borrowed_items') %}nav-active{% endif %}" href="{{ url_for('my_borrowed_items') }}" data-tutorial-tip="Ihre aktuellen Ausleihen und Rückgaben finden Sie hier.">Meine Ausleihen</a>
|
<a class="nav-link quick-link-pill {% if current_path == url_for('my_borrowed_items') %}nav-active{% endif %}" href="{{ url_for('my_borrowed_items') }}" data-tutorial-tip="Ihre aktuellen Ausleihen und Rückgaben finden Sie hier.">Meine Ausleihen</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -1239,42 +1241,44 @@
|
|||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="invMoreDropdown">
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="invMoreDropdown">
|
||||||
{% if 'username' in session %}
|
{% if 'username' in session %}
|
||||||
{% if current_permissions.pages.get('tutorial_page', True) %}
|
{% if current_permissions.pages.get('tutorial_page', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('tutorial_page') }}">Tutorial</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('tutorial_page') }}">Tutorial</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if current_permissions.pages.get('upload_admin', True) and current_permissions.actions.get('can_insert', True) %}
|
{% if current_permissions.pages.get('upload_admin', False) and current_permissions.actions.get('can_insert', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('upload_admin') }}">➕ Hochladen</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('upload_admin') }}">➕ Hochladen</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><hr class="dropdown-divider"></li>
|
<li><hr class="dropdown-divider"></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if 'username' in session and (session.get('admin', False) or is_admin) and current_permissions.actions.get('can_manage_settings', True) %}
|
{% if 'username' in session and current_permissions.actions.get('can_manage_settings', False) %}
|
||||||
<li><h6 class="dropdown-header">Verwaltung</h6></li>
|
<li><h6 class="dropdown-header">Verwaltung</h6></li>
|
||||||
{% if current_permissions.pages.get('manage_filters', True) %}
|
{% if current_permissions.pages.get('manage_filters', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('manage_filters') }}">Filter verwalten</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('manage_filters') }}">Filter verwalten</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if current_permissions.pages.get('manage_locations', True) %}
|
{% if current_permissions.pages.get('manage_locations', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('manage_locations') }}">Orte verwalten</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('manage_locations') }}">Orte verwalten</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if current_permissions.pages.get('admin_school_settings', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('admin_school_settings') }}">Schulstammdaten</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('admin_school_settings') }}">Schulstammdaten</a></li>
|
||||||
{% if current_permissions.pages.get('admin_borrowings', True) %}
|
{% endif %}
|
||||||
|
{% if current_permissions.pages.get('admin_borrowings', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('admin_borrowings') }}">Ausleihen</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('admin_borrowings') }}">Ausleihen</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if current_permissions.pages.get('admin_damaged_items', True) %}
|
{% if current_permissions.pages.get('admin_damaged_items', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('admin_damaged_items') }}">Defekte Items</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('admin_damaged_items') }}">Defekte Items</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if current_permissions.actions.get('can_view_logs', True) and current_permissions.pages.get('admin_audit_dashboard', True) %}
|
{% if current_permissions.actions.get('can_view_logs', False) and current_permissions.pages.get('admin_audit_dashboard', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('admin_audit_dashboard') }}">Audit Dashboard</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('admin_audit_dashboard') }}">Audit Dashboard</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if current_permissions.actions.get('can_view_logs', True) and current_permissions.pages.get('logs', True) %}
|
{% if current_permissions.actions.get('can_view_logs', False) and current_permissions.pages.get('logs', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('logs') }}">Logs</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('logs') }}">Logs</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><hr class="dropdown-divider"></li>
|
<li><hr class="dropdown-divider"></li>
|
||||||
{% if current_permissions.actions.get('can_manage_users', True) %}
|
{% if current_permissions.actions.get('can_manage_users', False) %}
|
||||||
<li><h6 class="dropdown-header">System</h6></li>
|
<li><h6 class="dropdown-header">System</h6></li>
|
||||||
{% if current_permissions.pages.get('user_del', True) %}
|
{% if current_permissions.pages.get('user_del', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('user_del') }}">Benutzer verwalten</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('user_del') }}">Benutzer verwalten</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if current_permissions.pages.get('register', True) %}
|
{% if current_permissions.pages.get('register', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('register') }}">Neuer Benutzer</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('register') }}">Neuer Benutzer</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><hr class="dropdown-divider"></li>
|
<li><hr class="dropdown-divider"></li>
|
||||||
@@ -1311,7 +1315,7 @@
|
|||||||
<span class="user-notification-dot {% if unread_notification_count and unread_notification_count > 0 %}visible{% endif %}" aria-hidden="true"></span>
|
<span class="user-notification-dot {% if unread_notification_count and unread_notification_count > 0 %}visible{% endif %}" aria-hidden="true"></span>
|
||||||
</button>
|
</button>
|
||||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="invUserMenuDropdown">
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="invUserMenuDropdown">
|
||||||
{% if current_permissions.pages.get('notifications_view', True) %}
|
{% if current_permissions.pages.get('notifications_view', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('notifications_view') }}">Benachrichtigungen</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('notifications_view') }}">Benachrichtigungen</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><hr class="dropdown-divider"></li>
|
<li><hr class="dropdown-divider"></li>
|
||||||
@@ -1336,19 +1340,19 @@
|
|||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="libraryNavContent">
|
<div class="collapse navbar-collapse" id="libraryNavContent">
|
||||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0" id="libraryNavList">
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0" id="libraryNavList">
|
||||||
{% if current_permissions.pages.get('library_view', True) %}
|
{% if current_permissions.pages.get('library_view', False) %}
|
||||||
<li class="nav-item" data-nav-fixed="true">
|
<li class="nav-item" data-nav-fixed="true">
|
||||||
<a class="nav-link {% if current_path == url_for('library_view') %}nav-active{% endif %}" href="{{ url_for('library_view') }}" data-tutorial-tip="Die Bibliothek zeigt Ihnen alle Medien und verfügbaren Bücher.">Medien</a>
|
<a class="nav-link {% if current_path == url_for('library_view') %}nav-active{% endif %}" href="{{ url_for('library_view') }}" data-tutorial-tip="Die Bibliothek zeigt Ihnen alle Medien und verfügbaren Bücher.">Medien</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if 'username' in session %}
|
{% if 'username' in session %}
|
||||||
{% if current_permissions.pages.get('tutorial_page', True) %}
|
{% if current_permissions.pages.get('tutorial_page', False) %}
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link quick-link-pill {% if current_path == url_for('tutorial_page') %}nav-active{% endif %}" href="{{ url_for('tutorial_page') }}" data-tutorial-tip="Nutzen Sie das Tutorial, um die Bibliotheksfunktionen kennenzulernen.">Tutorial</a>
|
<a class="nav-link quick-link-pill {% if current_path == url_for('tutorial_page') %}nav-active{% endif %}" href="{{ url_for('tutorial_page') }}" data-tutorial-tip="Nutzen Sie das Tutorial, um die Bibliotheksfunktionen kennenzulernen.">Tutorial</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if 'username' in session and current_permissions.actions.get('can_insert', True) and current_permissions.pages.get('library_admin', True) %}
|
{% if 'username' in session and current_permissions.actions.get('can_insert', False) and current_permissions.pages.get('library_admin', False) %}
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link nav-priority-link {% if current_path == url_for('library_admin') %}nav-active{% endif %}" href="{{ url_for('library_admin') }}" data-tutorial-tip="Neue Bibliotheksmedien können hier aufgenommen werden.">📖 Hochladen</a>
|
<a class="nav-link nav-priority-link {% if current_path == url_for('library_admin') %}nav-active{% endif %}" href="{{ url_for('library_admin') }}" data-tutorial-tip="Neue Bibliotheksmedien können hier aufgenommen werden.">📖 Hochladen</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -1365,22 +1369,24 @@
|
|||||||
Mehr Optionen
|
Mehr Optionen
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="libMoreDropdown">
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="libMoreDropdown">
|
||||||
{% if 'username' in session and (session.get('admin', False) or is_admin) and current_permissions.actions.get('can_manage_settings', True) %}
|
{% if 'username' in session and current_permissions.actions.get('can_manage_settings', False) %}
|
||||||
<li><h6 class="dropdown-header">Bibliotheks-Verwaltung</h6></li>
|
<li><h6 class="dropdown-header">Bibliotheks-Verwaltung</h6></li>
|
||||||
{% if current_permissions.pages.get('library_loans_admin', True) %}
|
{% if current_permissions.pages.get('library_loans_admin', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('library_loans_admin') }}">Ausleihen / Defekte Items</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('library_loans_admin') }}">Ausleihen / Defekte Items</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if student_cards_module_enabled %}
|
{% if student_cards_module_enabled %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('student_cards_admin') }}">Bibliotheksausweis</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('student_cards_admin') }}">Bibliotheksausweis</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if current_permissions.pages.get('admin_school_settings', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('admin_school_settings') }}">Schulstammdaten</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('admin_school_settings') }}">Schulstammdaten</a></li>
|
||||||
|
{% endif %}
|
||||||
<li><hr class="dropdown-divider"></li>
|
<li><hr class="dropdown-divider"></li>
|
||||||
{% if current_permissions.actions.get('can_manage_users', True) %}
|
{% if current_permissions.actions.get('can_manage_users', False) %}
|
||||||
<li><h6 class="dropdown-header">System</h6></li>
|
<li><h6 class="dropdown-header">System</h6></li>
|
||||||
{% if current_permissions.pages.get('user_del', True) %}
|
{% if current_permissions.pages.get('user_del', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('user_del') }}">Benutzer verwalten</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('user_del') }}">Benutzer verwalten</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if current_permissions.pages.get('register', True) %}
|
{% if current_permissions.pages.get('register', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('register') }}">Neuer Benutzer</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('register') }}">Neuer Benutzer</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><hr class="dropdown-divider"></li>
|
<li><hr class="dropdown-divider"></li>
|
||||||
@@ -1414,7 +1420,7 @@
|
|||||||
<span class="user-notification-dot {% if unread_notification_count and unread_notification_count > 0 %}visible{% endif %}" aria-hidden="true"></span>
|
<span class="user-notification-dot {% if unread_notification_count and unread_notification_count > 0 %}visible{% endif %}" aria-hidden="true"></span>
|
||||||
</button>
|
</button>
|
||||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="libUserMenuDropdown">
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="libUserMenuDropdown">
|
||||||
{% if current_permissions.pages.get('notifications_view', True) %}
|
{% if current_permissions.pages.get('notifications_view', False) %}
|
||||||
<li><a class="dropdown-item" href="{{ url_for('notifications_view') }}">Benachrichtigungen</a></li>
|
<li><a class="dropdown-item" href="{{ url_for('notifications_view') }}">Benachrichtigungen</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><hr class="dropdown-divider"></li>
|
<li><hr class="dropdown-divider"></li>
|
||||||
@@ -1642,30 +1648,79 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<datalist id="function-search-options">
|
<datalist id="function-search-options">
|
||||||
|
{% if current_permissions.pages.get('home', False) %}
|
||||||
<option value="Artikel"></option>
|
<option value="Artikel"></option>
|
||||||
<option value="Meine Ausleihen"></option>
|
{% endif %}
|
||||||
<option value="Benachrichtigungen"></option>
|
|
||||||
<option value="Tutorial"></option>
|
{% if 'username' in session %}
|
||||||
|
{% if current_permissions.pages.get('my_borrowed_items', False) %}
|
||||||
|
<option value="Meine Ausleihen"></option>
|
||||||
|
{% endif %}
|
||||||
|
{% if current_permissions.pages.get('notifications_view', False) %}
|
||||||
|
<option value="Benachrichtigungen"></option>
|
||||||
|
{% endif %}
|
||||||
|
{% if current_permissions.pages.get('tutorial_page', False) %}
|
||||||
|
<option value="Tutorial"></option>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<option value="Impressum"></option>
|
<option value="Impressum"></option>
|
||||||
<option value="Lizenz"></option>
|
<option value="Lizenz"></option>
|
||||||
|
|
||||||
{% if library_module_enabled %}
|
{% if library_module_enabled %}
|
||||||
<option value="Bibliothek"></option>
|
{% if current_permissions.pages.get('library_view', False) %}
|
||||||
<option value="Meine Medien"></option>
|
<option value="Bibliothek"></option>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if 'username' in session and (session.get('admin', False) or is_admin) %}
|
{% if 'username' in session and current_permissions.pages.get('my_borrowed_items', False) %}
|
||||||
<option value="Hochladen"></option>
|
<option value="Meine Medien"></option>
|
||||||
<option value="Ausleihen Verwaltung"></option>
|
{% endif %}
|
||||||
<option value="Defekte Items"></option>
|
|
||||||
<option value="Filter verwalten"></option>
|
|
||||||
<option value="Orte verwalten"></option>
|
|
||||||
<option value="Schulstammdaten"></option>
|
|
||||||
<option value="Audit Dashboard"></option>
|
|
||||||
<option value="Logs"></option>
|
|
||||||
<option value="Benutzer verwalten"></option>
|
|
||||||
<option value="Neuer Benutzer"></option>
|
|
||||||
{% if student_cards_module_enabled %}
|
|
||||||
<option value="Bibliotheksausweis"></option>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if 'username' in session %}
|
||||||
|
{% if current_permissions.pages.get('upload_admin', False) and current_permissions.actions.get('can_insert', False) %}
|
||||||
|
<option value="Hochladen"></option>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.pages.get('admin_borrowings', False) or current_permissions.pages.get('library_loans_admin', False) %}
|
||||||
|
<option value="Ausleihen Verwaltung"></option>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.pages.get('admin_damaged_items', False) or current_permissions.pages.get('library_loans_admin', False) %}
|
||||||
|
<option value="Defekte Items"></option>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.pages.get('manage_filters', False) %}
|
||||||
|
<option value="Filter verwalten"></option>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.pages.get('manage_locations', False) %}
|
||||||
|
<option value="Orte verwalten"></option>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.pages.get('admin_school_settings', False) %}
|
||||||
|
<option value="Schulstammdaten"></option>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.actions.get('can_view_logs', False) and current_permissions.pages.get('admin_audit_dashboard', False) %}
|
||||||
|
<option value="Audit Dashboard"></option>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.actions.get('can_view_logs', False) and current_permissions.pages.get('logs', False) %}
|
||||||
|
<option value="Logs"></option>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.actions.get('can_manage_users', False) %}
|
||||||
|
{% if current_permissions.pages.get('user_del', False) %}
|
||||||
|
<option value="Benutzer verwalten"></option>
|
||||||
|
{% endif %}
|
||||||
|
{% if current_permissions.pages.get('register', False) %}
|
||||||
|
<option value="Neuer Benutzer"></option>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if student_cards_module_enabled and current_permissions.pages.get('student_cards_admin', False) %}
|
||||||
|
<option value="Bibliotheksausweis"></option>
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</datalist>
|
</datalist>
|
||||||
|
|
||||||
@@ -1713,32 +1768,80 @@
|
|||||||
const loginHintKey = username ? ('inventarsystem_notification_login_hint_v1_' + username) : null;
|
const loginHintKey = username ? ('inventarsystem_notification_login_hint_v1_' + username) : null;
|
||||||
|
|
||||||
const functionSearchEntries = [
|
const functionSearchEntries = [
|
||||||
|
{% if current_permissions.pages.get('home', False) %}
|
||||||
{ label: 'Artikel', keywords: ['artikel', 'inventar', 'home'], url: {{ url_for('home')|tojson }} },
|
{ label: 'Artikel', keywords: ['artikel', 'inventar', 'home'], url: {{ url_for('home')|tojson }} },
|
||||||
{ label: 'Meine Ausleihen', keywords: ['meine ausleihen', 'ausleihen', 'borrowed'], url: {{ url_for('my_borrowed_items')|tojson }} },
|
{% endif %}
|
||||||
{ label: 'Benachrichtigungen', keywords: ['benachrichtigungen', 'nachrichten', 'notifications'], url: {{ url_for('notifications_view')|tojson }} },
|
|
||||||
{ label: 'Tutorial', keywords: ['tutorial', 'hilfe', 'anleitung'], url: {{ url_for('tutorial_page')|tojson }} },
|
{% if 'username' in session %}
|
||||||
|
{% if current_permissions.pages.get('my_borrowed_items', False) %}
|
||||||
|
{ label: 'Meine Ausleihen', keywords: ['meine ausleihen', 'ausleihen', 'borrowed'], url: {{ url_for('my_borrowed_items')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
{% if current_permissions.pages.get('notifications_view', False) %}
|
||||||
|
{ label: 'Benachrichtigungen', keywords: ['benachrichtigungen', 'nachrichten', 'notifications'], url: {{ url_for('notifications_view')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
{% if current_permissions.pages.get('tutorial_page', False) %}
|
||||||
|
{ label: 'Tutorial', keywords: ['tutorial', 'hilfe', 'anleitung'], url: {{ url_for('tutorial_page')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{ label: 'Impressum', keywords: ['impressum'], url: {{ url_for('impressum')|tojson }} },
|
{ label: 'Impressum', keywords: ['impressum'], url: {{ url_for('impressum')|tojson }} },
|
||||||
{ label: 'Lizenz', keywords: ['lizenz', 'license'], url: {{ url_for('license')|tojson }} },
|
{ label: 'Lizenz', keywords: ['lizenz', 'license'], url: {{ url_for('license')|tojson }} },
|
||||||
|
|
||||||
{% if library_module_enabled %}
|
{% if library_module_enabled %}
|
||||||
{ label: 'Bibliothek', keywords: ['bibliothek', 'medien'], url: {{ url_for('library_view')|tojson }} },
|
{% if current_permissions.pages.get('library_view', False) %}
|
||||||
{% endif %}
|
{ label: 'Bibliothek', keywords: ['bibliothek', 'medien'], url: {{ url_for('library_view')|tojson }} },
|
||||||
{% if 'username' in session and (session.get('admin', False) or is_admin) %}
|
{% endif %}
|
||||||
{ label: 'Hochladen', keywords: ['hochladen', 'upload'], url: {{ url_for('upload_admin')|tojson }} },
|
|
||||||
{ label: 'Ausleihen Verwaltung', keywords: ['ausleihen verwaltung', 'admin borrowings'], url: {{ url_for('admin_borrowings')|tojson }} },
|
|
||||||
{ label: 'Defekte Items', keywords: ['defekte items', 'defekt', 'schaden'], url: {{ url_for('admin_damaged_items')|tojson }} },
|
|
||||||
{ label: 'Filter verwalten', keywords: ['filter verwalten', 'filter'], url: {{ url_for('manage_filters')|tojson }} },
|
|
||||||
{ label: 'Orte verwalten', keywords: ['orte verwalten', 'orte', 'location'], url: {{ url_for('manage_locations')|tojson }} },
|
|
||||||
{ label: 'Schulstammdaten', keywords: ['schule', 'settings', 'stammdaten', 'school settings'], url: {{ url_for('admin_school_settings')|tojson }} },
|
|
||||||
{ label: 'Audit Dashboard', keywords: ['audit', 'audit dashboard'], url: {{ url_for('admin_audit_dashboard')|tojson }} },
|
|
||||||
{ label: 'Logs', keywords: ['logs', 'protokoll'], url: {{ url_for('logs')|tojson }} },
|
|
||||||
{ label: 'Benutzer verwalten', keywords: ['benutzer verwalten', 'user'], url: {{ url_for('user_del')|tojson }} },
|
|
||||||
{ label: 'Neuer Benutzer', keywords: ['neuer benutzer', 'register'], url: {{ url_for('register')|tojson }} },
|
|
||||||
{% if library_module_enabled %}
|
|
||||||
{ label: 'Bibliotheks-Ausleihen', keywords: ['bibliotheks ausleihen', 'library loans'], url: {{ url_for('library_loans_admin')|tojson }} },
|
|
||||||
{% endif %}
|
|
||||||
{% if student_cards_module_enabled %}
|
|
||||||
{ label: 'Bibliotheksausweis', keywords: ['bibliotheksausweis', 'student card'], url: {{ url_for('student_cards_admin')|tojson }} },
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if 'username' in session %}
|
||||||
|
{% if current_permissions.pages.get('upload_admin', False) and current_permissions.actions.get('can_insert', False) %}
|
||||||
|
{ label: 'Hochladen', keywords: ['hochladen', 'upload'], url: {{ url_for('upload_admin')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.pages.get('admin_borrowings', False) %}
|
||||||
|
{ label: 'Ausleihen Verwaltung', keywords: ['ausleihen verwaltung', 'admin borrowings'], url: {{ url_for('admin_borrowings')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.pages.get('admin_damaged_items', False) %}
|
||||||
|
{ label: 'Defekte Items', keywords: ['defekte items', 'defekt', 'schaden'], url: {{ url_for('admin_damaged_items')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.pages.get('manage_filters', False) %}
|
||||||
|
{ label: 'Filter verwalten', keywords: ['filter verwalten', 'filter'], url: {{ url_for('manage_filters')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.pages.get('manage_locations', False) %}
|
||||||
|
{ label: 'Orte verwalten', keywords: ['orte verwalten', 'orte', 'location'], url: {{ url_for('manage_locations')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.pages.get('admin_school_settings', False) %}
|
||||||
|
{ label: 'Schulstammdaten', keywords: ['schule', 'settings', 'stammdaten', 'school settings'], url: {{ url_for('admin_school_settings')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.actions.get('can_view_logs', False) and current_permissions.pages.get('admin_audit_dashboard', False) %}
|
||||||
|
{ label: 'Audit Dashboard', keywords: ['audit', 'audit dashboard'], url: {{ url_for('admin_audit_dashboard')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.actions.get('can_view_logs', False) and current_permissions.pages.get('logs', False) %}
|
||||||
|
{ label: 'Logs', keywords: ['logs', 'protokoll'], url: {{ url_for('logs')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if current_permissions.actions.get('can_manage_users', False) %}
|
||||||
|
{% if current_permissions.pages.get('user_del', False) %}
|
||||||
|
{ label: 'Benutzer verwalten', keywords: ['benutzer verwalten', 'user'], url: {{ url_for('user_del')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
{% if current_permissions.pages.get('register', False) %}
|
||||||
|
{ label: 'Neuer Benutzer', keywords: ['neuer benutzer', 'register'], url: {{ url_for('register')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if library_module_enabled and current_permissions.pages.get('library_loans_admin', False) %}
|
||||||
|
{ label: 'Bibliotheks-Ausleihen', keywords: ['bibliotheks ausleihen', 'library loans'], url: {{ url_for('library_loans_admin')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if student_cards_module_enabled and current_permissions.pages.get('student_cards_admin', False) %}
|
||||||
|
{ label: 'Bibliotheksausweis', keywords: ['bibliotheksausweis', 'student card'], url: {{ url_for('student_cards_admin')|tojson }} },
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<p><strong>Name:</strong> Invario UG</p>
|
<p><strong>Name:</strong> Invario UG</p>
|
||||||
<p><strong>Adresse:</strong> Am Sportplatz 10<br>83052 Bruckmühl<br>Deutschland</p>
|
<p><strong>Adresse:</strong> Am Sportplatz 10<br>83052 Bruckmühl<br>Deutschland</p>
|
||||||
</address>
|
</address>
|
||||||
<p><strong>E-Mail:</strong> <a href="mailto:info@invario.eu">info@invario.eu</a></p>
|
<p><strong>E-Mail:</strong> <a href="mailto:info@invario-software.de">info@invario-software.de</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="impressum-section mb-4">
|
<div class="impressum-section mb-4">
|
||||||
|
|||||||
@@ -469,7 +469,7 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<div class="library-table-container" id="libraryTableContainer" data-can-edit="{{ 1 if is_admin else 0 }}">
|
<div class="library-table-container" id="libraryTableContainer" data-can-edit="{{ 1 if current_permissions.actions.get('can_edit', False) else 0 }}">
|
||||||
<!-- Header -->
|
<!-- Header -->
|
||||||
<div class="library-header">
|
<div class="library-header">
|
||||||
<h1>📚 Bibliothek</h1>
|
<h1>📚 Bibliothek</h1>
|
||||||
|
|||||||
@@ -122,7 +122,7 @@
|
|||||||
<h3>Meldung von Sicherheitslücken</h3>
|
<h3>Meldung von Sicherheitslücken</h3>
|
||||||
<div class="license-exception-notice">
|
<div class="license-exception-notice">
|
||||||
<h3>⚠️ Responsible Disclosure</h3>
|
<h3>⚠️ Responsible Disclosure</h3>
|
||||||
<p>Falls Sie eine Sicherheitslücke entdecken, wenden sie sich umgehend an die Email: info@invario.eu .
|
<p>Falls Sie eine Sicherheitslücke entdecken, wenden sie sich umgehend an die Email: info@invario-software.de .
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- /#pane-security -->
|
</div><!-- /#pane-security -->
|
||||||
|
|||||||
@@ -29,31 +29,12 @@ EOF
|
|||||||
parse_args() {
|
parse_args() {
|
||||||
while [[ $# -gt 0 ]]; do
|
while [[ $# -gt 0 ]]; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
--invoice-archive-dir)
|
--invoice-archive-dir) INVOICE_ARCHIVE_DIR="$2"; shift 2 ;;
|
||||||
INVOICE_ARCHIVE_DIR="$2"
|
--invoice-keep-days) KEEP_DAYS="$2"; shift 2 ;;
|
||||||
shift 2
|
--mode) MODE="$2"; shift 2 ;;
|
||||||
;;
|
--base-name) BASE_NAME="$2"; shift 2 ;;
|
||||||
--invoice-keep-days)
|
-h|--help) usage; exit 0 ;;
|
||||||
KEEP_DAYS="$2"
|
*) echo "Error: unknown option '$1'" >&2; usage; exit 2 ;;
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
--mode)
|
|
||||||
MODE="$2"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
--base-name)
|
|
||||||
BASE_NAME="$2"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
-h|--help)
|
|
||||||
usage
|
|
||||||
exit 0
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Error: unknown option '$1'" >&2
|
|
||||||
usage
|
|
||||||
exit 2
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
@@ -67,70 +48,50 @@ cleanup_old_archives() {
|
|||||||
if [[ -n "$KEEP_DAYS" ]]; then
|
if [[ -n "$KEEP_DAYS" ]]; then
|
||||||
find "$INVOICE_ARCHIVE_DIR" -maxdepth 1 -type f -mtime +"$KEEP_DAYS" -print -delete 2>/dev/null || true
|
find "$INVOICE_ARCHIVE_DIR" -maxdepth 1 -type f -mtime +"$KEEP_DAYS" -print -delete 2>/dev/null || true
|
||||||
fi
|
fi
|
||||||
find "$FULL_BACKUP_DIR" -maxdepth 1 -type f -mtime +30 -print -delete 2>/dev/null || true
|
# Cleanup old bundled backups (older than 30 days)
|
||||||
|
find "$FULL_BACKUP_DIR" -maxdepth 1 -type f -name "full_backup_*.tar.gz" -mtime +30 -print -delete 2>/dev/null || true
|
||||||
}
|
}
|
||||||
|
|
||||||
docker_backup() {
|
docker_backup() {
|
||||||
if ! command -v docker >/dev/null 2>&1; then
|
if ! command -v docker >/dev/null 2>&1; then return 1; fi
|
||||||
return 1
|
|
||||||
fi
|
local timestamp="$(date +'%Y-%m-%d_%H-%M-%S')"
|
||||||
if ! docker compose -f "$COMPOSE_FILE" ps -q app >/dev/null 2>&1; then
|
local staging_dir="/tmp/backup_stage_$timestamp"
|
||||||
return 1
|
|
||||||
fi
|
echo "[$(date +'%T')] Starting unified system backup..."
|
||||||
|
mkdir -p "$staging_dir"
|
||||||
|
|
||||||
local timestamp
|
# 1. MongoDB Dump (into staging)
|
||||||
timestamp="$(date +'%Y-%m-%d_%H-%M-%S')"
|
|
||||||
|
|
||||||
echo "[$(date +'%T')] Starting full system backup..."
|
|
||||||
|
|
||||||
# 1. Full MongoDB Dump
|
|
||||||
if docker compose -f "$COMPOSE_FILE" ps -q mongodb >/dev/null 2>&1; then
|
if docker compose -f "$COMPOSE_FILE" ps -q mongodb >/dev/null 2>&1; then
|
||||||
echo "[$(date +'%T')] Creating MongoDB dump..."
|
echo "[$(date +'%T')] Dumping Database..."
|
||||||
docker compose -f "$COMPOSE_FILE" exec -T mongodb mongodump --archive --gzip > "$FULL_BACKUP_DIR/full_db_${timestamp}.archive.gz"
|
docker compose -f "$COMPOSE_FILE" exec -T mongodb mongodump --archive --gzip > "$staging_dir/db.archive.gz"
|
||||||
else
|
|
||||||
echo "Warning: MongoDB container not found. Skipping DB dump."
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# 2. Archive Logs
|
# 2. Archive Assets (into staging)
|
||||||
|
if [ -d "./Web/uploads" ]; then
|
||||||
|
echo "[$(date +'%T')] Archiving assets..."
|
||||||
|
tar -czf "$staging_dir/assets.tar.gz" -C . Web/uploads Web/thumbnails Web/previews 2>/dev/null || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 3. Archive Logs (into staging)
|
||||||
if [ -d "$LOG_DIR" ]; then
|
if [ -d "$LOG_DIR" ]; then
|
||||||
echo "[$(date +'%T')] Archiving logs..."
|
echo "[$(date +'%T')] Archiving logs..."
|
||||||
tar -czf "$FULL_BACKUP_DIR/logs_${timestamp}.tar.gz" -C "$(dirname "$LOG_DIR")" "$(basename "$LOG_DIR")"
|
tar -czf "$staging_dir/logs.tar.gz" -C "$(dirname "$LOG_DIR")" "$(basename "$LOG_DIR")"
|
||||||
fi
|
|
||||||
|
|
||||||
# 3. Legacy Invoice Export
|
|
||||||
local app_container
|
|
||||||
app_container="$(docker compose -f "$COMPOSE_FILE" ps -q app | tr -d '[:space:]')"
|
|
||||||
if [[ -n "$app_container" ]]; then
|
|
||||||
local output_dir="/tmp/invoice_archive_${timestamp}"
|
|
||||||
local remote_base="${output_dir}/${BASE_NAME}"
|
|
||||||
|
|
||||||
docker compose -f "$COMPOSE_FILE" exec -T app mkdir -p "$output_dir"
|
|
||||||
|
|
||||||
docker compose -f "$COMPOSE_FILE" exec -T app python3 /app/Web/modules/inventarsystem/backup_invoices.py \
|
|
||||||
--archive-dir "$output_dir" \
|
|
||||||
--base-name "$BASE_NAME" >/dev/null 2>&1 || true
|
|
||||||
|
|
||||||
if docker compose -f "$COMPOSE_FILE" exec -T app test -f "${remote_base}.jsonl"; then
|
|
||||||
docker cp "$app_container":"${remote_base}.jsonl" "$INVOICE_ARCHIVE_DIR/"
|
|
||||||
docker cp "$app_container":"${remote_base}.csv" "$INVOICE_ARCHIVE_DIR/"
|
|
||||||
docker cp "$app_container":"${remote_base}.meta.json" "$INVOICE_ARCHIVE_DIR/"
|
|
||||||
else
|
|
||||||
echo "[$(date +'%T')] Info: No invoice records found to export."
|
|
||||||
fi
|
|
||||||
|
|
||||||
docker compose -f "$COMPOSE_FILE" exec -T app rm -rf "$output_dir"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# 4. Bundle everything into one file
|
||||||
|
echo "[$(date +'%T')] Bundling archive..."
|
||||||
|
tar -czf "$FULL_BACKUP_DIR/full_backup_$timestamp.tar.gz" -C "$staging_dir" .
|
||||||
|
|
||||||
|
# 5. Cleanup staging
|
||||||
|
rm -rf "$staging_dir"
|
||||||
|
|
||||||
|
echo "[$(date +'%T')] Backup complete: $FULL_BACKUP_DIR/full_backup_$timestamp.tar.gz"
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
parse_args "$@"
|
parse_args "$@"
|
||||||
|
|
||||||
if [[ -z "$BASE_NAME" ]]; then
|
|
||||||
BASE_NAME="invoices-$(date +'%Y-%m-%d_%H-%M-%S')"
|
|
||||||
fi
|
|
||||||
|
|
||||||
ensure_directory
|
ensure_directory
|
||||||
|
|
||||||
case "$MODE" in
|
case "$MODE" in
|
||||||
|
|||||||
+1
-1
@@ -27,7 +27,7 @@
|
|||||||
"username": "",
|
"username": "",
|
||||||
"password": "",
|
"password": "",
|
||||||
"from_address": "",
|
"from_address": "",
|
||||||
"default_sender_name": "Invario Inventurprogramm",
|
"default_sender_name": "Invario Inventarprogramm",
|
||||||
"timeout_seconds": 30
|
"timeout_seconds": 30
|
||||||
},
|
},
|
||||||
"images": {
|
"images": {
|
||||||
|
|||||||
Executable
+58
@@ -0,0 +1,58 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
BACKUP_DIR="/var/backups/inventarsystem"
|
||||||
|
COMPOSE_FILE="docker-compose-multitenant.yml"
|
||||||
|
|
||||||
|
# 1. Find the latest backup bundle
|
||||||
|
LATEST_BACKUP=$(ls -t "$BACKUP_DIR"/full_backup_*.tar.gz | head -n1 2>/dev/null || true)
|
||||||
|
|
||||||
|
if [[ -z "$LATEST_BACKUP" ]]; then
|
||||||
|
echo "Error: No backup bundle found in $BACKUP_DIR"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "--- RESTORE PROCEDURE ---"
|
||||||
|
echo "Found latest bundle: $(basename "$LATEST_BACKUP")"
|
||||||
|
read -p "WARNING: This will OVERWRITE your current database and assets! Continue? (y/N) " confirm
|
||||||
|
[[ "$confirm" != "y" ]] && exit 1
|
||||||
|
|
||||||
|
# 2. Extract the bundle to a temporary location
|
||||||
|
RESTORE_TMP="/tmp/restore_$(date +%s)"
|
||||||
|
mkdir -p "$RESTORE_TMP"
|
||||||
|
echo "Extracting bundle..."
|
||||||
|
tar -xzf "$LATEST_BACKUP" -C "$RESTORE_TMP"
|
||||||
|
|
||||||
|
# 3. Stop application
|
||||||
|
echo "Stopping application..."
|
||||||
|
docker compose -f "$COMPOSE_FILE" stop app
|
||||||
|
|
||||||
|
# 4. Restore Database
|
||||||
|
if [ -f "$RESTORE_TMP/db.archive.gz" ]; then
|
||||||
|
echo "Restoring MongoDB..."
|
||||||
|
zcat "$RESTORE_TMP/db.archive.gz" | docker compose -f "$COMPOSE_FILE" exec -T mongodb mongorestore --archive --gzip --drop
|
||||||
|
else
|
||||||
|
echo "Warning: Database archive not found in bundle."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 5. Restore Assets
|
||||||
|
if [ -f "$RESTORE_TMP/assets.tar.gz" ]; then
|
||||||
|
echo "Restoring Assets (Uploads/Thumbnails/Previews)..."
|
||||||
|
tar -xzf "$RESTORE_TMP/assets.tar.gz" -C .
|
||||||
|
else
|
||||||
|
echo "Warning: Asset archive not found in bundle."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 6. Restore Logs (Optional)
|
||||||
|
if [ -f "$RESTORE_TMP/logs.tar.gz" ]; then
|
||||||
|
echo "Restoring Logs..."
|
||||||
|
tar -xzf "$RESTORE_TMP/logs.tar.gz" -C .
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 7. Start application
|
||||||
|
echo "Restarting application..."
|
||||||
|
docker compose -f "$COMPOSE_FILE" start app
|
||||||
|
|
||||||
|
# 8. Cleanup
|
||||||
|
rm -rf "$RESTORE_TMP"
|
||||||
|
echo "Restore complete!"
|
||||||
Reference in New Issue
Block a user