import type { ResourceRow } from "@app/components/ProxyResourcesTable"; import ProxyResourcesTable from "@app/components/ProxyResourcesTable"; import SettingsSectionTitle from "@app/components/SettingsSectionTitle"; import ProxyResourcesBanner from "@app/components/ProxyResourcesBanner"; import { internal } from "@app/lib/api"; import { authCookieHeader } from "@app/lib/api/cookies"; import OrgProvider from "@app/providers/OrgProvider"; import type { GetOrgResponse } from "@server/routers/org"; import type { ListResourcesResponse } from "@server/routers/resource"; import { GetSiteResponse } from "@server/routers/site/getSite"; import type ResponseT from "@server/types/Response"; import type { AxiosResponse } from "axios"; import { getTranslations } from "next-intl/server"; import { redirect } from "next/navigation"; import { toUnicode } from "punycode"; import { cache } from "react"; import type { Metadata } from "next"; export const metadata: Metadata = { title: "Public Resources" }; export interface ProxyResourcesPageProps { params: Promise<{ orgId: string }>; searchParams: Promise>; } function parsePositiveInt(s: string | undefined): number | undefined { if (!s) return undefined; const n = Number(s); if (!Number.isInteger(n) || n <= 0) return undefined; return n; } export default async function ProxyResourcesPage( props: ProxyResourcesPageProps ) { const params = await props.params; const t = await getTranslations(); const searchParams = new URLSearchParams(await props.searchParams); let resources: ListResourcesResponse["resources"] = []; let pagination: ListResourcesResponse["pagination"] = { total: 0, page: 1, pageSize: 20 }; try { const res = await internal.get>( `/org/${params.orgId}/resources?${searchParams.toString()}`, await authCookieHeader() ); const responseData = res.data.data; resources = responseData.resources; pagination = responseData.pagination; } catch (e) {} const siteIdParam = parsePositiveInt(searchParams.get("siteId") ?? undefined); let initialFilterSite: { siteId: number; name: string; type: string; } | null = null; if (siteIdParam) { try { const siteRes = await internal.get( `/site/${siteIdParam}`, await authCookieHeader() ); const s = (siteRes.data as ResponseT).data; if (s && s.orgId === params.orgId) { initialFilterSite = { siteId: s.siteId, name: s.name, type: s.type }; } } catch { // leave null } } let org = null; try { const getOrg = cache(async () => internal.get>( `/org/${params.orgId}`, await authCookieHeader() ) ); const res = await getOrg(); org = res.data.data; } catch { redirect(`/${params.orgId}/settings/resources`); } if (!org) { redirect(`/${params.orgId}/settings/resources`); } const resourceRows: ResourceRow[] = resources.map((resource) => { return { id: resource.resourceId, name: resource.name, orgId: params.orgId, nice: resource.niceId, domain: `${resource.ssl ? "https://" : "http://"}${toUnicode(resource.fullDomain || "")}`, protocol: resource.protocol, proxyPort: resource.proxyPort, http: resource.http, authState: !resource.http ? "none" : resource.sso || resource.pincodeId !== null || resource.passwordId !== null || resource.whitelist || resource.headerAuthId ? "protected" : "not_protected", enabled: resource.enabled, domainId: resource.domainId || undefined, fullDomain: resource.fullDomain ?? null, ssl: resource.ssl, targets: resource.targets?.map((target) => ({ targetId: target.targetId, ip: target.ip, port: target.port, enabled: target.enabled, healthStatus: target.healthStatus, siteName: target.siteName })), sites: resource.sites ?? [], health: (resource.health as ResourceRow["health"]) ?? undefined }; }); return ( <> ); }