mirror of
https://github.com/fosrl/pangolin.git
synced 2026-09-04 18:29:21 +02:00
120 lines
3.4 KiB
TypeScript
120 lines
3.4 KiB
TypeScript
import { Layout } from "@app/components/Layout";
|
|
import UserVirtualApiKeys from "@app/components/UserVirtualApiKeys";
|
|
import { commandBarNavSections } from "@app/app/navigation";
|
|
import { internal } from "@app/lib/api";
|
|
import { authCookieHeader } from "@app/lib/api/cookies";
|
|
import { verifySession } from "@app/lib/auth/verifySession";
|
|
import { pullEnv } from "@app/lib/pullEnv";
|
|
import UserProvider from "@app/providers/UserProvider";
|
|
import { ListUserOrgsResponse } from "@server/routers/org";
|
|
import { GetOrgOverviewResponse } from "@server/routers/org/getOrgOverview";
|
|
import type { ListMyVirtualApiKeysResponse } from "@server/routers/virtualApiKey/types";
|
|
import { AxiosResponse } from "axios";
|
|
import type { Metadata } from "next";
|
|
import { getTranslations } from "next-intl/server";
|
|
import { redirect } from "next/navigation";
|
|
import { cache } from "react";
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
const t = await getTranslations();
|
|
return {
|
|
title: t("myVirtualApiKeysTitle")
|
|
};
|
|
}
|
|
|
|
type KeysPageProps = {
|
|
params: Promise<{ orgId: string }>;
|
|
};
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default async function KeysPage(props: KeysPageProps) {
|
|
const params = await props.params;
|
|
const orgId = params.orgId;
|
|
|
|
if (!orgId) {
|
|
redirect(`/`);
|
|
}
|
|
|
|
const getUser = cache(verifySession);
|
|
const user = await getUser();
|
|
|
|
if (!user) {
|
|
redirect("/");
|
|
}
|
|
|
|
const cookieHeader = await authCookieHeader();
|
|
|
|
let overview: GetOrgOverviewResponse | undefined;
|
|
try {
|
|
const res = await internal.get<AxiosResponse<GetOrgOverviewResponse>>(
|
|
`/org/${orgId}/overview`,
|
|
cookieHeader
|
|
);
|
|
overview = res.data.data;
|
|
} catch {
|
|
// leave undefined
|
|
}
|
|
|
|
let orgs: ListUserOrgsResponse["orgs"] = [];
|
|
try {
|
|
const getOrgs = cache(async () =>
|
|
internal.get<AxiosResponse<ListUserOrgsResponse>>(
|
|
`/user/${user.userId}/orgs`,
|
|
cookieHeader
|
|
)
|
|
);
|
|
const res = await getOrgs();
|
|
if (res && res.data.data.orgs) {
|
|
orgs = res.data.data.orgs;
|
|
}
|
|
} catch {
|
|
// leave empty
|
|
}
|
|
|
|
if (!orgs.some((org) => org.orgId === orgId)) {
|
|
redirect("/");
|
|
}
|
|
|
|
const env = pullEnv();
|
|
if (env.flags.disableVirtualApiKeysUi) {
|
|
redirect(`/${orgId}`);
|
|
}
|
|
|
|
let keysData: ListMyVirtualApiKeysResponse | null = null;
|
|
try {
|
|
const res = await internal.get<
|
|
AxiosResponse<ListMyVirtualApiKeysResponse>
|
|
>(`/org/${orgId}/my-virtual-api-keys`, cookieHeader);
|
|
keysData = res.data.data;
|
|
} catch {
|
|
redirect(`/${orgId}`);
|
|
}
|
|
|
|
if (!keysData) {
|
|
redirect(`/${orgId}`);
|
|
}
|
|
|
|
const primaryOrg = orgs.find((o) => o.orgId === orgId)?.isPrimaryOrg;
|
|
const isAdminOrOwner = Boolean(overview?.isAdmin || overview?.isOwner);
|
|
|
|
return (
|
|
<UserProvider user={user}>
|
|
<Layout
|
|
orgId={orgId}
|
|
orgs={orgs}
|
|
navItems={[]}
|
|
commandNavItems={commandBarNavSections(env, {
|
|
isPrimaryOrg: primaryOrg
|
|
})}
|
|
showSidebar={false}
|
|
launcherMode
|
|
showViewAsAdmin={isAdminOrOwner}
|
|
env={env}
|
|
>
|
|
<UserVirtualApiKeys orgId={orgId} initialData={keysData} />
|
|
</Layout>
|
|
</UserProvider>
|
|
);
|
|
}
|