Files
formbricks/apps/web/app/lib/users/users.ts
Johannes 50407498ec feat: Formbricks App Redesign (#2581)
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
2024-05-09 15:30:44 +00:00

106 lines
2.6 KiB
TypeScript

import { hashPassword } from "@formbricks/lib/auth/utils";
export const createUser = async (
name: string,
email: string,
password: string,
inviteToken?: string | null
): Promise<any> => {
const hashedPassword = await hashPassword(password);
try {
const res = await fetch(`/api/v1/users`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
name,
email,
password: hashedPassword,
inviteToken,
onboardingCompleted: false,
}),
});
if (res.status !== 200) {
const json = await res.json();
throw Error(json.error);
}
return await res.json();
} catch (error: any) {
throw Error(`${error.message}`);
}
};
export const resendVerificationEmail = async (email: string): Promise<any> => {
try {
const res = await fetch(`/api/v1/users/verification-email`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
email,
}),
});
if (res.status !== 200) {
const json = await res.json();
throw Error(json.error);
}
return await res.json();
} catch (error: any) {
throw Error(`${error.message}`);
}
};
export const forgotPassword = async (email: string) => {
try {
const res = await fetch(`/api/v1/users/forgot-password`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
email,
}),
});
if (res.status !== 200) {
const json = await res.json();
throw Error(json.error);
}
return await res.json();
} catch (error: any) {
throw Error(`${error.message}`);
}
};
export const resetPassword = async (token: string, password: string): Promise<any> => {
const hashedPassword = await hashPassword(password);
try {
const res = await fetch(`/api/v1/users/reset-password`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
token,
hashedPassword,
}),
});
if (res.status !== 200) {
const json = await res.json();
throw Error(json.error);
}
return await res.json();
} catch (error: any) {
throw Error(`${error.message}`);
}
};
export const deleteUser = async (): Promise<any> => {
try {
const res = await fetch("/api/v1/users/me/", {
method: "DELETE",
headers: { "Content-Type": "application/json" },
});
if (res.status !== 200) {
const json = await res.json();
throw Error(json.error);
}
return await res.json();
} catch (error) {
throw Error(`${error.message}`);
}
};