Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ee1683abe1 | |||
| 320acb5256 | |||
| 7b2a6d7bc1 | |||
| 027cef257d | |||
| cbacda34ca | |||
| cbc805919a | |||
| 31e8b7ccb4 | |||
| 5d908b6142 | |||
| aa9eb4996a | |||
| 43f963d0d3 | |||
| 6589b8d275 | |||
| 612ce2e6e6 | |||
| 210483d250 | |||
| 943b48ce16 | |||
| 476dfee0ff | |||
| d002c5f9da | |||
| 1dbe5709f5 | |||
| 6b3c35f895 |
@@ -230,106 +230,97 @@ jobs:
|
||||
tags: |
|
||||
${{ steps.meta.outputs.image }}
|
||||
|
||||
- name: Create release-only docker bundle
|
||||
run: |
|
||||
mkdir -p release-bundle
|
||||
|
||||
# 1. .env Datei aus Gitea Secrets erzeugen
|
||||
cat > release-bundle/.env <<EOF
|
||||
INVENTAR_SECRET_KEY=${{ secrets.INVENTAR_SECRET_KEY }}
|
||||
INVENTAR_DATA_ENCRYPTION_KEY=${{ secrets.INVENTAR_DATA_ENCRYPTION_KEY }}
|
||||
INVENTAR_MONGODB_PASSWORD=${{ secrets.INVENTAR_MONGODB_PASSWORD }}
|
||||
EMAIL_ENABLED=${{ secrets.EMAIL_ENABLED }}
|
||||
EMAIL_SMTP_HOST=${{ secrets.EMAIL_SMTP_HOST }}
|
||||
EMAIL_SMTP_PORT=${{ secrets.EMAIL_SMTP_PORT }}
|
||||
EMAIL_USERNAME=${{ secrets.EMAIL_USERNAME }}
|
||||
EMAIL_PASSWORD=${{ secrets.EMAIL_PASSWORD }}
|
||||
EMAIL_FROM_ADDRESS=${{ secrets.EMAIL_FROM_ADDRESS }}
|
||||
EOF
|
||||
|
||||
# 2. docker-compose.yml nutzt env_file
|
||||
cat > release-bundle/docker-compose.yml <<EOF
|
||||
services:
|
||||
app:
|
||||
image: \${INVENTAR_APP_IMAGE:-${{ steps.meta.outputs.image }}}
|
||||
container_name: inventarsystem-app
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
- "\${INVENTAR_HTTP_PORT:-10000}:8000"
|
||||
depends_on:
|
||||
- mongodb
|
||||
- redis
|
||||
environment:
|
||||
INVENTAR_MONGODB_HOST: mongodb
|
||||
INVENTAR_MONGODB_PORT: "27017"
|
||||
INVENTAR_MONGODB_DB: Inventarsystem
|
||||
INVENTAR_BACKUP_FOLDER: /data/backups
|
||||
INVENTAR_LOGS_FOLDER: /data/logs
|
||||
expose:
|
||||
- "8000"
|
||||
volumes:
|
||||
- ./config.json:/app/config.json:ro
|
||||
- app_uploads:/app/Web/uploads
|
||||
- app_thumbnails:/app/Web/thumbnails
|
||||
- app_previews:/app/Web/previews
|
||||
- app_qrcodes:/app/Web/QRCodes
|
||||
- app_backups:/data/backups
|
||||
- app_logs:/data/logs
|
||||
|
||||
mongodb:
|
||||
image: mongo:7.0
|
||||
container_name: inventarsystem-mongodb
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- mongodb_data:/data/db
|
||||
healthcheck:
|
||||
test: ["CMD", "mongosh", "--quiet", "--eval", "db.adminCommand('ping').ok"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
|
||||
redis:
|
||||
image: redis:7-alpine
|
||||
container_name: inventarsystem-redis
|
||||
restart: unless-stopped
|
||||
command: redis-server --appendonly yes --maxmemory 512mb --maxmemory-policy allkeys-lru
|
||||
ports:
|
||||
- "6379:6379"
|
||||
volumes:
|
||||
- redis_data:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
volumes:
|
||||
mongodb_data:
|
||||
app_uploads:
|
||||
app_thumbnails:
|
||||
app_previews:
|
||||
app_qrcodes:
|
||||
app_backups:
|
||||
app_logs:
|
||||
redis_data:
|
||||
EOF
|
||||
|
||||
for f in start.sh stop.sh restart.sh backup.sh restore.sh config.json update.sh; do
|
||||
if [ -f "$f" ]; then
|
||||
cp "$f" "release-bundle/$(basename "$f")"
|
||||
fi
|
||||
done
|
||||
|
||||
for f in docker-compose-multitenant.yml manage-tenant.sh run-tenant-cmd.sh MULTITENANT_DEPLOYMENT.md MULTITENANT_PYTHON_API.md; do
|
||||
if [ -f "$f" ]; then
|
||||
cp "$f" "release-bundle/$(basename "$f")"
|
||||
fi
|
||||
done
|
||||
|
||||
find release-bundle -maxdepth 1 -type f -name '*.sh' -exec chmod +x {} \; || true
|
||||
tar -czf inventarsystem-docker-bundle.tar.gz -C release-bundle .
|
||||
- name: Create release-only docker bundle
|
||||
run: |
|
||||
mkdir -p release-bundle
|
||||
cat > release-bundle/docker-compose.yml <<EOF
|
||||
services:
|
||||
app:
|
||||
image: \${INVENTAR_APP_IMAGE:-${{ steps.meta.outputs.image }}}
|
||||
container_name: inventarsystem-app
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "\${INVENTAR_HTTP_PORT:-10000}:8000"
|
||||
depends_on:
|
||||
- mongodb
|
||||
- redis
|
||||
environment:
|
||||
INVENTAR_MONGODB_HOST: mongodb
|
||||
INVENTAR_MONGODB_PORT: "27017"
|
||||
INVENTAR_MONGODB_DB: Inventarsystem
|
||||
INVENTAR_BACKUP_FOLDER: /data/backups
|
||||
INVENTAR_LOGS_FOLDER: /data/logs
|
||||
INVENTAR_SECRET_KEY: ${{secrets.INVENTAR_SECRET_KEY}}
|
||||
INVENTAR_DATA_ENCRYPTION_KEY: ${{secrets.INVENTAR_DATA_ENCRYPTION_KEY}}
|
||||
INVENTAR_MONGODB_PASSWORD: ${{secrets.INVENTAR_MONGODB_PASSWORD}}
|
||||
EMAIL_ENABLED: ${{secrets.EMAIL_ENABLED}}
|
||||
EMAIL_SMTP_HOST: ${{secrets.EMAIL_SMTP_HOST}}
|
||||
EMAIL_SMTP_PORT: ${{secrets.EMAIL_SMTP_PORT}}
|
||||
EMAIL_USERNAME: ${{secrets.EMAIL_USERNAME}}
|
||||
EMAIL_PASSWORD: ${{secrets.EMAIL_PASSWORD}}
|
||||
expose:
|
||||
- "8000"
|
||||
volumes:
|
||||
- ./config.json:/app/config.json:ro
|
||||
- app_uploads:/app/Web/uploads
|
||||
- app_thumbnails:/app/Web/thumbnails
|
||||
- app_previews:/app/Web/previews
|
||||
- app_qrcodes:/app/Web/QRCodes
|
||||
- app_backups:/data/backups
|
||||
- app_logs:/data/logs
|
||||
|
||||
mongodb:
|
||||
image: mongo:7.0
|
||||
container_name: inventarsystem-mongodb
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- mongodb_data:/data/db
|
||||
healthcheck:
|
||||
test: ["CMD", "mongosh", "--quiet", "--eval", "db.adminCommand('ping').ok"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
|
||||
redis:
|
||||
image: redis:7-alpine
|
||||
container_name: inventarsystem-redis
|
||||
restart: unless-stopped
|
||||
command: redis-server --appendonly yes --maxmemory 512mb --maxmemory-policy allkeys-lru
|
||||
ports:
|
||||
- "6379:6379"
|
||||
volumes:
|
||||
- redis_data:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
volumes:
|
||||
mongodb_data:
|
||||
app_uploads:
|
||||
app_thumbnails:
|
||||
app_previews:
|
||||
app_qrcodes:
|
||||
app_backups:
|
||||
app_logs:
|
||||
redis_data:
|
||||
EOF
|
||||
|
||||
for f in start.sh stop.sh restart.sh backup.sh restore.sh config.json update.sh; do
|
||||
if [ -f "$f" ]; then
|
||||
cp "$f" "release-bundle/$(basename "$f")"
|
||||
fi
|
||||
done
|
||||
|
||||
for f in docker-compose-multitenant.yml manage-tenant.sh run-tenant-cmd.sh MULTITENANT_DEPLOYMENT.md MULTITENANT_PYTHON_API.md; do
|
||||
if [ -f "$f" ]; then
|
||||
cp "$f" "release-bundle/$(basename "$f")"
|
||||
fi
|
||||
done
|
||||
|
||||
find release-bundle -maxdepth 1 -type f -name '*.sh' -exec chmod +x {} \; || true
|
||||
tar -czf inventarsystem-docker-bundle.tar.gz -C release-bundle .
|
||||
|
||||
- name: Create or update Gitea Release
|
||||
uses: https://gitea.com/actions/gitea-release-action@v1
|
||||
|
||||
+17
-5
@@ -48,7 +48,7 @@ import Web.modules.log.audit_log as al
|
||||
import push_notifications as pn
|
||||
import Web.modules.inventarsystem.pdf_export as pdf_export
|
||||
import Web.modules.inventarsystem.excel_export as excel_export
|
||||
from Web.modules.emailservice.email import send, send_pdf
|
||||
from Web.modules.emailservice.email import send
|
||||
import datetime
|
||||
from apscheduler.schedulers.background import BackgroundScheduler
|
||||
from bson.objectid import ObjectId, InvalidId
|
||||
@@ -5543,7 +5543,7 @@ def student_card_single_barcode_download(card_id):
|
||||
if not cfg.MODULES.is_enabled('mail'):
|
||||
flash('Das E-Mail-Add-on ist deaktiviert. Der Ausweis kann weiterhin als PDF heruntergeladen werden.', 'warning')
|
||||
return redirect(url_for('student_cards_admin'))
|
||||
sent = send_pdf(
|
||||
sent = send(
|
||||
recipient_email,
|
||||
f'Bibliotheksausweis {card["AusweisId"]}',
|
||||
f'Anbei erhalten Sie den Bibliotheksausweis für {card.get("SchülerName", "")} als PDF.',
|
||||
@@ -9153,7 +9153,7 @@ def admin_audit_export_pdf_official():
|
||||
flash('Das E-Mail-Add-on ist deaktiviert. Der Auditbericht kann weiterhin als PDF heruntergeladen werden.', 'warning')
|
||||
return redirect(url_for('admin_audit_dashboard'))
|
||||
filename = f'audit-official-report-{datetime.datetime.now(ZoneInfo("Europe/Berlin")).strftime("%Y%m%d-%H%M%S")}.pdf'
|
||||
sent = send_pdf(
|
||||
sent = send(
|
||||
recipient_email,
|
||||
'Amtlicher Auditbericht',
|
||||
'Anbei erhalten Sie den aktuellen amtlichen Auditbericht des Inventarsystems als PDF.',
|
||||
@@ -9549,7 +9549,7 @@ def admin_create_invoice(borrow_id):
|
||||
if not cfg.MODULES.is_enabled('mail'):
|
||||
flash('Das E-Mail-Add-on ist deaktiviert. Die PDF-Rechnung kann weiterhin heruntergeladen werden.', 'warning')
|
||||
return redirect(url_for('admin_borrowings'))
|
||||
sent = send_pdf(
|
||||
sent = send(
|
||||
recipient_email,
|
||||
f'Rechnung {invoice_number} - {item_name}',
|
||||
f'Anbei erhalten Sie die Rechnung {invoice_number} zum Element {item_name}.',
|
||||
@@ -13755,4 +13755,16 @@ def upload_csv_batch():
|
||||
"images_processed": processed_count,
|
||||
"images_deduplicated": dedup_count,
|
||||
"images_failed": error_count
|
||||
}), 200
|
||||
}), 200
|
||||
|
||||
@app.route('/test_email')
|
||||
def test_email():
|
||||
|
||||
#Test endpoint to send a sample email.
|
||||
#This is for development purposes only.
|
||||
|
||||
try:
|
||||
send(to_email="maximiliangruendinger@gmail.com", subject="Test Email from Inventarsystem", body="This is a test email sent from the Inventarsystem application.")
|
||||
return "Test email sent successfully."
|
||||
except Exception as e:
|
||||
return f"Failed to send test email: {str(e)}", 500
|
||||
@@ -220,25 +220,13 @@ SSL_CERT = _get(_conf, ['ssl', 'cert'], DEFAULTS['ssl']['cert'])
|
||||
SSL_KEY = _get(_conf, ['ssl', 'key'], DEFAULTS['ssl']['key'])
|
||||
|
||||
# Email settings
|
||||
def _get_email_env(name, default=''):
|
||||
value = os.getenv(name)
|
||||
if value is None:
|
||||
return default
|
||||
value = value.strip()
|
||||
return '' if value.lower() in {'', 'false', 'none', 'null'} else value
|
||||
|
||||
|
||||
EMAIL_ENABLED = _get_email_env('EMAIL_ENABLED').lower() in {'1', 'true', 'yes', 'on'}
|
||||
EMAIL_SMTP_HOST = _get_email_env('EMAIL_SMTP_HOST')
|
||||
EMAIL_ENABLED = bool(os.getenv('EMAIL_ENABLED', False))
|
||||
EMAIL_SMTP_HOST = str(os.getenv('EMAIL_SMTP_HOST', False))
|
||||
EMAIL_SMTP_PORT = int(os.getenv('EMAIL_SMTP_PORT', 587))
|
||||
EMAIL_USE_TLS = True
|
||||
EMAIL_USERNAME = _get_email_env('EMAIL_USERNAME')
|
||||
EMAIL_PASSWORD = _get_email_env('EMAIL_PASSWORD')
|
||||
EMAIL_FROM_ADDRESS = (
|
||||
_get_email_env('EMAIL_FROM_ADDRESS')
|
||||
or _get(_conf, ['email', 'from_address'], '')
|
||||
or EMAIL_USERNAME
|
||||
)
|
||||
EMAIL_USERNAME = str(os.getenv('EMAIL_USERNAME', False))
|
||||
EMAIL_PASSWORD = str(os.getenv('EMAIL_PASSWORD', False))
|
||||
EMAIL_FROM_ADDRESS = _get(_conf, ['email', 'from_address'], EMAIL_USERNAME)
|
||||
EMAIL_DEFAULT_SENDER_NAME = "Invario Inventarsystem Sender"
|
||||
EMAIL_TIMEOUT_SECONDS = 20
|
||||
|
||||
|
||||
@@ -3,103 +3,114 @@ from email.mime.text import MIMEText
|
||||
from email.mime.application import MIMEApplication
|
||||
import smtplib
|
||||
import time
|
||||
import logging
|
||||
|
||||
import os
|
||||
import Web.modules.database.settings as cfg
|
||||
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
def _build_smtp_client():
|
||||
if not cfg.EMAIL_SMTP_HOST:
|
||||
raise RuntimeError('EMAIL_SMTP_HOST ist nicht konfiguriert')
|
||||
|
||||
smtp = smtplib.SMTP(
|
||||
cfg.EMAIL_SMTP_HOST,
|
||||
cfg.EMAIL_SMTP_PORT,
|
||||
timeout=cfg.EMAIL_TIMEOUT_SECONDS,
|
||||
"mail.invario-software.de",
|
||||
587,
|
||||
timeout=10,
|
||||
)
|
||||
smtp.ehlo()
|
||||
if cfg.EMAIL_USE_TLS:
|
||||
if True:
|
||||
smtp.starttls()
|
||||
smtp.ehlo()
|
||||
if cfg.EMAIL_USERNAME:
|
||||
smtp.login(cfg.EMAIL_USERNAME, cfg.EMAIL_PASSWORD or "")
|
||||
smtp.login("no-reply@invario-software.de", "eSpage,65,{")
|
||||
return smtp
|
||||
|
||||
|
||||
|
||||
def _normalize_recipients(email: list | str) -> list[str]:
|
||||
if isinstance(email, str):
|
||||
email = email.replace(';', ',').split(',')
|
||||
return [str(recipient).strip() for recipient in (email or []) if str(recipient).strip()]
|
||||
|
||||
|
||||
def _send_message(email: list | str, subject: str, note: str, sender: str, attachment=None) -> bool:
|
||||
"""Send a plain/HTML message, optionally with one PDF attachment."""
|
||||
if not cfg.MODULES.is_enabled("mail"):
|
||||
logger.info("Email delivery skipped because the mail module is disabled")
|
||||
return False
|
||||
def send(
|
||||
email: list | str,
|
||||
subject: str,
|
||||
text_body: str,
|
||||
html_body: str = None,
|
||||
attachments: list = None
|
||||
) -> bool:
|
||||
"""Sends the email with Plain Text, HTML, and optional File Attachments support."""
|
||||
|
||||
if isinstance(email, str):
|
||||
email = [email]
|
||||
|
||||
recipients = _normalize_recipients(email)
|
||||
if not recipients:
|
||||
logger.warning("Email delivery skipped because no recipients were provided")
|
||||
return False
|
||||
if attachments is None:
|
||||
attachments = []
|
||||
|
||||
body_message = note
|
||||
TEXT_SIGNATURE = (
|
||||
"\n\n--\n"
|
||||
"Mit freundlichen Grüßen\n"
|
||||
"Ihr Invario Team\n\n"
|
||||
"Invario UG\n"
|
||||
"Am Sportplatz 10\n"
|
||||
"83052 Bruckmühl"
|
||||
)
|
||||
|
||||
HTML_SIGNATURE = f"""
|
||||
<table cellpadding="0" cellspacing="0" border="0" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #333333; line-height: 1.5;">
|
||||
HTML_SIGNATURE = """
|
||||
<br><br>
|
||||
<table cellpadding="0" cellspacing="0" border="0" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #555555; line-height: 1.5; border-top: 1px solid #eaebed; padding-top: 15px; width: 100%;">
|
||||
<tr>
|
||||
<td>
|
||||
<p style="margin:0 0 12px 0;">Mit freundlichen Grüßen</p>
|
||||
<p style="margin:0;"><strong style="font-size:16px;">Automatisierter Email Verteiler für die Schule: {cfg.get_school_info().get("name")}</strong><br></p><br>
|
||||
<p style="margin:12px 0 0 0;"><strong>Invario UG</strong><br>Am Sportplatz 10<br>83052 Bruckmühl</p>
|
||||
<p style="margin:0 0 5px 0;">Mit freundlichen Grüßen,</p>
|
||||
<p style="margin:0;"><strong style="font-size:15px; color: #333333;">Ihr Invario Team</strong></p><br>
|
||||
<p style="margin:0 0 0 0; font-size: 12px; color: #888888;">
|
||||
<strong>Invario UG</strong><br>
|
||||
Am Sportplatz 10<br>
|
||||
83052 Bruckmühl
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
"""
|
||||
|
||||
text_content = f"{body_message}\n\nMit freundlichen Grüßen\n{sender}\n"
|
||||
|
||||
html_content = f"""
|
||||
<html>
|
||||
<body>
|
||||
<p>{body_message}</p>
|
||||
<br>
|
||||
{HTML_SIGNATURE}
|
||||
</body>
|
||||
</html>
|
||||
"""
|
||||
text_content = f"{text_body}{TEXT_SIGNATURE}"
|
||||
|
||||
if html_body:
|
||||
html_content = f"<html><body style='background-color: #f9f9f9; padding: 20px;'><div style='background-color: #ffffff; padding: 30px; border-radius: 8px; max-width: 600px; margin: 0 auto; box-shadow: 0px 2px 5px rgba(0,0,0,0.05);'>{html_body}{HTML_SIGNATURE}</div></body></html>"
|
||||
else:
|
||||
# Fallback if only text is provided
|
||||
html_safe_text = text_body.replace('\n', '<br>')
|
||||
html_content = f"<html><body><p style='font-family: Arial, sans-serif; color: #333333;'>{html_safe_text}</p>{HTML_SIGNATURE}</body></html>"
|
||||
|
||||
mails_per_second = 10
|
||||
interval = 1.0 / mails_per_second
|
||||
|
||||
smtp = None
|
||||
|
||||
try:
|
||||
smtp = _build_smtp_client()
|
||||
|
||||
for i, recipient in enumerate(recipients):
|
||||
for i, recipient in enumerate(email):
|
||||
start_time = time.time()
|
||||
|
||||
msg = MIMEMultipart("mixed" if attachment else "alternative")
|
||||
msg["Subject"] = str(subject)
|
||||
from_address = cfg.EMAIL_FROM_ADDRESS or cfg.EMAIL_USERNAME or "no-reply@invario-software.de"
|
||||
msg["From"] = f"{sender} <{from_address}>"
|
||||
# Root message structure for email with attachments
|
||||
msg = MIMEMultipart("mixed")
|
||||
msg["Subject"] = subject
|
||||
msg["From"] = "Invario Team <no-reply@invario-software.de>"
|
||||
msg["To"] = str(recipient)
|
||||
|
||||
body = MIMEMultipart("alternative") if attachment else msg
|
||||
body.attach(MIMEText(text_content, "plain"))
|
||||
body.attach(MIMEText(html_content, "html"))
|
||||
if attachment:
|
||||
msg.attach(body)
|
||||
attachment_payload, filename = attachment
|
||||
pdf_part = MIMEApplication(attachment_payload, _subtype="pdf")
|
||||
pdf_part.add_header("Content-Disposition", "attachment", filename=filename)
|
||||
msg.attach(pdf_part)
|
||||
# Sub-container for Plain Text and HTML bodies
|
||||
msg_body = MIMEMultipart("alternative")
|
||||
msg_body.attach(MIMEText(text_content, "plain"))
|
||||
msg_body.attach(MIMEText(html_content, "html"))
|
||||
msg.attach(msg_body)
|
||||
|
||||
# Attach files if provided
|
||||
for file_path in attachments:
|
||||
if file_path and os.path.isfile(file_path):
|
||||
filename = os.path.basename(file_path)
|
||||
with open(file_path, "rb") as file:
|
||||
part = MIMEApplication(file.read(), Name=filename)
|
||||
part['Content-Disposition'] = f'attachment; filename="{filename}"'
|
||||
msg.attach(part)
|
||||
|
||||
smtp.sendmail(
|
||||
from_addr=from_address,
|
||||
from_addr="no-reply@invario-software.de",
|
||||
to_addrs=[recipient],
|
||||
msg=msg.as_string()
|
||||
)
|
||||
@@ -107,26 +118,16 @@ def _send_message(email: list | str, subject: str, note: str, sender: str, attac
|
||||
elapsed_time = time.time() - start_time
|
||||
sleep_time = interval - elapsed_time
|
||||
|
||||
if sleep_time > 0 and i < len(recipients) - 1:
|
||||
if sleep_time > 0 and i < len(email) - 1:
|
||||
time.sleep(sleep_time)
|
||||
|
||||
return True
|
||||
except Exception as e:
|
||||
logger.exception("Email delivery failed: %s", e)
|
||||
print(f"Debug: Fehler beim Senden der E-Mail: {e}")
|
||||
return False
|
||||
finally:
|
||||
if smtp:
|
||||
try:
|
||||
smtp.quit()
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
|
||||
def send(email: list | str, subject: str, note: str, sender: str) -> bool:
|
||||
"""Send an HTML/plain email without an attachment."""
|
||||
return _send_message(email, subject, note, sender)
|
||||
|
||||
|
||||
def send_pdf(email: list | str, subject: str, note: str, sender: str, pdf_bytes: bytes, filename: str) -> bool:
|
||||
"""Send an email with a PDF attachment."""
|
||||
return _send_message(email, subject, note, sender, attachment=(pdf_bytes, filename))
|
||||
pass
|
||||
@@ -3,7 +3,7 @@ import Web.modules.terminplaner.backend_server as appointment_service
|
||||
import Web.modules.database.settings as cfg
|
||||
import Web.modules.database.termine as termin
|
||||
import Web.modules.database.user as us
|
||||
from Web.modules.emailservice.email import send_pdf
|
||||
from Web.modules.emailservice.email import send
|
||||
from Web.modules.terminplaner.backend_server import _resolve_public_base_url
|
||||
import csv
|
||||
import io
|
||||
@@ -542,7 +542,7 @@ def export_pdf_brief(plan_id):
|
||||
if not cfg.MODULES.is_enabled('mail'):
|
||||
flash('Das E-Mail-Add-on ist deaktiviert. Der Einladungsbrief kann weiterhin als PDF heruntergeladen werden.', 'warning')
|
||||
return redirect(url_for('terminplaner.main', tenant=tenant_id or None))
|
||||
sent = send_pdf(
|
||||
sent = send(
|
||||
recipient_email,
|
||||
f'Einladung zur Terminbuchung: {plan_daten["titel"]}',
|
||||
f'Anbei erhalten Sie den Einladungsbrief für {plan_daten["titel"]} als PDF.',
|
||||
|
||||
+41
-36
@@ -1346,11 +1346,13 @@
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if 'username' in session %}
|
||||
<!--
|
||||
{% if current_permissions.pages.get('tutorial_page', False) %}
|
||||
<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>
|
||||
</li>
|
||||
{% endif %}
|
||||
-->
|
||||
{% endif %}
|
||||
{% if 'username' in session and current_permissions.actions.get('can_insert', False) and current_permissions.pages.get('library_admin', False) %}
|
||||
<li class="nav-item">
|
||||
@@ -1630,6 +1632,8 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
|
||||
<div id="onboarding-overlay" role="dialog" aria-modal="true" aria-label="Tutorial Vorschlag">
|
||||
<div id="onboarding-modal">
|
||||
<h3>Wollen Sie eine Vorstellung des Produkts?</h3>
|
||||
@@ -1643,6 +1647,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<div id="notification-toast" class="notification-toast" role="status" aria-live="polite">
|
||||
<strong id="notification-toast-title">Neue Benachrichtigung</strong>
|
||||
@@ -1662,7 +1667,7 @@
|
||||
<option value="Benachrichtigungen"></option>
|
||||
{% endif %}
|
||||
{% if current_permissions.pages.get('tutorial_page', False) %}
|
||||
<option value="Tutorial"></option>
|
||||
<!--<option value="Tutorial"></option>-->
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -1765,10 +1770,10 @@
|
||||
});
|
||||
|
||||
const username = {{ (session['username'] if 'username' in session else '')|tojson }};
|
||||
const isTutorialPage = window.location.pathname === {{ url_for('tutorial_page')|tojson }};
|
||||
//const isTutorialPage = window.location.pathname === {{ url_for('tutorial_page')|tojson }};
|
||||
const isLoginPage = window.location.pathname === {{ url_for('login')|tojson }};
|
||||
const notificationsPagePath = {{ url_for('notifications_view')|tojson }};
|
||||
const onboardingKey = username ? ('inventarsystem_tutorial_prompt_v1_' + username) : null;
|
||||
//const onboardingKey = username ? ('inventarsystem_tutorial_prompt_v1_' + username) : null;
|
||||
const onboardingOverlay = document.getElementById('onboarding-overlay');
|
||||
const notificationButtons = Array.from(document.querySelectorAll('[data-notification-button="true"]'));
|
||||
const notificationToast = document.getElementById('notification-toast');
|
||||
@@ -1789,9 +1794,9 @@
|
||||
{% 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 %}
|
||||
//{% 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 }} },
|
||||
@@ -2042,11 +2047,11 @@
|
||||
window.setInterval(pollNotificationStatus, 30000);
|
||||
}
|
||||
|
||||
function showOnboarding(){
|
||||
if (onboardingOverlay) {
|
||||
onboardingOverlay.style.display = 'flex';
|
||||
}
|
||||
}
|
||||
//function showOnboarding(){
|
||||
// if (onboardingOverlay) {
|
||||
// onboardingOverlay.style.display = 'flex';
|
||||
// }
|
||||
//}
|
||||
|
||||
function hideOnboarding(){
|
||||
if (onboardingOverlay) {
|
||||
@@ -2054,19 +2059,19 @@
|
||||
}
|
||||
}
|
||||
|
||||
if (onboardingKey && !isTutorialPage && !isLoginPage) {
|
||||
const decision = localStorage.getItem(onboardingKey);
|
||||
if (!decision || decision === 'later') {
|
||||
showOnboarding();
|
||||
}
|
||||
}
|
||||
//if (onboardingKey && !isTutorialPage && !isLoginPage) {
|
||||
// const decision = localStorage.getItem(onboardingKey);
|
||||
// if (!decision || decision === 'later') {
|
||||
// showOnboarding();
|
||||
// }
|
||||
//}
|
||||
|
||||
document.getElementById('onboarding-start')?.addEventListener('click', function(){
|
||||
if (onboardingKey) {
|
||||
localStorage.setItem(onboardingKey, 'started');
|
||||
}
|
||||
window.location.href = {{ url_for('tutorial_page')|tojson }};
|
||||
});
|
||||
//document.getElementById('onboarding-start')?.addEventListener('click', function(){
|
||||
// if (onboardingKey) {
|
||||
// localStorage.setItem(onboardingKey, 'started');
|
||||
// }
|
||||
// window.location.href = {{ url_for('tutorial_page')|tojson }};
|
||||
//});
|
||||
|
||||
document.getElementById('onboarding-later')?.addEventListener('click', function(){
|
||||
if (onboardingKey) {
|
||||
@@ -2399,21 +2404,21 @@
|
||||
<script>
|
||||
(function () {
|
||||
const username = {{ (session['username'] if 'username' in session else '')|tojson }};
|
||||
const tooltipModeKey = username ? ('inventarsystem_tutorial_tooltips_enabled_' + username) : 'inventarsystem_tutorial_tooltips_enabled';
|
||||
//const tooltipModeKey = username ? ('inventarsystem_tutorial_tooltips_enabled_' + username) : 'inventarsystem_tutorial_tooltips_enabled';
|
||||
const enabled = localStorage.getItem(tooltipModeKey) === '1';
|
||||
|
||||
function applyTooltipMode(active) {
|
||||
document.body.classList.toggle('tutorial-tooltips-active', active);
|
||||
let indicator = document.getElementById('tutorialTooltipIndicator');
|
||||
if (!indicator) {
|
||||
indicator = document.createElement('div');
|
||||
indicator.id = 'tutorialTooltipIndicator';
|
||||
indicator.className = 'tutorial-tooltip-indicator';
|
||||
indicator.textContent = 'Tutorial-Modus aktiv: Tooltips sind eingeschaltet';
|
||||
document.body.appendChild(indicator);
|
||||
}
|
||||
indicator.style.display = active ? 'inline-flex' : 'none';
|
||||
}
|
||||
//function applyTooltipMode(active) {
|
||||
// document.body.classList.toggle('tutorial-tooltips-active', active);
|
||||
// let indicator = document.getElementById('tutorialTooltipIndicator');
|
||||
// if (!indicator) {
|
||||
// indicator = document.createElement('div');
|
||||
// indicator.id = 'tutorialTooltipIndicator';
|
||||
// indicator.className = 'tutorial-tooltip-indicator';
|
||||
// indicator.textContent = 'Tutorial-Modus aktiv: Tooltips sind eingeschaltet';
|
||||
// document.body.appendChild(indicator);
|
||||
// }
|
||||
// indicator.style.display = active ? 'inline-flex' : 'none';
|
||||
//}
|
||||
|
||||
applyTooltipMode(enabled);
|
||||
})();
|
||||
|
||||
@@ -518,12 +518,6 @@ detect_server_capacity() {
|
||||
}
|
||||
|
||||
write_env_file() {
|
||||
if [ -f "$SCRIPT_DIR/.env" ]; then
|
||||
set -o allexport
|
||||
source "$SCRIPT_DIR/.env"
|
||||
set +o allexport
|
||||
fi
|
||||
|
||||
cat > "$ENV_FILE" <<EOF
|
||||
NUITKA_BUILD=$NUITKA_BUILD_VALUE
|
||||
INVENTAR_HTTP_PORT=$HTTP_PORT_VALUE
|
||||
@@ -536,17 +530,6 @@ INVENTAR_WORKERS=$INVENTAR_WORKERS
|
||||
INVENTAR_THREADS=$INVENTAR_THREADS
|
||||
INVENTAR_WORKER_TIMEOUT=${INVENTAR_WORKER_TIMEOUT:-30}
|
||||
INVENTAR_WORKER_CONNECTIONS=${INVENTAR_WORKER_CONNECTIONS:-100}
|
||||
|
||||
# Secrets & E-Mail Konfiguration weiterreichen
|
||||
INVENTAR_SECRET_KEY=${INVENTAR_SECRET_KEY:-}
|
||||
INVENTAR_DATA_ENCRYPTION_KEY=${INVENTAR_DATA_ENCRYPTION_KEY:-}
|
||||
INVENTAR_MONGODB_PASSWORD=${INVENTAR_MONGODB_PASSWORD:-}
|
||||
EMAIL_ENABLED=${EMAIL_ENABLED:-true}
|
||||
EMAIL_SMTP_HOST=${EMAIL_SMTP_HOST:-}
|
||||
EMAIL_SMTP_PORT=${EMAIL_SMTP_PORT:-587}
|
||||
EMAIL_USERNAME=${EMAIL_USERNAME:-}
|
||||
EMAIL_PASSWORD=${EMAIL_PASSWORD:-}
|
||||
EMAIL_FROM_ADDRESS=${EMAIL_FROM_ADDRESS:-}
|
||||
EOF
|
||||
}
|
||||
|
||||
@@ -586,10 +569,6 @@ verify_stack_health() {
|
||||
if [ -f "$RUNTIME_COMPOSE_OVERRIDE_FILE" ]; then
|
||||
compose_args+=(-f "$RUNTIME_COMPOSE_OVERRIDE_FILE")
|
||||
fi
|
||||
|
||||
if [ -f "$SCRIPT_DIR/.env" ]; then
|
||||
compose_args+=(--env-file "$SCRIPT_DIR/.env")
|
||||
fi
|
||||
compose_args+=(--env-file "$ENV_FILE")
|
||||
|
||||
while [[ $retry_count -lt 2 ]]; do
|
||||
|
||||
Reference in New Issue
Block a user