Bugfixes aus dem Code-Review: - XSS: unescaptes $_SERVER['PHP_SELF'] in csvupload.php und letzteneintraege.php durch feste Seitennamen ersetzt. - Stripe-Webhook: Event-Deduplizierung (neue Tabelle stripe_webhook_events) gegen doppelte Verarbeitung/Dolibarr-Rechnungen bei Retry-Zustellung. - Stripe-Webhook: Tarifwechsel aus dem Kundenportal wird lokal nachgezogen (plan_code aus dem Preis-lookup_key bei subscription.updated). - Post-Redirect-Get fuer jahresauswertung, mailversenden und die Selbst-Stricheintragung - verhindert Doppelbuchung/Doppelversand per Browser-Refresh. - Jahresbonus: Mails erst nach erfolgreichem Commit; Restcent-Ausgleich beim letzten Empfaenger, damit die Summe exakt stimmt. - Verschachtelte HTML-Dokumente in csvupload/einzahlung/stricheintragen entfernt (Layout kommt aus header.php). - Rate-Limit fuer den Versand von E-Mail-Verifizierungslinks. Neue Funktionen: - Mitglieder koennen ihren zuletzt selbst eingetragenen Strich wieder stornieren (nur eigene Web-Eintraege, Kassenwart-Eintraege bleiben). - Monatsuebersicht des eigenen Verbrauchs im Mitglieder-Dashboard. - Automatische Zahlungserinnerung: opt-in pro Mandant ab der Warnschwelle, mit Intervall; Cron-Skript scripts/send-payment-reminders.php. - CSV-Import fuer Mitgliederlisten inkl. herunterladbarer Vorlage (mitglieder-vorlage.php), Semikolon-/Komma- und BOM-Erkennung. - Logo als PDF-Wasserzeichen pro Mandant (Upload in den Mandant- Einstellungen, geschuetzt unter var/tenant_logos/, ersetzt den Text-Wasserzeichen im Ausdruck). Robusterer Teilnehmer-Lookup im Dashboard ueber user_id (Fallback E-Mail).
177 lines
5.7 KiB
PHP
177 lines
5.7 KiB
PHP
<?php
|
|
|
|
include "functions.php";
|
|
require_once __DIR__ . "/app/ledger.php";
|
|
require_once __DIR__ . "/app/saas-mail.php";
|
|
require_once __DIR__ . "/app/audit.php";
|
|
app_require_csrf();
|
|
|
|
$pdo = app_db_pdo();
|
|
$saasUser = saas_current_user($pdo);
|
|
$tenantId = 0;
|
|
$hasAccess = false;
|
|
|
|
if ($saasUser !== null && saas_user_has_role(['owner', 'admin', 'treasurer'], $saasUser)) {
|
|
$tenantId = (int)$saasUser['tenant_id'];
|
|
$hasAccess = true;
|
|
}
|
|
|
|
if (!$hasAccess && $saasUser === null && checkKaffeelisteAdmin($conn, $mailadress)) {
|
|
$tenant = ledger_fetch_default_tenant($pdo);
|
|
if ($tenant !== null) {
|
|
$tenantId = (int)$tenant['id'];
|
|
$hasAccess = true;
|
|
}
|
|
}
|
|
|
|
$ergebnisse = null;
|
|
$dryRun = true;
|
|
$liveFlash = false;
|
|
|
|
// Ergebnis eines vorangegangenen Live-Versands (Post-Redirect-Get): nach dem
|
|
// echten Versand wird auf diese Seite zurueckgeleitet, damit ein Refresh nicht
|
|
// erneut an alle Mitglieder mailt.
|
|
if ($hasAccess && isset($_SESSION['flash_mailversand'])) {
|
|
$flash = $_SESSION['flash_mailversand'];
|
|
unset($_SESSION['flash_mailversand']);
|
|
if ((int)($flash['tenant_id'] ?? 0) === $tenantId) {
|
|
$ergebnisse = $flash['ergebnisse'] ?? null;
|
|
$dryRun = false;
|
|
$liveFlash = true;
|
|
}
|
|
}
|
|
|
|
if ($hasAccess && $_SERVER["REQUEST_METHOD"] === "POST") {
|
|
$dryRun = !empty($_POST['dry_run']);
|
|
$settings = saas_fetch_tenant_settings($pdo, $tenantId);
|
|
$dashboardUrl = saas_app_url('index.php');
|
|
$createdByUserId = $saasUser['user_id'] ?? null;
|
|
|
|
$teilnehmer = ledger_fetch_participant_summaries($pdo, $tenantId, ['active_only' => true]);
|
|
$ergebnisse = [];
|
|
|
|
foreach ($teilnehmer as $person) {
|
|
$email = trim((string)($person['email'] ?? ''));
|
|
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
|
|
$ergebnisse[] = ['name' => $person['display_name'], 'email' => $email, 'status' => 'ohne_email'];
|
|
continue;
|
|
}
|
|
|
|
$subject = 'Kaffeeliste - Dein aktueller Stand';
|
|
$body = saas_render_balance_mail_body(
|
|
$person['display_name'],
|
|
(int)$person['balance_cents'],
|
|
$settings,
|
|
$dashboardUrl
|
|
);
|
|
|
|
if ($dryRun) {
|
|
saas_log_outbound_email($pdo, $tenantId, $person['participant_id'], 'balance_notice', $subject, 'dry_run', null, $createdByUserId);
|
|
$ergebnisse[] = ['name' => $person['display_name'], 'email' => $email, 'status' => 'dry_run'];
|
|
continue;
|
|
}
|
|
|
|
$sendResult = saas_send_mail($email, $subject, $body);
|
|
if ($sendResult['ok']) {
|
|
saas_log_outbound_email($pdo, $tenantId, $person['participant_id'], 'balance_notice', $subject, 'sent', null, $createdByUserId);
|
|
$ergebnisse[] = ['name' => $person['display_name'], 'email' => $email, 'status' => 'sent'];
|
|
} else {
|
|
saas_log_outbound_email($pdo, $tenantId, $person['participant_id'], 'balance_notice', $subject, 'failed', $sendResult['error'] ?? 'unbekannter Fehler', $createdByUserId);
|
|
$ergebnisse[] = ['name' => $person['display_name'], 'email' => $email, 'status' => 'failed'];
|
|
}
|
|
}
|
|
|
|
if (!$dryRun) {
|
|
app_audit_log($pdo, $tenantId, $createdByUserId, 'mail_broadcast.sent', 'tenant', $tenantId, ['empfaenger' => count($ergebnisse)]);
|
|
|
|
// Post-Redirect-Get: Ergebnis in die Session legen und per GET erneut
|
|
// anzeigen, damit ein Browser-Refresh nicht erneut versendet.
|
|
$_SESSION['flash_mailversand'] = ['tenant_id' => $tenantId, 'ergebnisse' => $ergebnisse];
|
|
header('Location: mailversenden.php');
|
|
exit;
|
|
}
|
|
}
|
|
|
|
$log = $hasAccess ? saas_fetch_outbound_email_log($pdo, $tenantId, 20) : [];
|
|
|
|
function mailversenden_status_label(string $status): string
|
|
{
|
|
return match ($status) {
|
|
'sent' => 'Versendet',
|
|
'failed' => 'Fehlgeschlagen',
|
|
'dry_run' => 'Dry-Run (nicht versendet)',
|
|
'ohne_email' => 'Keine E-Mail-Adresse',
|
|
default => $status,
|
|
};
|
|
}
|
|
|
|
include "header.php";
|
|
include "headerline.php";
|
|
include "nav.php";
|
|
?>
|
|
|
|
|
|
<!-- Banner -->
|
|
<section id="banner">
|
|
<div class="content">
|
|
|
|
<?php if (!$hasAccess): ?>
|
|
<h2>Kein Zugriff</h2>
|
|
<?php else: ?>
|
|
|
|
<h2>Info-Mail versenden</h2>
|
|
<p>Verschickt an alle aktiven Mitglieder eine E-Mail mit dem aktuellen
|
|
Kaffeelisten-Stand. Im Dry-Run wird nichts wirklich versendet, aber jeder
|
|
Empfänger wird im Versandlog unten protokolliert.</p>
|
|
|
|
<?php if ($liveFlash): ?>
|
|
<div class="hint-box success"><p>Die Info-Mails wurden versendet.</p></div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($ergebnisse !== null): ?>
|
|
<h3>Ergebnis dieses Laufs (<?php echo $dryRun ? 'Dry-Run' : 'Live-Versand'; ?>)</h3>
|
|
<table>
|
|
<tr><th>Name</th><th>E-Mail</th><th>Status</th></tr>
|
|
<?php foreach ($ergebnisse as $eintrag): ?>
|
|
<tr>
|
|
<td><?php echo saas_html($eintrag['name']); ?></td>
|
|
<td><?php echo saas_html($eintrag['email']); ?></td>
|
|
<td><?php echo saas_html(mailversenden_status_label($eintrag['status'])); ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
<?php endif; ?>
|
|
|
|
<form method="post" action="mailversenden.php">
|
|
<?php echo app_csrf_field(); ?>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="checkbox" name="dry_run" id="dry_run" checked>
|
|
<label class="form-check-label" for="dry_run">Dry-Run (nichts wirklich versenden, nur protokollieren)</label>
|
|
</div>
|
|
<button type="submit">Info-Mail versenden</button>
|
|
</form>
|
|
|
|
<h3>Versandlog (letzte 20)</h3>
|
|
<table>
|
|
<tr><th>Datum</th><th>Mitglied</th><th>Betreff</th><th>Status</th><th>Fehler</th></tr>
|
|
<?php if ($log === []): ?>
|
|
<tr><td colspan="5">Noch kein Versand protokolliert.</td></tr>
|
|
<?php endif; ?>
|
|
<?php foreach ($log as $eintrag): ?>
|
|
<tr>
|
|
<td><?php echo saas_html($eintrag['created_at']); ?></td>
|
|
<td><?php echo saas_html($eintrag['display_name'] ?? '—'); ?></td>
|
|
<td><?php echo saas_html($eintrag['subject']); ?></td>
|
|
<td><?php echo saas_html(mailversenden_status_label($eintrag['status'])); ?></td>
|
|
<td><?php echo saas_html($eintrag['error'] ?? ''); ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<?php include "footer.php"; ?>
|