fix: Add server-side validation of comment length
This commit is contained in:
36
server/models/validators/TextLength.ts
Normal file
36
server/models/validators/TextLength.ts
Normal file
@@ -0,0 +1,36 @@
|
||||
import { size } from "lodash";
|
||||
import { Node } from "prosemirror-model";
|
||||
import { addAttributeOptions } from "sequelize-typescript";
|
||||
import { ProsemirrorData } from "@shared/types";
|
||||
import ProsemirrorHelper from "@shared/utils/ProsemirrorHelper";
|
||||
import { schema } from "@server/editor";
|
||||
|
||||
/**
|
||||
* A decorator that validates the size of the text within a prosemirror data
|
||||
* object, taking into account unicode characters of variable lengths.
|
||||
*/
|
||||
export default function TextLength({
|
||||
msg,
|
||||
min = 0,
|
||||
max,
|
||||
}: {
|
||||
msg?: string;
|
||||
min?: number;
|
||||
max: number;
|
||||
}): (target: any, propertyName: string) => void {
|
||||
return (target: any, propertyName: string) =>
|
||||
addAttributeOptions(target, propertyName, {
|
||||
validate: {
|
||||
validLength(value: ProsemirrorData) {
|
||||
const text = ProsemirrorHelper.toPlainText(
|
||||
Node.fromJSON(schema, value),
|
||||
schema
|
||||
);
|
||||
|
||||
if (size(text) > max || size(text) < min) {
|
||||
throw new Error(msg);
|
||||
}
|
||||
},
|
||||
},
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user