fix(session): preserve intended URL across session timeout with remember-me
Session timeout redirected to /de/login?return_to=... but the remember-me cookie was not cleared by logoutDueToSessionTimeout(). On the next request, autoLoginFromCookie() silently re-logged the user in, causing the MintyPHP router to resolve the login route to pages/index().php (dashboard) instead of the login action — the intended URL redirect logic never executed. Fix: intercept ?return_to= immediately after successful auto-login in index.php and redirect to the sanitized route path. Also harden the login flow with hidden return_to form fields and POST body fallback for cases without remember-me. Additional improvements in this commit: - Convert stored REQUEST_URI to router-compatible path (strip leading slash and locale prefix) via IntendedUrlService::toRoutePath() - Consolidate duplicate CSRF data attributes into shared data-csrf-key and data-csrf-token on <html> element - Add tenant branding (logo) to auth pages via appAuthLogoUrl() helper Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -15,12 +15,21 @@ $requestRuntime = app(RequestRuntimeInterface::class);
|
||||
$sessionStore = app(SessionStoreInterface::class);
|
||||
$intendedUrlService = app(IntendedUrlService::class);
|
||||
|
||||
// Store return_to from query parameter (set by session timeout or auth guard redirect).
|
||||
// Store return_to from query parameter (set by session timeout or auth guard redirect)
|
||||
// or from hidden form field (preserved through multi-stage login POST flow).
|
||||
$returnTo = trim((string) (requestInput()->queryAll()['return_to'] ?? ''));
|
||||
if ($returnTo === '') {
|
||||
$returnTo = trim((string) (requestInput()->bodyAll()['return_to'] ?? ''));
|
||||
}
|
||||
|
||||
if ($returnTo !== '') {
|
||||
$intendedUrlService->store($returnTo, $sessionStore);
|
||||
}
|
||||
|
||||
// Expose sanitized return_to for hidden form fields so it survives across
|
||||
// POST stages even if the query string or session is lost.
|
||||
$returnToSanitized = $intendedUrlService->sanitize($returnTo !== '' ? $returnTo : ($intendedUrlService->retrieve($sessionStore) ?? ''));
|
||||
|
||||
$session = $sessionStore->all();
|
||||
|
||||
if (!empty($session['user']['id'])) {
|
||||
|
||||
Reference in New Issue
Block a user