21 lines
1.2 KiB
TypeScript
21 lines
1.2 KiB
TypeScript
import { MAX_PASSWORD_LENGTH, MIN_PASSWORD_LENGTH, PASSWORD_STRENGTH_ACME } from '@/config/validation'
|
|
import { object, string } from 'zod'
|
|
|
|
const minPasswordMessage = JSON.stringify(['schema.password.length.min', { min: MIN_PASSWORD_LENGTH }])
|
|
const maxPasswordMessage = JSON.stringify(['schema.password.length.max', { max: MAX_PASSWORD_LENGTH }])
|
|
const maxPasswordStrength = JSON.stringify(
|
|
['schema.password.strength.acme', { min: MIN_PASSWORD_LENGTH, max: MAX_PASSWORD_LENGTH }])
|
|
|
|
export const LoginSchema = object({
|
|
email: string().trim().toLowerCase().email({ message: 'schema.email.required' }),
|
|
password: string().trim().min(1, { message: 'schema.password.required' }),
|
|
})
|
|
|
|
export const RegisterSchema = object({
|
|
email: string().email({ message: 'schema.email.required' }).toLowerCase(),
|
|
password: string().trim().regex(new RegExp(PASSWORD_STRENGTH_ACME, 'mg'), { message: maxPasswordStrength }).
|
|
min(MIN_PASSWORD_LENGTH, { message: minPasswordMessage }).max(MAX_PASSWORD_LENGTH, { message: maxPasswordMessage }),
|
|
name: string().trim().min(1, { message: 'schema.name.required' }),
|
|
})
|
|
|
|
// Password must contain at least a single lowercase, uppercase, digit and special character.
|