3fc5c9ff7a
- Datenbank auf utf8mb4_unicode_ci migriert (migrate_to_utf8mb4.sh) - beos: Spalte 'role' (kommagetrennte Rollen: guide, admin, key, deleted) - BEO-Auswahl im Formular filtert nur noch role='guide' - logbuch_objekte: ObjektName-Spalte entfernt, stattdessen JOIN auf objekte - lib/db.ts: charset utf8mb4 in Connection-Pool - Session und Auth um role-Feld erweitert - compose.yml: phpMyAdmin mit Traefik unter /myadmin - compose.yml: MySQL auf 127.0.0.1:3336 für SSH-Tunnel (lokale Entwicklung) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
'use server';
|
|
|
|
import { redirect } from 'next/navigation';
|
|
import { getSession, createSession } from '@/lib/session';
|
|
import { hashPassword } from '@/lib/auth';
|
|
import { query } from '@/lib/db';
|
|
|
|
export async function changePassword(
|
|
_prevState: { error: string } | undefined,
|
|
formData: FormData
|
|
): Promise<{ error: string }> {
|
|
const session = await getSession();
|
|
if (!session) redirect('/login');
|
|
|
|
const newPassword = formData.get('newPassword') as string;
|
|
const confirmPassword = formData.get('confirmPassword') as string;
|
|
|
|
if (!newPassword || newPassword.length < 6) {
|
|
return { error: 'Das Passwort muss mindestens 6 Zeichen lang sein.' };
|
|
}
|
|
|
|
if (newPassword !== confirmPassword) {
|
|
return { error: 'Die Passwörter stimmen nicht überein.' };
|
|
}
|
|
|
|
const hashed = await hashPassword(newPassword);
|
|
await query(
|
|
'UPDATE beos SET pw = ?, MustChangePassword = 0 WHERE id = ?',
|
|
[hashed, session.beoId]
|
|
);
|
|
|
|
await createSession({
|
|
kuerzel: session.kuerzel,
|
|
beoId: session.beoId,
|
|
beoName: session.beoName,
|
|
mustChangePassword: false,
|
|
isAuthenticated: true,
|
|
role: session.role ?? null,
|
|
});
|
|
|
|
redirect('/');
|
|
}
|