mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-29 20:22:59 +00:00
106 lines
4.0 KiB
TypeScript
106 lines
4.0 KiB
TypeScript
import type { InternalResourceRow } from "@app/components/ClientResourcesTable";
|
|
import ClientResourcesTable from "@app/components/ClientResourcesTable";
|
|
import SettingsSectionTitle from "@app/components/SettingsSectionTitle";
|
|
import PrivateResourcesBanner from "@app/components/PrivateResourcesBanner";
|
|
import { internal } from "@app/lib/api";
|
|
import { authCookieHeader } from "@app/lib/api/cookies";
|
|
import { getCachedOrg } from "@app/lib/api/getCachedOrg";
|
|
import OrgProvider from "@app/providers/OrgProvider";
|
|
import type { ListResourcesResponse } from "@server/routers/resource";
|
|
import type { ListAllSiteResourcesByOrgResponse } from "@server/routers/siteResource";
|
|
import type { AxiosResponse } from "axios";
|
|
import { getTranslations } from "next-intl/server";
|
|
import { redirect } from "next/navigation";
|
|
|
|
export interface ClientResourcesPageProps {
|
|
params: Promise<{ orgId: string }>;
|
|
searchParams: Promise<Record<string, string>>;
|
|
}
|
|
|
|
export default async function ClientResourcesPage(
|
|
props: ClientResourcesPageProps
|
|
) {
|
|
const params = await props.params;
|
|
const t = await getTranslations();
|
|
const searchParams = new URLSearchParams(await props.searchParams);
|
|
|
|
let siteResources: ListAllSiteResourcesByOrgResponse["siteResources"] = [];
|
|
let pagination: ListResourcesResponse["pagination"] = {
|
|
total: 0,
|
|
page: 1,
|
|
pageSize: 20
|
|
};
|
|
try {
|
|
const res = await internal.get<
|
|
AxiosResponse<ListAllSiteResourcesByOrgResponse>
|
|
>(
|
|
`/org/${params.orgId}/site-resources?${searchParams.toString()}`,
|
|
await authCookieHeader()
|
|
);
|
|
const responseData = res.data.data;
|
|
siteResources = responseData.siteResources;
|
|
pagination = responseData.pagination;
|
|
} catch (e) {}
|
|
|
|
let org = null;
|
|
try {
|
|
const res = await getCachedOrg(params.orgId);
|
|
org = res.data.data;
|
|
} catch {
|
|
redirect(`/${params.orgId}/settings/resources`);
|
|
}
|
|
|
|
if (!org) {
|
|
redirect(`/${params.orgId}/settings/resources`);
|
|
}
|
|
|
|
const internalResourceRows: InternalResourceRow[] = siteResources.map(
|
|
(siteResource) => {
|
|
return {
|
|
id: siteResource.siteResourceId,
|
|
name: siteResource.name,
|
|
orgId: params.orgId,
|
|
siteName: siteResource.siteName,
|
|
siteAddress: siteResource.siteAddress || null,
|
|
mode: siteResource.mode || ("port" as any),
|
|
// protocol: siteResource.protocol,
|
|
// proxyPort: siteResource.proxyPort,
|
|
siteId: siteResource.siteId,
|
|
destination: siteResource.destination,
|
|
// destinationPort: siteResource.destinationPort,
|
|
alias: siteResource.alias || null,
|
|
aliasAddress: siteResource.aliasAddress || null,
|
|
siteNiceId: siteResource.siteNiceId,
|
|
niceId: siteResource.niceId,
|
|
tcpPortRangeString: siteResource.tcpPortRangeString || null,
|
|
udpPortRangeString: siteResource.udpPortRangeString || null,
|
|
disableIcmp: siteResource.disableIcmp || false,
|
|
authDaemonMode: siteResource.authDaemonMode ?? null,
|
|
authDaemonPort: siteResource.authDaemonPort ?? null
|
|
};
|
|
}
|
|
);
|
|
return (
|
|
<>
|
|
<SettingsSectionTitle
|
|
title={t("clientResourceTitle")}
|
|
description={t("clientResourceDescription")}
|
|
/>
|
|
|
|
<PrivateResourcesBanner orgId={params.orgId} />
|
|
|
|
<OrgProvider org={org}>
|
|
<ClientResourcesTable
|
|
internalResources={internalResourceRows}
|
|
orgId={params.orgId}
|
|
rowCount={pagination.total}
|
|
pagination={{
|
|
pageIndex: pagination.page - 1,
|
|
pageSize: pagination.pageSize
|
|
}}
|
|
/>
|
|
</OrgProvider>
|
|
</>
|
|
);
|
|
}
|