mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-13 21:29:46 -06:00
108 lines
2.7 KiB
JavaScript
108 lines
2.7 KiB
JavaScript
import joi from "joi";
|
|
|
|
const nameSchema = joi
|
|
.string()
|
|
.max(50)
|
|
.trim()
|
|
.pattern(/^[A-Za-z]+$/)
|
|
.messages({
|
|
"string.empty": "Name is required",
|
|
"string.max": "Name must be less than 50 characters long",
|
|
"string.pattern.base": "Name must contain only letters",
|
|
});
|
|
|
|
const passwordSchema = joi
|
|
.string()
|
|
.trim()
|
|
.min(8)
|
|
.messages({
|
|
"string.empty": "Password is required",
|
|
"string.min": "Password must be at least 8 characters long",
|
|
})
|
|
.custom((value, helpers) => {
|
|
if (!/[A-Z]/.test(value)) {
|
|
return helpers.message(
|
|
"Password must contain at least one uppercase letter"
|
|
);
|
|
}
|
|
if (!/[a-z]/.test(value)) {
|
|
return helpers.message(
|
|
"Password must contain at least one lowercase letter"
|
|
);
|
|
}
|
|
if (!/\d/.test(value)) {
|
|
return helpers.message("Password must contain at least one number");
|
|
}
|
|
if (!/[!@#$%^&*]/.test(value)) {
|
|
return helpers.message(
|
|
"Password must contain at least one special character"
|
|
);
|
|
}
|
|
|
|
return value;
|
|
});
|
|
|
|
const credentials = joi.object({
|
|
firstName: nameSchema,
|
|
lastName: nameSchema,
|
|
email: joi
|
|
.string()
|
|
.trim()
|
|
.email({ tlds: { allow: false } })
|
|
.messages({
|
|
"string.empty": "Email is required",
|
|
"string.email": "Must be a valid email address",
|
|
}),
|
|
password: passwordSchema,
|
|
newPassword: passwordSchema,
|
|
confirm: joi
|
|
.string()
|
|
.trim()
|
|
.messages({
|
|
"string.empty": "Password confirmation is required",
|
|
})
|
|
.custom((value, helpers) => {
|
|
const { password } = helpers.prefs.context;
|
|
if (value !== password) {
|
|
return helpers.message("Passwords do not match");
|
|
}
|
|
return value;
|
|
}),
|
|
role: joi.array(),
|
|
});
|
|
|
|
const monitorValidation = joi.object({
|
|
url: joi
|
|
.string()
|
|
.trim()
|
|
.messages({ "string.empty": "*This field is required." }),
|
|
name: joi.string().trim().max(50).allow("").messages({
|
|
"string.max": "*This field should not exceed the 50 characters limit.",
|
|
}),
|
|
type: joi
|
|
.string()
|
|
.trim()
|
|
.messages({ "string.empty": "*This field is required." }),
|
|
interval: joi.number().messages({
|
|
"number.base": "*Frequency must be a number.",
|
|
"any.required": "*Frequency is required.",
|
|
}),
|
|
});
|
|
|
|
const imageValidation = joi.object({
|
|
type: joi.string().valid("image/jpeg", "image/png").messages({
|
|
"any.only": "Invalid file format.",
|
|
"string.empty": "File type required.",
|
|
}),
|
|
size: joi
|
|
.number()
|
|
.max(3 * 1024 * 1024)
|
|
.messages({
|
|
"number.base": "File size must be a number.",
|
|
"number.max": "File size must be less than 3 MB.",
|
|
"number.empty": "File size required.",
|
|
}),
|
|
});
|
|
|
|
export { credentials, imageValidation, monitorValidation };
|