mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-13 11:42:10 +00:00
65 lines
2.0 KiB
TypeScript
65 lines
2.0 KiB
TypeScript
import { getMostRecentCookieWithLoginname } from "@/lib/cookies";
|
|
import { createCallback, getBrandingSettings, getSession } from "@/lib/zitadel";
|
|
import DynamicTheme from "@/ui/DynamicTheme";
|
|
import SelfServiceMenu from "@/ui/SelfServiceMenu";
|
|
import UserAvatar from "@/ui/UserAvatar";
|
|
import { create } from "@zitadel/client";
|
|
import {
|
|
CreateCallbackRequestSchema,
|
|
SessionSchema,
|
|
} from "@zitadel/proto/zitadel/oidc/v2/oidc_service_pb";
|
|
import { redirect } from "next/navigation";
|
|
|
|
async function loadSession(loginName: string, authRequestId?: string) {
|
|
const recent = await getMostRecentCookieWithLoginname({ loginName });
|
|
|
|
if (authRequestId) {
|
|
return createCallback(
|
|
create(CreateCallbackRequestSchema, {
|
|
authRequestId,
|
|
callbackKind: {
|
|
case: "session",
|
|
value: create(SessionSchema, {
|
|
sessionId: recent.id,
|
|
sessionToken: recent.token,
|
|
}),
|
|
},
|
|
}),
|
|
).then(({ callbackUrl }) => {
|
|
return redirect(callbackUrl);
|
|
});
|
|
}
|
|
return getSession(recent.id, recent.token).then((response) => {
|
|
if (response?.session) {
|
|
return response.session;
|
|
}
|
|
});
|
|
}
|
|
|
|
export default async function Page({ searchParams }: { searchParams: any }) {
|
|
const { loginName, authRequestId, organization } = searchParams;
|
|
const sessionFactors = await loadSession(loginName, authRequestId);
|
|
|
|
const branding = await getBrandingSettings(organization);
|
|
|
|
return (
|
|
<DynamicTheme branding={branding}>
|
|
<div className="flex flex-col items-center space-y-4">
|
|
<h1>{`Welcome ${sessionFactors?.factors?.user?.displayName}`}</h1>
|
|
<p className="ztdl-p mb-6 block">You are signed in.</p>
|
|
|
|
<UserAvatar
|
|
loginName={loginName ?? sessionFactors?.factors?.user?.loginName}
|
|
displayName={sessionFactors?.factors?.user?.displayName}
|
|
showDropdown
|
|
searchParams={searchParams}
|
|
/>
|
|
|
|
{sessionFactors?.id && (
|
|
<SelfServiceMenu sessionId={sessionFactors?.id} />
|
|
)}
|
|
</div>
|
|
</DynamicTheme>
|
|
);
|
|
}
|