mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
151 lines
No EOL
4.2 KiB
TypeScript
151 lines
No EOL
4.2 KiB
TypeScript
import { z } from 'zod';
|
|
|
|
export type ListGame = {
|
|
id: string;
|
|
game_name: string;
|
|
game_id: string;
|
|
collection_id: string;
|
|
wishlist_id: string;
|
|
times_played: number;
|
|
thumb_url: string | null;
|
|
in_collection: boolean;
|
|
in_wishlist: boolean;
|
|
};
|
|
|
|
export const modifyListGameSchema = z.object({
|
|
id: z.string()
|
|
});
|
|
|
|
export type ModifyListGame = typeof modifyListGameSchema;
|
|
|
|
export const userSchema = z.object({
|
|
firstName: z.string().trim().optional(),
|
|
lastName: z.string().trim().optional(),
|
|
email: z.string().email({ message: 'Please enter a valid email address' }).optional(),
|
|
username: z
|
|
.string()
|
|
.trim()
|
|
.min(3, { message: 'Username must be at least 3 characters' })
|
|
.max(50, { message: 'Username must be less than 50 characters' }),
|
|
password: z
|
|
.string({ required_error: 'Password is required' })
|
|
.trim(),
|
|
confirm_password: z
|
|
.string({ required_error: 'Confirm Password is required' })
|
|
.trim(),
|
|
role: z.enum(['USER', 'ADMIN'], { required_error: 'You must have a role' }).default('USER'),
|
|
verified: z.boolean().default(false),
|
|
token: z.string().optional(),
|
|
receiveEmail: z.boolean().default(false),
|
|
createdAt: z.date().optional(),
|
|
updatedAt: z.date().optional()
|
|
});
|
|
|
|
export const signUpSchema = userSchema
|
|
.pick({
|
|
firstName: true,
|
|
lastName: true,
|
|
email: true,
|
|
username: true,
|
|
password: true,
|
|
confirm_password: true,
|
|
terms: true
|
|
})
|
|
.superRefine(({ confirm_password, password }, ctx) => {
|
|
refinePasswords(confirm_password, password, ctx);
|
|
});
|
|
|
|
export const signInSchema = userSchema.pick({
|
|
username: true,
|
|
password: true
|
|
});
|
|
|
|
export const updateUserPasswordSchema = userSchema
|
|
.pick({ password: true, confirm_password: true })
|
|
.superRefine(({ confirm_password, password }, ctx) => {
|
|
refinePasswords(confirm_password, password, ctx);
|
|
});
|
|
|
|
export const changeUserPasswordSchema = z
|
|
.object({
|
|
current_password: z.string({ required_error: 'Current Password is required' }),
|
|
password: z
|
|
.string({ required_error: 'Password is required' })
|
|
.trim(),
|
|
confirm_password: z
|
|
.string({ required_error: 'Confirm Password is required' })
|
|
.trim()
|
|
})
|
|
.superRefine(({ confirm_password, password }, ctx) => {
|
|
refinePasswords(confirm_password, password, ctx);
|
|
});
|
|
|
|
const refinePasswords = async function(confirm_password: string, password: string, ctx: z.RefinementCtx) {
|
|
comparePasswords(confirm_password, password, ctx);
|
|
checkPasswordStrength(password, ctx);
|
|
}
|
|
|
|
const comparePasswords = async function(confirm_password: string, password: string, ctx: z.RefinementCtx) {
|
|
if (confirm_password !== password) {
|
|
ctx.addIssue({
|
|
code: 'custom',
|
|
message: 'Password and Confirm Password must match',
|
|
path: ['confirm_password']
|
|
});
|
|
}
|
|
}
|
|
|
|
const checkPasswordStrength = async function (password: string, ctx: z.RefinementCtx) {
|
|
const minimumLength = password.length < 8;
|
|
const maximumLength = password.length > 128;
|
|
const containsUppercase = (ch: string) => /[A-Z]/.test(ch);
|
|
const containsLowercase = (ch: string) => /[a-z]/.test(ch);
|
|
const containsSpecialChar = (ch: string) =>
|
|
/[`!@#$%^&*()_\-+=\[\]{};':"\\|,.<>\/?~ ]/.test(ch);
|
|
let countOfUpperCase = 0,
|
|
countOfLowerCase = 0,
|
|
countOfNumbers = 0,
|
|
countOfSpecialChar = 0;
|
|
for (let i = 0; i < password.length; i++) {
|
|
const char = password.charAt(i);
|
|
if (!isNaN(+char)) {
|
|
countOfNumbers++;
|
|
} else if (containsUppercase(char)) {
|
|
countOfUpperCase++;
|
|
} else if (containsLowercase(char)) {
|
|
countOfLowerCase++;
|
|
} else if (containsSpecialChar(char)) {
|
|
countOfSpecialChar++;
|
|
}
|
|
}
|
|
|
|
let errorMessage = 'Your password:';
|
|
|
|
if (countOfLowerCase < 1) {
|
|
errorMessage = ' Must have at least one lowercase letter. ';
|
|
}
|
|
if (countOfNumbers < 1) {
|
|
errorMessage += ' Must have at least one number. ';
|
|
}
|
|
if (countOfUpperCase < 1) {
|
|
errorMessage += ' Must have at least one uppercase letter. ';
|
|
}
|
|
if (countOfSpecialChar < 1) {
|
|
errorMessage += ' Must have at least one special character.';
|
|
}
|
|
if (minimumLength) {
|
|
errorMessage += ' Be at least 8 characters long.';
|
|
}
|
|
if (maximumLength) {
|
|
errorMessage += ' Be less than 128 characters long.';
|
|
}
|
|
|
|
|
|
if (errorMessage.length > 'Your password:'.length) {
|
|
ctx.addIssue({
|
|
code: 'custom',
|
|
message: errorMessage,
|
|
path: ['password']
|
|
});
|
|
}
|
|
} |