mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-13 18:05:31 +02:00
Replace permanent (301) redirects with temporary (302) redirects across all pages that check authentication state in getServerSideProps. Permanent redirects are cached by the browser indefinitely, causing a bug where users had to manually refresh after login: the browser would cache the unauthenticated redirect (dashboard → login page) and replay it even after a successful login, preventing navigation to the dashboard. Fixes #4220
134 lines
3.6 KiB
TypeScript
134 lines
3.6 KiB
TypeScript
import { IS_CLOUD } from "@dokploy/server/constants";
|
|
import { validateRequest } from "@dokploy/server/lib/auth";
|
|
import { hasPermission } from "@dokploy/server/services/permission";
|
|
import { Loader2 } from "lucide-react";
|
|
import type { GetServerSidePropsContext } from "next";
|
|
import type { ReactElement } from "react";
|
|
import { ContainerFreeMonitoring } from "@/components/dashboard/monitoring/free/container/show-free-container-monitoring";
|
|
import { ShowPaidMonitoring } from "@/components/dashboard/monitoring/paid/servers/show-paid-monitoring";
|
|
import { DashboardLayout } from "@/components/layouts/dashboard-layout";
|
|
import { Card } from "@/components/ui/card";
|
|
import { useLocalStorage } from "@/hooks/useLocalStorage";
|
|
import { api } from "@/utils/api";
|
|
|
|
const BASE_URL = "http://localhost:3001/metrics";
|
|
|
|
const DEFAULT_TOKEN = "metrics";
|
|
|
|
const Dashboard = () => {
|
|
const [toggleMonitoring, _setToggleMonitoring] = useLocalStorage(
|
|
"monitoring-enabled",
|
|
false,
|
|
);
|
|
|
|
const { data: monitoring, isPending } = api.user.getMetricsToken.useQuery();
|
|
return (
|
|
<div className="space-y-4 pb-10">
|
|
{/* <AlertBlock>
|
|
You are watching the <strong>Free</strong> plan.{" "}
|
|
<a
|
|
href="https://dokploy.com#pricing"
|
|
target="_blank"
|
|
className="underline"
|
|
rel="noreferrer"
|
|
>
|
|
Upgrade
|
|
</a>{" "}
|
|
to get more features.
|
|
</AlertBlock> */}
|
|
{isPending ? (
|
|
<Card className="bg-sidebar p-2.5 rounded-xl mx-auto items-center">
|
|
<div className="rounded-xl bg-background flex shadow-md px-4 min-h-[50vh] justify-center items-center text-muted-foreground">
|
|
Loading...
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
</div>
|
|
</Card>
|
|
) : (
|
|
<>
|
|
{/* {monitoring?.enabledFeatures && (
|
|
<div className="flex flex-row border w-fit p-4 rounded-lg items-center gap-2">
|
|
<Label className="text-muted-foreground">Change Monitoring</Label>
|
|
<Switch
|
|
checked={toggleMonitoring}
|
|
onCheckedChange={setToggleMonitoring}
|
|
/>
|
|
</div>
|
|
)} */}
|
|
{toggleMonitoring ? (
|
|
<Card className="bg-sidebar p-2.5 rounded-xl mx-auto">
|
|
<div className="rounded-xl bg-background shadow-md">
|
|
<ShowPaidMonitoring
|
|
BASE_URL={
|
|
process.env.NODE_ENV === "production"
|
|
? `http://${monitoring?.serverIp}:${monitoring?.metricsConfig?.server?.port}/metrics`
|
|
: BASE_URL
|
|
}
|
|
token={
|
|
process.env.NODE_ENV === "production"
|
|
? monitoring?.metricsConfig?.server?.token
|
|
: DEFAULT_TOKEN
|
|
}
|
|
/>
|
|
</div>
|
|
</Card>
|
|
) : (
|
|
<Card className="h-full bg-sidebar p-2.5 rounded-xl">
|
|
<div className="rounded-xl bg-background shadow-md p-6">
|
|
<ContainerFreeMonitoring appName="dokploy" />
|
|
</div>
|
|
</Card>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Dashboard;
|
|
|
|
Dashboard.getLayout = (page: ReactElement) => {
|
|
return <DashboardLayout>{page}</DashboardLayout>;
|
|
};
|
|
export async function getServerSideProps(
|
|
ctx: GetServerSidePropsContext<{ serviceId: string }>,
|
|
) {
|
|
if (IS_CLOUD) {
|
|
return {
|
|
redirect: {
|
|
permanent: false,
|
|
destination: "/dashboard/home",
|
|
},
|
|
};
|
|
}
|
|
const { user, session } = await validateRequest(ctx.req);
|
|
if (!user) {
|
|
return {
|
|
redirect: {
|
|
permanent: false,
|
|
destination: "/",
|
|
},
|
|
};
|
|
}
|
|
|
|
const canView = await hasPermission(
|
|
{
|
|
user: { id: user.id },
|
|
session: { activeOrganizationId: session?.activeOrganizationId || "" },
|
|
},
|
|
{ monitoring: ["read"] },
|
|
);
|
|
|
|
if (!canView) {
|
|
return {
|
|
redirect: {
|
|
permanent: false,
|
|
destination: "/dashboard/home",
|
|
},
|
|
};
|
|
}
|
|
|
|
return {
|
|
props: {},
|
|
};
|
|
}
|