projeto-hit/backend/src/services/UserServices/UpdateUserService.ts

96 lines
1.9 KiB
TypeScript
Raw Normal View History

import * as Yup from "yup";
import AppError from "../../errors/AppError";
import ShowUserService from "./ShowUserService";
import User from "../../models/User";
import deleteFileFromTMP from "../../helpers/deleteFileFromTMP";
interface UserData {
email?: string;
password?: string;
name?: string;
profile?: string;
queueIds?: number[];
}
interface Request {
userData: UserData;
userId: string | number;
}
interface Response {
id: number;
name: string;
email: string;
profile: string;
}
const UpdateUserService = async ({
userData,
userId
}: Request): Promise<Response | undefined> => {
const user = await ShowUserService(userId);
const schema = Yup.object().shape({
name: Yup.string().min(2),
// email: Yup.string().min(2),
profile: Yup.string(),
password: Yup.string(),
2022-05-25 20:19:38 +00:00
email: Yup.string().trim().required().test(
"Check-email",
"An user with this email already exists.",
async value => {
2023-04-12 17:45:50 +00:00
if (!value) return false;
2023-04-12 17:45:50 +00:00
const emailExists = await User.findOne({ where: { email: value }, raw: true, attributes: ['email', 'id'] });
2023-04-12 17:45:50 +00:00
if (emailExists && user.id != emailExists?.id) {
console.error('The email already exists in another user profile!')
return !emailExists;
}
return true
}
),
2022-05-25 20:19:38 +00:00
});
const { email, password, profile, name, queueIds = [] } = userData;
try {
await schema.validate({ email, password, profile, name });
2023-04-04 12:30:28 +00:00
} catch (err: any) {
throw new AppError(err.message);
}
await user.update({
email,
password,
profile,
name
});
await user.$set("queues", queueIds);
await user.reload();
const serializedUser = {
id: user.id,
name: user.name,
email: user.email,
profile: user.profile,
queues: user.queues
};
deleteFileFromTMP(`botInfo.json`)
return serializedUser;
};
export default UpdateUserService;