Files
formbricks/packages/lib/utils/users.ts
Dhruwang Jariwala f358254e3c feat: Product onboarding with XM approach (#2770)
Co-authored-by: Johannes <72809645+jobenjada@users.noreply.github.com>
Co-authored-by: Johannes <johannes@formbricks.com>
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2024-06-19 12:29:05 +00:00

105 lines
2.6 KiB
TypeScript

import { hashPassword } from "../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,
}),
});
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}`);
}
};