Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

validation to update awards controller #415

Open
wants to merge 1 commit into
base: testing
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 28 additions & 5 deletions src/middlewares/award.zod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ const CreateAwardDataSchema = z.object({
.min(3)
.regex(charRegex, { message: 'Title cannot contain special characters' }),
year: z.string().min(3),
presented_by: z.string().min(3, { message: 'field cannot be empty' }).regex(charRegex, { message: 'Title cannot contain special characters' }),
presented_by: z
.string()
.min(3, { message: 'field cannot be empty' })
.regex(charRegex, { message: 'Title cannot contain special characters' }),
url: z
.string()
.min(3, { message: 'field cannot be empty' })
Expand All @@ -45,10 +48,30 @@ const CreateAwardDataSchema = z.object({
})

export const UpdateAwardDataSchema = z.object({
title: z.string(),
year: z.string(),
presented_by: z.string(),
url: z.string().optional(),
title: z
.string()
.min(3)
.regex(charRegex, { message: 'Title cannot contain special characters' })
.optional(),
year: z.string().min(3),
presented_by: z
.string()
.min(3, { message: 'field cannot be empty' })
.regex(charRegex, { message: 'Title cannot contain special characters' })
.optional(),
url: z
.string()
.min(3, { message: 'field cannot be empty' })
.optional()
.refine(
(value) => {
if (value) {
return urlRegex.test(value)
}
return true
},
{ message: 'Invalid URL format' }
),
userId: z.string().refine((value) => isUUID(value), {
message: 'userId has to be a valid UUID',
}),
Expand Down