mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-22 06:27:01 +01:00
* fix(deps): update dependency drizzle-zod to ^0.8.2 * chore: update zod to v4 import * fix: path is no longer available in transform context * fix: AnyZodObject does no longer exist * fix: auth env.ts using wrong createEnv and remove unused file env-validation.ts * fix: required_error no longer exists on z.string * fix: zod error map is deprecated and replaced with config * fix: default requires callback now * fix: migrate zod resolver for mantine * fix: remove unused form translation file * fix: wrong enum type * fix: record now requires two arguments * fix: add-confirm-password-refinement type issues * fix: add missing first record argument for entityStateSchema * fix: migrate superrefine to check * fix(deps): upgrade zod-form-data to v3 * fix: migrate superRefine to check for mediaUploadSchema * fix: authProvidersSchema default is array * fix: use stringbool instead of custom implementation * fix: record requires first argument * fix: migrate superRefine to check for certificate router * fix: confirm pasword refinement is overwriting types * fix: email optional not working * fix: migrate intersection to object converter * fix: safe parse return value rename * fix: easier access for min and max number value * fix: migrate superRefine to check for oldmarr import file * fix: inference of enum shape for old-import board-size wrong * fix: errors renamed to issues * chore: address pull request feedback * fix: zod form requires object * fix: inference for use-zod-form not working * fix: remove unnecessary convertion * fix(deps): upgrade trpc-to-openapi to v3 * fix: build error * fix: migrate missing zod imports to v4 * fix: migrate zod records to v4 * fix: missing core package dependency in api module * fix: unable to convert custom zod schema to openapi schema * fix(deps): upgrade zod to v4 * chore(renovate): enable zod dependency updates * test: add simple unit test for convertIntersectionToZodObject --------- Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com>
139 lines
3.9 KiB
TypeScript
139 lines
3.9 KiB
TypeScript
import type { DayOfWeek } from "@mantine/dates";
|
|
import { z } from "zod/v4";
|
|
|
|
import { colorSchemes } from "@homarr/definitions";
|
|
import type { TranslationObject } from "@homarr/translation";
|
|
|
|
import { zodEnumFromArray } from "./enums";
|
|
import { createCustomErrorParams } from "./form/i18n";
|
|
|
|
// We always want the lowercase version of the username to compare it in a case-insensitive way
|
|
export const usernameSchema = z.string().trim().toLowerCase().min(3).max(255);
|
|
|
|
const regexCheck = (regex: RegExp) => (value: string) => regex.test(value);
|
|
export const passwordRequirements = [
|
|
{ check: (value) => value.length >= 8, value: "length" },
|
|
{ check: regexCheck(/[a-z]/), value: "lowercase" },
|
|
{ check: regexCheck(/[A-Z]/), value: "uppercase" },
|
|
{ check: regexCheck(/\d/), value: "number" },
|
|
{ check: regexCheck(/[$&+,:;=?@#|'<>.^*()%!\-~`"_/\\[\]{}]/), value: "special" },
|
|
] satisfies {
|
|
check: (value: string) => boolean;
|
|
value: keyof TranslationObject["user"]["field"]["password"]["requirement"];
|
|
}[];
|
|
|
|
export const userPasswordSchema = z
|
|
.string()
|
|
.min(8)
|
|
.max(255)
|
|
.refine(
|
|
(value) => {
|
|
return passwordRequirements.every((requirement) => requirement.check(value));
|
|
},
|
|
{
|
|
params: createCustomErrorParams({
|
|
key: "passwordRequirements",
|
|
params: {},
|
|
}),
|
|
},
|
|
);
|
|
|
|
const addConfirmPasswordRefinement = <
|
|
TSchema extends z.ZodObject<{ password: z.core.$ZodString; confirmPassword: z.core.$ZodString }, z.core.$strip>,
|
|
>(
|
|
schema: TSchema,
|
|
) => {
|
|
return schema.refine((data) => data.password === data.confirmPassword, {
|
|
path: ["confirmPassword"],
|
|
params: createCustomErrorParams({
|
|
key: "passwordsDoNotMatch",
|
|
params: {},
|
|
}),
|
|
});
|
|
};
|
|
|
|
export const userBaseCreateSchema = z.object({
|
|
username: usernameSchema,
|
|
password: userPasswordSchema,
|
|
confirmPassword: z.string(),
|
|
email: z.string().email().or(z.string().length(0)).optional(),
|
|
groupIds: z.array(z.string()),
|
|
});
|
|
|
|
export const userCreateSchema = addConfirmPasswordRefinement(userBaseCreateSchema);
|
|
|
|
export const userInitSchema = addConfirmPasswordRefinement(userBaseCreateSchema.omit({ groupIds: true }));
|
|
|
|
export const userSignInSchema = z.object({
|
|
name: z.string().min(1),
|
|
password: z.string().min(1),
|
|
});
|
|
|
|
export const userRegistrationSchema = addConfirmPasswordRefinement(
|
|
z.object({
|
|
username: usernameSchema,
|
|
password: userPasswordSchema,
|
|
confirmPassword: z.string(),
|
|
}),
|
|
);
|
|
|
|
export const userRegistrationApiSchema = userRegistrationSchema.and(
|
|
z.object({
|
|
inviteId: z.string(),
|
|
token: z.string(),
|
|
}),
|
|
);
|
|
|
|
export const userEditProfileSchema = z.object({
|
|
id: z.string(),
|
|
name: usernameSchema,
|
|
email: z
|
|
.string()
|
|
.email()
|
|
.or(z.literal(""))
|
|
.transform((value) => (value === "" ? null : value))
|
|
.optional()
|
|
.nullable(),
|
|
});
|
|
|
|
const baseChangePasswordSchema = z.object({
|
|
previousPassword: z.string().min(1),
|
|
password: userPasswordSchema,
|
|
confirmPassword: z.string(),
|
|
userId: z.string(),
|
|
});
|
|
|
|
export const userChangePasswordSchema = addConfirmPasswordRefinement(baseChangePasswordSchema.omit({ userId: true }));
|
|
|
|
export const userChangePasswordApiSchema = addConfirmPasswordRefinement(baseChangePasswordSchema);
|
|
|
|
export const userChangeHomeBoardsSchema = z.object({
|
|
homeBoardId: z.string().nullable(),
|
|
mobileHomeBoardId: z.string().nullable(),
|
|
});
|
|
|
|
export const userChangeSearchPreferencesSchema = z.object({
|
|
defaultSearchEngineId: z.string().min(1).nullable(),
|
|
openInNewTab: z.boolean(),
|
|
});
|
|
|
|
export const userChangeColorSchemeSchema = z.object({
|
|
colorScheme: zodEnumFromArray(colorSchemes),
|
|
});
|
|
|
|
export const userFirstDayOfWeekSchema = z.object({
|
|
firstDayOfWeek: z
|
|
.custom<DayOfWeek>((value) => z.number().min(0).max(6).safeParse(value).success)
|
|
.meta({
|
|
override: {
|
|
type: "integer",
|
|
minimum: 0,
|
|
maximum: 6,
|
|
},
|
|
}),
|
|
});
|
|
|
|
export const userPingIconsEnabledSchema = z.object({
|
|
pingIconsEnabled: z.boolean(),
|
|
});
|