Files
supabase/apps/studio/components/interfaces/ProjectCreation/ProjectCreation.schema.ts
Ivan Vasilov db4b10f328 fix: Check the password strength before creating a project (#41586)
* Fix types and lint warnings for the password strength function.

* Simplify the form for creating project. Move the password warning into the form schema. Minor fixes.

* Fix the name of the field.

* Move the common behaviour in a function.

* Minor fixes.
2025-12-24 16:18:29 +01:00

50 lines
1.7 KiB
TypeScript

import { DEFAULT_MINIMUM_PASSWORD_STRENGTH } from 'lib/constants'
import { z } from 'zod'
export const FormSchema = z
.object({
organization: z.string({
required_error: 'Please select an organization',
}),
projectName: z
.string()
.trim()
.min(1, 'Please enter a project name.') // Required field check
.min(3, 'Project name must be at least 3 characters long.') // Minimum length check
.max(64, 'Project name must be no longer than 64 characters.'), // Maximum length check
postgresVersion: z.string({
required_error: 'Please enter a Postgres version.',
}),
dbRegion: z.string({
required_error: 'Please select a region.',
}),
cloudProvider: z.string({
required_error: 'Please select a cloud provider.',
}),
dbPass: z
.string({ required_error: 'Please enter a database password.' })
.min(1, 'Password is required.'),
dbPassStrength: z
.union([z.literal(0), z.literal(1), z.literal(2), z.literal(3), z.literal(4)])
.default(0),
dbPassStrengthMessage: z.string().default(''),
dbPassStrengthWarning: z.string().default(''),
instanceSize: z.string().optional(),
dataApi: z.boolean(),
useApiSchema: z.boolean(),
postgresVersionSelection: z.string(),
useOrioleDb: z.boolean(),
})
.superRefine(({ dbPassStrength, dbPassStrengthWarning }, ctx) => {
if (dbPassStrength < DEFAULT_MINIMUM_PASSWORD_STRENGTH) {
ctx.addIssue({
code: z.ZodIssueCode.custom,
path: ['dbPass'],
message: dbPassStrengthWarning || 'Password not secure enough',
})
}
})
export type CreateProjectForm = z.infer<typeof FormSchema>