Files
formbricks/apps/web/app/page.tsx
T
2024-07-06 09:08:12 +00:00

49 lines
1.5 KiB
TypeScript

import type { Session } from "next-auth";
import { getServerSession } from "next-auth";
import { redirect } from "next/navigation";
import { authOptions } from "@formbricks/lib/authOptions";
import { getFirstEnvironmentByUserId } from "@formbricks/lib/environment/service";
import { getIsFreshInstance } from "@formbricks/lib/instance/service";
import { getOrganizationsByUserId } from "@formbricks/lib/organization/service";
import { TEnvironment } from "@formbricks/types/environment";
import { ClientLogout } from "@formbricks/ui/ClientLogout";
const Page = async () => {
const session: Session | null = await getServerSession(authOptions);
const isFreshInstance = await getIsFreshInstance();
if (!session) {
if (isFreshInstance) {
redirect("/setup/intro");
} else {
redirect("/auth/login");
}
}
if (!session?.user) {
return <ClientLogout />;
}
let environment: TEnvironment | null = null;
try {
environment = await getFirstEnvironmentByUserId(session?.user.id);
} catch (error) {
console.error(`error getting environment: ${error}`);
}
const userOrganizations = await getOrganizationsByUserId(session.user.id);
if (userOrganizations.length === 0) {
return redirect("/setup/organization/create");
}
if (!environment) {
console.error("Failed to get first environment of user");
return redirect(`/organizations/${userOrganizations[0].id}/products/new/channel`);
}
return redirect(`/environments/${environment.id}`);
};
export default Page;