Files
formbricks/packages/lib/jwt.ts
Dhruwang Jariwala ab80bc1bf2 feat: language switch (#2692)
Co-authored-by: Johannes <johannes@formbricks.com>
Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
2024-06-12 14:10:22 +00:00

64 lines
1.8 KiB
TypeScript

import jwt, { JwtPayload } from "jsonwebtoken";
import { prisma } from "@formbricks/database";
import { env } from "./env";
export const createToken = (userId: string, userEmail: string, options = {}): string => {
return jwt.sign({ id: userId }, env.NEXTAUTH_SECRET + userEmail, options);
};
export const createTokenForLinkSurvey = (surveyId: string, userEmail: string): string => {
return jwt.sign({ email: userEmail }, env.NEXTAUTH_SECRET + surveyId);
};
export const createInviteToken = (inviteId: string, email: string, options = {}): string => {
return jwt.sign({ inviteId, email }, env.NEXTAUTH_SECRET, options);
};
export const verifyTokenForLinkSurvey = (token: string, surveyId: string) => {
try {
const payload = jwt.verify(token, process.env.NEXTAUTH_SECRET + surveyId);
return (payload as jwt.JwtPayload).email || null;
} catch (err) {
return null;
}
};
export const verifyToken = async (token: string, userEmail: string = ""): Promise<JwtPayload> => {
if (!token) {
throw new Error("No token found");
}
const decoded = jwt.decode(token);
const payload: JwtPayload = decoded as JwtPayload;
const { id } = payload;
if (!userEmail) {
const foundUser = await prisma.user.findUnique({
where: { id },
});
if (!foundUser) {
throw new Error("User not found");
}
userEmail = foundUser.email;
}
return jwt.verify(token, env.NEXTAUTH_SECRET + userEmail) as JwtPayload;
};
export const verifyInviteToken = (token: string): { inviteId: string; email: string } => {
try {
const decoded = jwt.decode(token);
const payload: JwtPayload = decoded as JwtPayload;
const { inviteId, email } = payload;
return {
inviteId,
email,
};
} catch (error) {
console.error(`Error verifying invite token: ${error}`);
throw new Error("Invalid or expired invite token");
}
};