mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-23 10:08:38 +02:00
Co-authored-by: Eve <eve@multica-ai.local> Co-authored-by: multica-agent <github@multica.ai>
212 lines
8.1 KiB
TypeScript
212 lines
8.1 KiB
TypeScript
"use client";
|
|
|
|
import { Suspense, useEffect, useState } from "react";
|
|
import { useSearchParams, useRouter } from "next/navigation";
|
|
import { useQueryClient } from "@tanstack/react-query";
|
|
import { sanitizeNextUrl, useAuthStore } from "@multica/core/auth";
|
|
import { workspaceKeys } from "@multica/core/workspace/queries";
|
|
import { paths, resolvePostAuthDestination } from "@multica/core/paths";
|
|
import { api } from "@multica/core/api";
|
|
import { validateCliCallback, redirectToCliCallback } from "@multica/views/auth";
|
|
import {
|
|
Card,
|
|
CardHeader,
|
|
CardTitle,
|
|
CardDescription,
|
|
CardContent,
|
|
} from "@multica/ui/components/ui/card";
|
|
import { Button } from "@multica/ui/components/ui/button";
|
|
import { Loader2 } from "lucide-react";
|
|
|
|
function CallbackContent() {
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
const qc = useQueryClient();
|
|
const loginWithGoogle = useAuthStore((s) => s.loginWithGoogle);
|
|
const [error, setError] = useState("");
|
|
const [desktopToken, setDesktopToken] = useState<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
const code = searchParams.get("code");
|
|
if (!code) {
|
|
setError("Missing authorization code");
|
|
return;
|
|
}
|
|
|
|
const errorParam = searchParams.get("error");
|
|
if (errorParam) {
|
|
setError(errorParam === "access_denied" ? "Access denied" : errorParam);
|
|
return;
|
|
}
|
|
|
|
const state = searchParams.get("state") || "";
|
|
const stateParts = state.split(",");
|
|
const isDesktop = stateParts.includes("platform:desktop");
|
|
const nextPart = stateParts.find((p) => p.startsWith("next:"));
|
|
// Strip "next:" prefix, then drop anything that isn't a safe relative path
|
|
// so an attacker-controlled `state=next:https://evil` cannot redirect here.
|
|
const nextUrl = sanitizeNextUrl(nextPart ? nextPart.slice(5) : null);
|
|
|
|
// CLI callback params — carried across the Google OAuth round-trip so
|
|
// headless/WSL2 `multica login` can receive the JWT after browser-based
|
|
// Google auth completes.
|
|
const cliCallbackPart = stateParts.find((p) => p.startsWith("cli_callback:"));
|
|
const cliStatePart = stateParts.find((p) => p.startsWith("cli_state:"));
|
|
const cliCallbackRaw = cliCallbackPart
|
|
? decodeURIComponent(cliCallbackPart.slice("cli_callback:".length))
|
|
: null;
|
|
const cliState = cliStatePart
|
|
? decodeURIComponent(cliStatePart.slice("cli_state:".length))
|
|
: "";
|
|
|
|
const redirectUri = `${window.location.origin}/auth/callback`;
|
|
|
|
// Validate the CLI callback URL before redirecting — the state parameter
|
|
// passes through Google OAuth and must be treated as attacker-controlled.
|
|
const cliCallback =
|
|
cliCallbackRaw && validateCliCallback(cliCallbackRaw)
|
|
? cliCallbackRaw
|
|
: null;
|
|
|
|
if (cliCallback) {
|
|
// CLI login flow: exchange the Google code for a JWT, then redirect the
|
|
// token back to the CLI's local HTTP listener (e.g. WSL2 host).
|
|
api
|
|
.googleLogin(code, redirectUri)
|
|
.then(({ token }) => {
|
|
redirectToCliCallback(cliCallback, token, cliState);
|
|
})
|
|
.catch((err) => {
|
|
setError(err instanceof Error ? err.message : "Login failed");
|
|
});
|
|
} else if (isDesktop) {
|
|
// Desktop flow: exchange code for token, then redirect via deep link
|
|
api
|
|
.googleLogin(code, redirectUri)
|
|
.then(({ token }) => {
|
|
setDesktopToken(token);
|
|
window.location.href = `multica://auth/callback?token=${encodeURIComponent(token)}`;
|
|
})
|
|
.catch((err) => {
|
|
setError(err instanceof Error ? err.message : "Login failed");
|
|
});
|
|
} else {
|
|
// Normal web flow
|
|
loginWithGoogle(code, redirectUri)
|
|
.then(async (loggedInUser) => {
|
|
const wsList = await api.listWorkspaces();
|
|
qc.setQueryData(workspaceKeys.list(), wsList);
|
|
const onboarded = loggedInUser.onboarded_at != null;
|
|
|
|
// 1. nextUrl wins: a `next=/invite/<id>` always survives the OAuth
|
|
// round-trip — the user clicked a specific link and we should
|
|
// honor exactly that destination.
|
|
if (nextUrl) {
|
|
router.push(nextUrl);
|
|
return;
|
|
}
|
|
|
|
// 2. Un-onboarded users may have pending invitations on their
|
|
// email even when no `next=` was carried (came from a fresh
|
|
// login on multica.ai instead of clicking the email link,
|
|
// or `state` was lost across the round-trip). Look them up by
|
|
// email and route to the batch /invitations page if any.
|
|
// Already-onboarded users skip this lookup — their new invites
|
|
// surface in the sidebar dropdown, not as a forced wall.
|
|
if (!onboarded) {
|
|
try {
|
|
const invites = await api.listMyInvitations();
|
|
if (invites.length > 0) {
|
|
qc.setQueryData(workspaceKeys.myInvitations(), invites);
|
|
router.push(paths.invitations());
|
|
return;
|
|
}
|
|
} catch {
|
|
// Network blip on the invite lookup is non-fatal — fall through
|
|
// to the normal post-auth destination so the user isn't stuck
|
|
// on a blank callback screen. Worst case they land on
|
|
// /onboarding and the sidebar will surface invites later.
|
|
}
|
|
}
|
|
|
|
// 3. Default: hand off to the resolver (onboarding for first-timers,
|
|
// first workspace for returning users, /workspaces/new for
|
|
// onboarded users with zero workspaces). Source-attribution
|
|
// backfill for onboarded users with no recorded source is
|
|
// handled by `<SourceBackfillModal />` inside the dashboard
|
|
// shell — not a route detour, so we route straight to dest.
|
|
router.push(resolvePostAuthDestination(wsList, onboarded));
|
|
})
|
|
.catch((err) => {
|
|
setError(err instanceof Error ? err.message : "Login failed");
|
|
});
|
|
}
|
|
}, [searchParams, loginWithGoogle, router, qc]);
|
|
|
|
if (desktopToken) {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center">
|
|
<Card className="w-full max-w-sm">
|
|
<CardHeader className="text-center">
|
|
<CardTitle className="text-2xl">Opening Multica</CardTitle>
|
|
<CardDescription>
|
|
You should see a prompt to open the Multica desktop app. If
|
|
nothing happens, click the button below.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="flex justify-center">
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => {
|
|
window.location.href = `multica://auth/callback?token=${encodeURIComponent(desktopToken)}`;
|
|
}}
|
|
>
|
|
Open Multica Desktop
|
|
</Button>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (error) {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center">
|
|
<Card className="w-full max-w-sm">
|
|
<CardHeader className="text-center">
|
|
<CardTitle className="text-2xl">Login Failed</CardTitle>
|
|
<CardDescription>{error}</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="flex justify-center">
|
|
<a href={paths.login()} className="text-primary underline-offset-4 hover:underline">
|
|
Back to login
|
|
</a>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center">
|
|
<Card className="w-full max-w-sm">
|
|
<CardHeader className="text-center">
|
|
<CardTitle className="text-2xl">Signing in...</CardTitle>
|
|
<CardDescription>Please wait while we complete your login</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="flex justify-center">
|
|
<Loader2 className="h-6 w-6 animate-spin text-muted-foreground" />
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function CallbackPage() {
|
|
return (
|
|
<Suspense fallback={null}>
|
|
<CallbackContent />
|
|
</Suspense>
|
|
);
|
|
}
|