mirror of
https://github.com/documenso/documenso.git
synced 2025-11-25 22:21:31 +10:00
148 lines
4.1 KiB
TypeScript
148 lines
4.1 KiB
TypeScript
import Link from 'next/link';
|
|
|
|
import { Trans } from '@lingui/macro';
|
|
import { DateTime } from 'luxon';
|
|
|
|
import { setupI18nSSR } from '@documenso/lib/client-only/providers/i18n.server';
|
|
import { getServerComponentSession } from '@documenso/lib/next-auth/get-server-component-session';
|
|
import { encryptSecondaryData } from '@documenso/lib/server-only/crypto/encrypt';
|
|
import { acceptTeamInvitation } from '@documenso/lib/server-only/team/accept-team-invitation';
|
|
import { getTeamById } from '@documenso/lib/server-only/team/get-team';
|
|
import { prisma } from '@documenso/prisma';
|
|
import { TeamMemberInviteStatus } from '@documenso/prisma/client';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
|
|
type AcceptInvitationPageProps = {
|
|
params: {
|
|
token: string;
|
|
};
|
|
};
|
|
|
|
export default async function AcceptInvitationPage({
|
|
params: { token },
|
|
}: AcceptInvitationPageProps) {
|
|
setupI18nSSR();
|
|
|
|
const session = await getServerComponentSession();
|
|
|
|
const teamMemberInvite = await prisma.teamMemberInvite.findUnique({
|
|
where: {
|
|
token,
|
|
},
|
|
});
|
|
|
|
if (!teamMemberInvite) {
|
|
return (
|
|
<div className="w-screen max-w-lg px-4">
|
|
<div className="w-full">
|
|
<h1 className="text-4xl font-semibold">
|
|
<Trans>Invalid token</Trans>
|
|
</h1>
|
|
|
|
<p className="text-muted-foreground mb-4 mt-2 text-sm">
|
|
<Trans>
|
|
This token is invalid or has expired. Please contact your team for a new invitation.
|
|
</Trans>
|
|
</p>
|
|
|
|
<Button asChild>
|
|
<Link href="/">
|
|
<Trans>Return</Trans>
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const team = await getTeamById({ teamId: teamMemberInvite.teamId });
|
|
|
|
const user = await prisma.user.findFirst({
|
|
where: {
|
|
email: {
|
|
equals: teamMemberInvite.email,
|
|
mode: 'insensitive',
|
|
},
|
|
},
|
|
});
|
|
|
|
// Directly convert the team member invite to a team member if they already have an account.
|
|
if (user) {
|
|
await acceptTeamInvitation({ userId: user.id, teamId: team.id });
|
|
}
|
|
|
|
// For users who do not exist yet, set the team invite status to accepted, which is checked during
|
|
// user creation to determine if we should add the user to the team at that time.
|
|
if (!user && teamMemberInvite.status !== TeamMemberInviteStatus.ACCEPTED) {
|
|
await prisma.teamMemberInvite.update({
|
|
where: {
|
|
id: teamMemberInvite.id,
|
|
},
|
|
data: {
|
|
status: TeamMemberInviteStatus.ACCEPTED,
|
|
},
|
|
});
|
|
}
|
|
|
|
const email = encryptSecondaryData({
|
|
data: teamMemberInvite.email,
|
|
expiresAt: DateTime.now().plus({ days: 1 }).toMillis(),
|
|
});
|
|
|
|
if (!user) {
|
|
return (
|
|
<div>
|
|
<h1 className="text-4xl font-semibold">
|
|
<Trans>Team invitation</Trans>
|
|
</h1>
|
|
|
|
<p className="text-muted-foreground mt-2 text-sm">
|
|
<Trans>
|
|
You have been invited by <strong>{team.name}</strong> to join their team.
|
|
</Trans>
|
|
</p>
|
|
|
|
<p className="text-muted-foreground mb-4 mt-1 text-sm">
|
|
<Trans>To accept this invitation you must create an account.</Trans>
|
|
</p>
|
|
|
|
<Button asChild>
|
|
<Link href={`/signup?email=${encodeURIComponent(email)}`}>
|
|
<Trans>Create account</Trans>
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const isSessionUserTheInvitedUser = user.id === session.user?.id;
|
|
|
|
return (
|
|
<div>
|
|
<h1 className="text-4xl font-semibold">
|
|
<Trans>Invitation accepted!</Trans>
|
|
</h1>
|
|
|
|
<p className="text-muted-foreground mb-4 mt-2 text-sm">
|
|
<Trans>
|
|
You have accepted an invitation from <strong>{team.name}</strong> to join their team.
|
|
</Trans>
|
|
</p>
|
|
|
|
{isSessionUserTheInvitedUser ? (
|
|
<Button asChild>
|
|
<Link href="/">
|
|
<Trans>Continue</Trans>
|
|
</Link>
|
|
</Button>
|
|
) : (
|
|
<Button asChild>
|
|
<Link href={`/signin?email=${encodeURIComponent(email)}`}>
|
|
<Trans>Continue to login</Trans>
|
|
</Link>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|