mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
0139b91b5d
* chore: Replace lodash with es-toolkit Migrate all direct lodash imports to es-toolkit/compat for a smaller, faster, lodash-compatible utility library. Transitive lodash usage from other packages remains unchanged. * fix: Restore isPlainObject semantics in CanCan policy The lodash migration aliased `isObject` to `lodash/isPlainObject` and the codemod incorrectly mapped the local name to es-toolkit's `isObject`, which also returns true for arrays and functions. This caused condition objects in policy definitions to be skipped, breaking authorization checks across the codebase. * fix: Restore unicode-aware length counting in validators es-toolkit/compat's size() returns string.length, while lodash's _.size() counts unicode code points. Switch to [...value].length to preserve the previous behavior so multi-byte characters like emoji count as one.
35 lines
1000 B
TypeScript
35 lines
1000 B
TypeScript
import type formidable from "formidable";
|
|
import { isEmpty } from "es-toolkit/compat";
|
|
import { z } from "zod";
|
|
import { ValidateKey } from "@server/validation";
|
|
|
|
export const FilesCreateSchema = z.object({
|
|
body: z.object({
|
|
key: z
|
|
.string()
|
|
.refine(ValidateKey.isValid, { message: ValidateKey.message })
|
|
.transform(ValidateKey.sanitize),
|
|
}),
|
|
file: z.custom<formidable.File>(),
|
|
});
|
|
|
|
export type FilesCreateReq = z.infer<typeof FilesCreateSchema>;
|
|
|
|
export const FilesGetSchema = z.object({
|
|
query: z
|
|
.object({
|
|
key: z
|
|
.string()
|
|
.refine(ValidateKey.isValid, { message: ValidateKey.message })
|
|
.optional()
|
|
.transform((val) => (val ? ValidateKey.sanitize(val) : undefined)),
|
|
sig: z.string().optional(),
|
|
download: z.string().optional(),
|
|
})
|
|
.refine((obj) => !(isEmpty(obj.key) && isEmpty(obj.sig)), {
|
|
error: "One of key or sig is required",
|
|
}),
|
|
});
|
|
|
|
export type FilesGetReq = z.infer<typeof FilesGetSchema>;
|