user() or | Gate::authorize() call resolves for the rest of the request, not whichever | guard happened to be checked first. 'web' stays in the list behind it purely | so a web-only customer at the console door still passes 'auth' (as | themselves) and reaches EnsureAdmin's proper 403 — dropping 'web' entirely | would turn that into a redirect instead. (Tests never caught either gap: | actingAs($x, 'operator') flips the default guard via Auth::shouldUse() | regardless of list order, which masks it. Found by mutation-testing | ConfirmsPassword's guard resolution, not by a failing test.) */ if (AdminArea::isExclusive()) { // Once per accepted hostname, canonical LAST. // // ADMIN_HOSTS may list alternates — a bare IP, a second name — and those // are the recovery paths someone locked out reaches for. Binding only the // first would 404 the console through every one of them. // // Only the canonical registration carries the `admin.` names. Route caching // refuses to serialise two routes under one name, and the alternates exist // to be MATCHED, never to have URLs generated for them: route() should // always produce the canonical hostname. $hosts = AdminArea::hosts(); $canonical = array_shift($hosts); foreach ($hosts as $index => $alternate) { // Guest FIRST: /login has to resolve to the console's own sign-in // before 'auth' ever runs, on every recovery hostname as much as on // the canonical one — that IS the recovery path. Route::domain($alternate) ->middleware(['admin.host', 'guest:operator']) ->prefix(AdminArea::prefix()) ->name("admin.via{$index}.") ->group(base_path('routes/admin-guest.php')); Route::domain($alternate) ->middleware(['admin.host', 'auth:operator,web', 'admin', 'operator.2fa']) ->prefix(AdminArea::prefix()) ->name("admin.via{$index}.") ->group(base_path('routes/admin.php')); } Route::domain($canonical) ->middleware(['admin.host', 'guest:operator']) ->prefix(AdminArea::prefix()) ->name('admin.') ->group(base_path('routes/admin-guest.php')); Route::domain($canonical) ->middleware(['admin.host', 'auth:operator,web', 'admin', 'operator.2fa']) ->prefix(AdminArea::prefix()) ->name('admin.') ->group(base_path('routes/admin.php')); } else { // Shared with the portal: no hostname binding, and the /admin prefix keeps // the two apart by path. Route::middleware(['admin.host', 'guest:operator']) ->prefix(AdminArea::prefix()) ->name('admin.') ->group(base_path('routes/admin-guest.php')); Route::middleware(['admin.host', 'auth:operator,web', 'admin', 'operator.2fa']) ->prefix(AdminArea::prefix()) ->name('admin.') ->group(base_path('routes/admin.php')); } // Old console addresses, once the console has moved off /admin. Permanent, // because it really has moved, and only on the console's own host so this // never hands a stranger a redirect that confirms a console exists. if (AdminArea::isExclusive()) { Route::domain(AdminArea::host()) ->get('/admin/{rest?}', fn (?string $rest = null) => redirect('/'.($rest ?? ''), 301)) ->where('rest', '.*') ->name('admin.legacy'); } // The service status page. Its own address: it used to sit under /legal beside // the imprint and the terms, and nothing about the current health of the // platform is a legal document. // // Bound to its own hostname when one is configured, and every other host // redirects there rather than 404ing — a status page is the one address people // keep in a bookmark and reach for when something is already wrong. $statusHost = (string) config('admin_access.status_host'); if ($statusHost !== '') { // At the ROOT of its own hostname. "status.clupilot.com/status" says the // same word twice and reads like a mistake, because it is one. // // Registered BEFORE the landing page below: `/` exists on both, Laravel // takes the first match, and a host-agnostic route registered earlier wins // over a domain-bound one registered later. Route::domain($statusHost)->get('/', StatusController::class)->name('status'); // The old path on that host keeps working rather than 404ing. Route::domain($statusHost)->get('/status', fn () => redirect()->to('/', 301)); Route::get('/status', fn () => redirect()->away('https://'.$statusHost, 301))->name('status.elsewhere'); } else { Route::get('/status', StatusController::class)->name('status'); } // The website, and what stands at "/" everywhere else. // // The landing page was host-agnostic, so app.clupilot.com served the shop // window: marketing copy and a "sign up" button, at the address where a // customer's servers live. Reported exactly that way. // // Registered in this order for the reason the status page above already // documents: a host-agnostic route registered earlier beats a domain-bound one // registered later, so the bound one has to come first. $siteHost = (string) config('admin_access.site_host'); if ($siteHost !== '') { Route::domain($siteHost)->get('/', LandingController::class)->name('home'); // Every other host — the portal, a bare IP — answers with the product. // Never a 404: "/" is what somebody types from memory, and turning that // into an error page to make a point about hostnames helps nobody. Route::get('/', function () { return redirect()->route(auth()->check() ? 'dashboard' : 'login'); })->name('portal.home'); } else { Route::get('/', LandingController::class)->name('home'); } // Generated, not a static file: while the site is hidden this has to say so, // and a crawler that gets a 404 here simply crawls anyway. Route::get('/robots.txt', function () { $body = App\Support\Settings::bool('site.public', true) ? "User-agent: *\nAllow: /\n" : "User-agent: *\nDisallow: /\n"; return response($body, 200, ['Content-Type' => 'text/plain']); })->name('robots'); // Stripe webhook — paid order → customer provisioning run (CSRF-exempt, signed). Route::post('/webhooks/stripe', StripeWebhookController::class)->name('webhooks.stripe'); // Public legal pages (placeholders — replace with real content before launch). Route::prefix('legal')->name('legal.')->group(function () { Route::get('/impressum', fn () => view('legal', ['title' => 'Impressum']))->name('impressum'); Route::get('/datenschutz', fn () => view('legal', ['title' => 'Datenschutz']))->name('datenschutz'); Route::get('/agb', fn () => view('legal', ['title' => 'AGB']))->name('agb'); // Kept so existing links and bookmarks do not 404 — permanently, because // the page has genuinely moved. Through route() rather than a literal // path: once the page has its own hostname, a relative redirect would land // on the host the visitor is already on, where it no longer answers. Route::get('/status', fn () => redirect()->to(route('status'), 301))->name('status'); }); // Guest auth pages — full-page class-based Livewire components (R1/R2). Fortify // handles the POST actions (login.store, two-factor.login.store) with views off. Route::middleware('guest')->group(function () { Route::get('/login', Login::class)->name('login'); Route::get('/register', \App\Livewire\Auth\Register::class)->name('register'); // Registration POST goes through Fortify's controller but with our own // registration-scoped throttle (Fortify's built-in route has no limiter). Route::post('/register', [\Laravel\Fortify\Http\Controllers\RegisteredUserController::class, 'store']) ->middleware('throttle:registration') ->name('register.store'); Route::get('/two-factor-challenge', TwoFactorChallenge::class)->name('two-factor.login'); }); // Signed and single-use; see ImpersonationController. Deliberately not behind // `auth`: following the link is what creates the session. Route::get('/impersonate/enter/{customer}/{operator}', [ImpersonationController::class, 'enter']) ->name('impersonate.enter'); // Signed in, but the address has not been confirmed yet. Fortify would own // this page, but 'views' => false — it keeps the verify and resend actions and // the app renders its own screens (R1/R2). Route::get('/email/verify', \App\Livewire\Auth\VerifyEmail::class) ->middleware('auth') ->name('verification.notice'); // Customer portal — each sidebar tab is a full-page class-based Livewire // component (R1/R2); paths are English (R13). // // `verified` sits on the whole group rather than on the pages that spend money. // An unconfirmed address is not a billing problem to be caught at checkout: it // is an account that may not belong to the person holding it, and everything // behind here — the servers, the users, the backups — is worth as much to // somebody who typed a stranger's address as it is to its owner. Route::middleware(['auth', 'verified', 'customer.active'])->group(function () { Route::get('/dashboard', Dashboard::class)->name('dashboard'); Route::get('/cloud', Cloud::class)->name('cloud'); Route::get('/users', Users::class)->name('users'); Route::get('/backups', Backups::class)->name('backups'); Route::get('/invoices', Invoices::class)->name('invoices'); Route::get('/billing', Billing::class)->name('billing'); Route::get('/settings', \App\Livewire\Settings::class)->name('settings'); Route::get('/support', Support::class)->name('support'); // Return from an admin impersonation session (accessible as the customer user). // POST so Laravel's CSRF middleware protects the identity change. Route::post('/impersonate/leave', [ImpersonationController::class, 'leave'])->name('impersonate.leave'); });