@strapi/core 5.51.0 → 5.51.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../../src/services/entity-validator/index.ts"],"sourcesContent":["/**\n * Entity validator\n * Module that will validate input data for entity creation or edition\n */\n\nimport { uniqBy, castArray, isNil, isArray, mergeWith } from 'lodash';\nimport { has, prop, isObject, isEmpty } from 'lodash/fp';\nimport jsonLogic from 'json-logic-js';\nimport strapiUtils from '@strapi/utils';\nimport type { Modules, UID, Struct, Schema } from '@strapi/types';\nimport { Validators, ValidatorMetas } from './validators';\n\ntype CreateOrUpdate = 'creation' | 'update';\n\nconst { yup, validateYupSchema } = strapiUtils;\nconst { isMediaAttribute, isScalarAttribute, getWritableAttributes } = strapiUtils.contentTypes;\nconst { ValidationError } = strapiUtils.errors;\n\ntype ID = { id: string | number };\n\ntype RelationSource = string | number | ID;\n\nexport type ComponentContext = {\n parentContent: {\n // The model of the parent content type that contains the current component.\n model: Struct.Schema;\n // The numeric id of the parent entity that contains the component.\n id?: number;\n // The options passed to the entity validator. From which we can extract\n // entity dimensions such as locale and publication state.\n options?: ValidatorContext;\n };\n // The path to the component within the parent content type schema.\n pathToComponent: string[];\n // If working with a repeatable component this contains the\n // full data of the repeatable component in the current entity.\n repeatableData: Modules.EntityValidator.Entity[];\n fullDynamicZoneContent?: Schema.Attribute.Value<Schema.Attribute.DynamicZone>;\n};\n\ninterface WithComponentContext {\n componentContext?: ComponentContext;\n}\n\ninterface ValidatorMeta<TAttribute = Schema.Attribute.AnyAttribute> extends WithComponentContext {\n attr: TAttribute;\n updatedAttribute: { name: string; value: any };\n}\n\ninterface ValidatorContext {\n isDraft?: boolean;\n locale?: string | null;\n}\n\ninterface ModelValidatorMetas extends WithComponentContext {\n model: Struct.Schema;\n data: Record<string, unknown>;\n entity?: Modules.EntityValidator.Entity;\n}\n\nconst isInteger = (value: unknown): value is number => Number.isInteger(value);\n\nconst addMinMax = <\n T extends {\n min(value: number): T;\n max(value: number): T;\n },\n>(\n validator: T,\n {\n attr,\n updatedAttribute,\n }: ValidatorMeta<Schema.Attribute.AnyAttribute & Schema.Attribute.MinMaxOption<string | number>>\n): T => {\n let nextValidator: T = validator;\n\n if (\n isInteger(attr.min) &&\n (('required' in attr && attr.required) ||\n (Array.isArray(updatedAttribute.value) && updatedAttribute.value.length > 0))\n ) {\n nextValidator = nextValidator.min(attr.min);\n }\n if (isInteger(attr.max)) {\n nextValidator = nextValidator.max(attr.max);\n }\n return nextValidator;\n};\n\nconst addRequiredValidation = (createOrUpdate: CreateOrUpdate) => {\n return <T extends strapiUtils.yup.AnySchema>(\n validator: T,\n {\n attr: { required },\n }: ValidatorMeta<Partial<Schema.Attribute.AnyAttribute & Schema.Attribute.RequiredOption>>\n ): T => {\n let nextValidator = validator;\n\n if (required) {\n if (createOrUpdate === 'creation') {\n nextValidator = nextValidator.notNil();\n } else if (createOrUpdate === 'update') {\n nextValidator = nextValidator.notNull();\n }\n } else {\n nextValidator = nextValidator.nullable();\n }\n return nextValidator;\n };\n};\n\nconst addDefault = (createOrUpdate: CreateOrUpdate) => {\n return (\n validator: strapiUtils.yup.BaseSchema,\n { attr }: ValidatorMeta<Schema.Attribute.AnyAttribute & Schema.Attribute.DefaultOption<unknown>>\n ) => {\n let nextValidator = validator;\n\n if (createOrUpdate === 'creation') {\n if (\n ((attr.type === 'component' && attr.repeatable) || attr.type === 'dynamiczone') &&\n !attr.required\n ) {\n nextValidator = nextValidator.default([]);\n } else {\n nextValidator = nextValidator.default(attr.default);\n }\n } else {\n nextValidator = nextValidator.default(undefined);\n }\n\n return nextValidator;\n };\n};\n\nconst preventCast = (validator: strapiUtils.yup.AnySchema) =>\n validator.transform((val, originalVal) => originalVal);\n\nconst createComponentValidator =\n (createOrUpdate: CreateOrUpdate) =>\n (\n {\n attr,\n updatedAttribute,\n componentContext,\n }: ValidatorMeta<Schema.Attribute.Component<UID.Component, boolean>>,\n { isDraft }: ValidatorContext\n ): strapiUtils.yup.AnySchema => {\n const model = strapi.getModel(attr.component);\n if (!model) {\n throw new Error('Validation failed: Model not found');\n }\n\n if (attr?.repeatable) {\n // FIXME: yup v1\n\n let validator = yup\n .array()\n .of(\n yup.lazy((item) =>\n createModelValidator(createOrUpdate)(\n { componentContext, model, data: item },\n { isDraft }\n ).notNull()\n ) as any\n );\n\n validator = addRequiredValidation(createOrUpdate)(validator, {\n attr: { required: true },\n updatedAttribute,\n });\n\n if (!isDraft) {\n validator = addMinMax(validator, { attr, updatedAttribute });\n }\n\n return validator;\n }\n\n let validator = createModelValidator(createOrUpdate)(\n {\n model,\n data: updatedAttribute.value,\n componentContext,\n },\n { isDraft }\n );\n\n validator = addRequiredValidation(createOrUpdate)(validator, {\n attr: { required: !isDraft && attr.required },\n updatedAttribute,\n });\n\n return validator;\n };\n\nconst createDzValidator =\n (createOrUpdate: CreateOrUpdate) =>\n (\n { attr, updatedAttribute, componentContext }: ValidatorMeta,\n { isDraft }: ValidatorContext\n ): strapiUtils.yup.AnySchema => {\n let validator;\n\n validator = yup.array().of(\n yup.lazy((item) => {\n const model = strapi.getModel(prop('__component', item));\n const schema = yup\n .object()\n .shape({\n __component: yup.string().required().oneOf(Object.keys(strapi.components)),\n })\n .notNull();\n\n return model\n ? schema.concat(\n createModelValidator(createOrUpdate)(\n { model, data: item, componentContext },\n { isDraft }\n )\n )\n : schema;\n }) as any // FIXME: yup v1\n );\n\n validator = addRequiredValidation(createOrUpdate)(validator, {\n attr: { required: true },\n updatedAttribute,\n });\n\n if (!isDraft) {\n validator = addMinMax(validator, { attr, updatedAttribute });\n }\n\n return validator;\n };\n\nconst createRelationValidator = ({\n updatedAttribute,\n}: ValidatorMeta<Schema.Attribute.Relation>) => {\n let validator;\n\n if (Array.isArray(updatedAttribute.value)) {\n validator = yup.array().of(yup.mixed());\n } else {\n validator = yup.mixed();\n }\n\n return validator;\n};\n\nconst createScalarAttributeValidator =\n (createOrUpdate: CreateOrUpdate) => (metas: ValidatorMeta, options: ValidatorContext) => {\n let validator;\n\n if (has(metas.attr.type, Validators)) {\n validator = (Validators as any)[metas.attr.type](metas, options);\n } else {\n // No validators specified - fall back to mixed\n validator = yup.mixed();\n }\n\n validator = addRequiredValidation(createOrUpdate)(validator, {\n attr: { required: !options.isDraft && metas.attr.required },\n updatedAttribute: metas.updatedAttribute,\n });\n\n return validator;\n };\n\nconst createAttributeValidator =\n (createOrUpdate: CreateOrUpdate) =>\n (metas: ValidatorMetas, options: ValidatorContext): strapiUtils.yup.AnySchema => {\n let validator = yup.mixed();\n\n // If field is conditionally invisible, skip all validation for it\n if (metas.attr.conditions?.visible) {\n const isVisible = jsonLogic.apply(metas.attr.conditions.visible, metas.data);\n\n if (!isVisible) {\n return yup.mixed().notRequired(); // Completely skip validation\n }\n }\n\n if (isMediaAttribute(metas.attr)) {\n validator = yup.mixed();\n } else if (isScalarAttribute(metas.attr)) {\n validator = createScalarAttributeValidator(createOrUpdate)(metas, options);\n } else {\n if (metas.attr.type === 'component' && metas.componentContext) {\n // Build the path to the component within the parent content type schema.\n const pathToComponent = [\n ...(metas?.componentContext?.pathToComponent ?? []),\n metas.updatedAttribute.name,\n ];\n\n // If working with a repeatable component, determine the repeatable data\n // based on the component's path.\n\n // In order to validate the repeatable within this entity we need\n // access to the full repeatable data. In case we are validating a\n // nested component within a repeatable.\n // Hence why we set this up when the path to the component is only one level deep.\n const repeatableData = (\n metas.attr.repeatable && pathToComponent.length === 1\n ? metas.updatedAttribute.value\n : metas.componentContext?.repeatableData\n ) as Modules.EntityValidator.Entity[];\n\n const newComponentContext: ComponentContext = {\n ...metas.componentContext,\n pathToComponent,\n repeatableData,\n };\n\n validator = createComponentValidator(createOrUpdate)(\n {\n componentContext: newComponentContext,\n attr: metas.attr,\n updatedAttribute: metas.updatedAttribute,\n },\n options\n );\n } else if (metas.attr.type === 'dynamiczone' && metas.componentContext) {\n const newComponentContext: ComponentContext = {\n ...metas.componentContext,\n fullDynamicZoneContent: metas.updatedAttribute.value,\n pathToComponent: [...metas.componentContext.pathToComponent, metas.updatedAttribute.name],\n };\n\n Object.assign(metas, { componentContext: newComponentContext });\n\n validator = createDzValidator(createOrUpdate)(metas, options);\n } else if (metas.attr.type === 'relation') {\n validator = createRelationValidator({\n attr: metas.attr,\n updatedAttribute: metas.updatedAttribute,\n });\n }\n\n validator = preventCast(validator);\n }\n\n validator = addDefault(createOrUpdate)(validator, metas);\n\n return validator;\n };\n\nconst createModelValidator =\n (createOrUpdate: CreateOrUpdate) =>\n (\n { componentContext, model, data, entity }: ModelValidatorMetas,\n options: ValidatorContext\n ): strapiUtils.yup.AnyObjectSchema => {\n const writableAttributes = model ? getWritableAttributes(model as any) : [];\n\n const schema = writableAttributes.reduce(\n (validators, attributeName) => {\n const metas = {\n attr: model.attributes[attributeName],\n updatedAttribute: { name: attributeName, value: prop(attributeName, data) },\n data,\n model,\n entity,\n componentContext,\n };\n\n const validator = createAttributeValidator(createOrUpdate)(metas, options);\n\n validators[attributeName] = validator;\n\n return validators;\n },\n {} as Record<string, strapiUtils.yup.BaseSchema>\n );\n\n return yup.object().shape(schema);\n };\n\nconst createValidateEntity = (createOrUpdate: CreateOrUpdate) => {\n return async <\n TUID extends UID.ContentType,\n TData extends Modules.EntityService.Params.Data.Input<TUID>,\n >(\n model: Schema.ContentType<TUID>,\n data: TData | Partial<TData> | undefined,\n options?: ValidatorContext,\n entity?: Modules.EntityValidator.Entity\n ): Promise<TData> => {\n if (!isObject(data)) {\n const { displayName } = model.info;\n\n throw new ValidationError(\n `Invalid payload submitted for the ${createOrUpdate} of an entity of type ${displayName}. Expected an object, but got ${typeof data}`\n );\n }\n\n const validator = createModelValidator(createOrUpdate)(\n {\n model,\n data,\n entity,\n componentContext: {\n // Set up the initial component context.\n // Keeping track of parent content type context in which a component will be used.\n // This is necessary to validate component field constraints such as uniqueness.\n parentContent: {\n id: entity?.id,\n model,\n options,\n },\n pathToComponent: [],\n repeatableData: [],\n },\n },\n {\n isDraft: options?.isDraft ?? false,\n locale: options?.locale ?? null,\n }\n )\n .test(\n 'relations-test',\n 'check that all relations exist',\n async function relationsValidation(data) {\n try {\n await checkRelationsExist(buildRelationsStore({ uid: model.uid, data }));\n } catch (e) {\n return this.createError({\n path: this.path,\n message: (e instanceof ValidationError && e.message) || 'Invalid relations',\n });\n }\n return true;\n }\n )\n .required();\n\n return validateYupSchema(validator, {\n strict: false,\n abortEarly: false,\n })(data);\n };\n};\n\n/**\n * Builds an object containing all the media and relations being associated with an entity\n */\nconst buildRelationsStore = <TUID extends UID.Schema>({\n uid,\n data,\n}: {\n uid: TUID;\n data: Record<string, unknown> | null;\n}): Record<string, ID[]> => {\n if (!uid) {\n throw new ValidationError(`Cannot build relations store: \"uid\" is undefined`);\n }\n\n if (isEmpty(data)) {\n return {};\n }\n\n const currentModel = strapi.getModel(uid);\n\n return Object.keys(currentModel.attributes).reduce(\n (result, attributeName: string) => {\n const attribute = currentModel.attributes[attributeName];\n const value = data[attributeName];\n\n if (isNil(value)) {\n return result;\n }\n\n switch (attribute.type) {\n case 'relation':\n case 'media': {\n if (\n attribute.type === 'relation' &&\n (attribute.relation === 'morphToMany' || attribute.relation === 'morphToOne')\n ) {\n // TODO: handle polymorphic relations\n break;\n }\n\n const target =\n // eslint-disable-next-line no-nested-ternary\n attribute.type === 'media' ? 'plugin::upload.file' : attribute.target;\n // As there are multiple formats supported for associating relations\n // with an entity, the value here can be an: array, object or number.\n let source: RelationSource[];\n if (Array.isArray(value)) {\n source = value;\n } else if (isObject(value)) {\n if ('connect' in value && !isNil(value.connect)) {\n source = value.connect as RelationSource[];\n } else if ('set' in value && !isNil(value.set)) {\n source = value.set as RelationSource[];\n } else {\n source = [];\n }\n } else {\n source = castArray(value as RelationSource);\n }\n const idArray = source.map((v) => ({\n id: typeof v === 'object' ? v.id : v,\n }));\n\n // Update the relationStore to keep track of all associations being made\n // with relations and media.\n result[target] = result[target] || [];\n result[target].push(...idArray);\n break;\n }\n case 'component': {\n return castArray(value).reduce((relationsStore, componentValue) => {\n if (!attribute.component) {\n throw new ValidationError(\n `Cannot build relations store from component, component identifier is undefined`\n );\n }\n\n return mergeWith(\n relationsStore,\n buildRelationsStore({\n uid: attribute.component,\n data: componentValue as Record<string, unknown>,\n }),\n (objValue, srcValue) => {\n if (isArray(objValue)) {\n return objValue.concat(srcValue);\n }\n }\n );\n }, result) as Record<string, ID[]>;\n }\n case 'dynamiczone': {\n return castArray(value).reduce((relationsStore, dzValue) => {\n const value = dzValue as Record<string, unknown>;\n if (!value.__component) {\n throw new ValidationError(\n `Cannot build relations store from dynamiczone, component identifier is undefined`\n );\n }\n\n return mergeWith(\n relationsStore,\n buildRelationsStore({\n uid: value.__component as UID.Component,\n data: value,\n }),\n (objValue, srcValue) => {\n if (isArray(objValue)) {\n return objValue.concat(srcValue);\n }\n }\n );\n }, result) as Record<string, ID[]>;\n }\n default:\n break;\n }\n\n return result;\n },\n {} as Record<string, ID[]>\n );\n};\n\n/**\n * Iterate through the relations store and validates that every relation or media\n * mentioned exists\n */\nconst checkRelationsExist = async (relationsStore: Record<string, ID[]> = {}) => {\n const promises: Promise<void>[] = [];\n\n for (const [key, value] of Object.entries(relationsStore)) {\n const evaluate = async () => {\n const uniqueValues = uniqBy(value, `id`);\n const count = await strapi.db.query(key as UID.Schema).count({\n where: {\n id: {\n $in: uniqueValues.map((v) => v.id),\n },\n },\n });\n\n if (count !== uniqueValues.length) {\n throw new ValidationError(\n `${\n uniqueValues.length - count\n } relation(s) of type ${key} associated with this entity do not exist`\n );\n }\n };\n promises.push(evaluate());\n }\n\n return Promise.all(promises);\n};\n\nconst entityValidator: Modules.EntityValidator.EntityValidator = {\n validateEntityCreation: createValidateEntity('creation'),\n validateEntityUpdate: createValidateEntity('update'),\n};\n\nexport default entityValidator;\n"],"names":["yup","validateYupSchema","strapiUtils","isMediaAttribute","isScalarAttribute","getWritableAttributes","contentTypes","ValidationError","errors","isInteger","value","Number","addMinMax","validator","attr","updatedAttribute","nextValidator","min","required","Array","isArray","length","max","addRequiredValidation","createOrUpdate","notNil","notNull","nullable","addDefault","type","repeatable","default","undefined","preventCast","transform","val","originalVal","createComponentValidator","componentContext","isDraft","model","strapi","getModel","component","Error","array","of","lazy","item","createModelValidator","data","createDzValidator","prop","schema","object","shape","__component","string","oneOf","Object","keys","components","concat","createRelationValidator","mixed","createScalarAttributeValidator","metas","options","has","Validators","createAttributeValidator","conditions","visible","isVisible","jsonLogic","apply","notRequired","pathToComponent","name","repeatableData","newComponentContext","fullDynamicZoneContent","assign","entity","writableAttributes","reduce","validators","attributeName","attributes","createValidateEntity","isObject","displayName","info","parentContent","id","locale","test","relationsValidation","checkRelationsExist","buildRelationsStore","uid","e","createError","path","message","strict","abortEarly","isEmpty","currentModel","result","attribute","isNil","relation","target","source","connect","set","castArray","idArray","map","v","push","relationsStore","componentValue","mergeWith","objValue","srcValue","dzValue","promises","key","entries","evaluate","uniqueValues","uniqBy","count","db","query","where","$in","Promise","all","entityValidator","validateEntityCreation","validateEntityUpdate"],"mappings":";;;;;;;;;;;;;AAcA,MAAM,EAAEA,GAAG,EAAEC,iBAAiB,EAAE,GAAGC,4BAAAA;AACnC,MAAM,EAAEC,gBAAgB,EAAEC,iBAAiB,EAAEC,qBAAqB,EAAE,GAAGH,4BAAAA,CAAYI,YAAY;AAC/F,MAAM,EAAEC,eAAe,EAAE,GAAGL,6BAAYM,MAAM;AA4C9C,MAAMC,SAAAA,GAAY,CAACC,KAAAA,GAAoCC,MAAAA,CAAOF,SAAS,CAACC,KAAAA,CAAAA;AAExE,MAAME,YAAY,CAMhBC,SAAAA,EACA,EACEC,IAAI,EACJC,gBAAgB,EAC8E,GAAA;AAEhG,IAAA,IAAIC,aAAAA,GAAmBH,SAAAA;IAEvB,IACEJ,SAAAA,CAAUK,KAAKG,GAAG,CAAA,KACjB,UAAC,IAAcH,IAAAA,IAAQA,IAAAA,CAAKI,QAAQ,IAClCC,MAAMC,OAAO,CAACL,gBAAAA,CAAiBL,KAAK,CAAA,IAAKK,gBAAAA,CAAiBL,KAAK,CAACW,MAAM,GAAG,CAAC,CAAA,EAC7E;AACAL,QAAAA,aAAAA,GAAgBA,aAAAA,CAAcC,GAAG,CAACH,IAAAA,CAAKG,GAAG,CAAA;AAC5C,IAAA;IACA,IAAIR,SAAAA,CAAUK,IAAAA,CAAKQ,GAAG,CAAA,EAAG;AACvBN,QAAAA,aAAAA,GAAgBA,aAAAA,CAAcM,GAAG,CAACR,IAAAA,CAAKQ,GAAG,CAAA;AAC5C,IAAA;IACA,OAAON,aAAAA;AACT,CAAA;AAEA,MAAMO,wBAAwB,CAACC,cAAAA,GAAAA;AAC7B,IAAA,OAAO,CACLX,SAAAA,EACA,EACEC,MAAM,EAAEI,QAAQ,EAAE,EACsE,GAAA;AAE1F,QAAA,IAAIF,aAAAA,GAAgBH,SAAAA;AAEpB,QAAA,IAAIK,QAAAA,EAAU;AACZ,YAAA,IAAIM,mBAAmB,UAAA,EAAY;AACjCR,gBAAAA,aAAAA,GAAgBA,cAAcS,MAAM,EAAA;YACtC,CAAA,MAAO,IAAID,mBAAmB,QAAA,EAAU;AACtCR,gBAAAA,aAAAA,GAAgBA,cAAcU,OAAO,EAAA;AACvC,YAAA;QACF,CAAA,MAAO;AACLV,YAAAA,aAAAA,GAAgBA,cAAcW,QAAQ,EAAA;AACxC,QAAA;QACA,OAAOX,aAAAA;AACT,IAAA,CAAA;AACF,CAAA;AAEA,MAAMY,aAAa,CAACJ,cAAAA,GAAAA;AAClB,IAAA,OAAO,CACLX,SAAAA,EACA,EAAEC,IAAI,EAA0F,GAAA;AAEhG,QAAA,IAAIE,aAAAA,GAAgBH,SAAAA;AAEpB,QAAA,IAAIW,mBAAmB,UAAA,EAAY;AACjC,YAAA,IACE,CAAEV,KAAKe,IAAI,KAAK,eAAef,IAAAA,CAAKgB,UAAU,IAAKhB,IAAAA,CAAKe,IAAI,KAAK,aAAY,KAC7E,CAACf,IAAAA,CAAKI,QAAQ,EACd;gBACAF,aAAAA,GAAgBA,aAAAA,CAAce,OAAO,CAAC,EAAE,CAAA;YAC1C,CAAA,MAAO;AACLf,gBAAAA,aAAAA,GAAgBA,aAAAA,CAAce,OAAO,CAACjB,IAAAA,CAAKiB,OAAO,CAAA;AACpD,YAAA;QACF,CAAA,MAAO;YACLf,aAAAA,GAAgBA,aAAAA,CAAce,OAAO,CAACC,SAAAA,CAAAA;AACxC,QAAA;QAEA,OAAOhB,aAAAA;AACT,IAAA,CAAA;AACF,CAAA;AAEA,MAAMiB,WAAAA,GAAc,CAACpB,SAAAA,GACnBA,SAAAA,CAAUqB,SAAS,CAAC,CAACC,KAAKC,WAAAA,GAAgBA,WAAAA,CAAAA;AAE5C,MAAMC,wBAAAA,GACJ,CAACb,cAAAA,GACD,CACE,EACEV,IAAI,EACJC,gBAAgB,EAChBuB,gBAAgB,EACkD,EACpE,EAAEC,OAAO,EAAoB,GAAA;AAE7B,QAAA,MAAMC,KAAAA,GAAQC,MAAAA,CAAOC,QAAQ,CAAC5B,KAAK6B,SAAS,CAAA;AAC5C,QAAA,IAAI,CAACH,KAAAA,EAAO;AACV,YAAA,MAAM,IAAII,KAAAA,CAAM,oCAAA,CAAA;AAClB,QAAA;AAEA,QAAA,IAAI9B,MAAMgB,UAAAA,EAAY;;AAGpB,YAAA,IAAIjB,SAAAA,GAAYb,GAAAA,CACb6C,KAAK,EAAA,CACLC,EAAE,CACD9C,GAAAA,CAAI+C,IAAI,CAAC,CAACC,IAAAA,GACRC,oBAAAA,CAAqBzB,cAAAA,CAAAA,CACnB;AAAEc,oBAAAA,gBAAAA;AAAkBE,oBAAAA,KAAAA;oBAAOU,IAAAA,EAAMF;iBAAK,EACtC;AAAET,oBAAAA;AAAQ,iBAAA,CAAA,CACVb,OAAO,EAAA,CAAA,CAAA;YAIfb,SAAAA,GAAYU,qBAAAA,CAAsBC,gBAAgBX,SAAAA,EAAW;gBAC3DC,IAAAA,EAAM;oBAAEI,QAAAA,EAAU;AAAK,iBAAA;AACvBH,gBAAAA;AACF,aAAA,CAAA;AAEA,YAAA,IAAI,CAACwB,OAAAA,EAAS;AACZ1B,gBAAAA,SAAAA,GAAYD,UAAUC,SAAAA,EAAW;AAAEC,oBAAAA,IAAAA;AAAMC,oBAAAA;AAAiB,iBAAA,CAAA;AAC5D,YAAA;YAEA,OAAOF,SAAAA;AACT,QAAA;QAEA,IAAIA,SAAAA,GAAYoC,qBAAqBzB,cAAAA,CAAAA,CACnC;AACEgB,YAAAA,KAAAA;AACAU,YAAAA,IAAAA,EAAMnC,iBAAiBL,KAAK;AAC5B4B,YAAAA;SACF,EACA;AAAEC,YAAAA;AAAQ,SAAA,CAAA;QAGZ1B,SAAAA,GAAYU,qBAAAA,CAAsBC,gBAAgBX,SAAAA,EAAW;YAC3DC,IAAAA,EAAM;gBAAEI,QAAAA,EAAU,CAACqB,OAAAA,IAAWzB,IAAAA,CAAKI;AAAS,aAAA;AAC5CH,YAAAA;AACF,SAAA,CAAA;QAEA,OAAOF,SAAAA;AACT,IAAA,CAAA;AAEF,MAAMsC,iBAAAA,GACJ,CAAC3B,cAAAA,GACD,CACE,EAAEV,IAAI,EAAEC,gBAAgB,EAAEuB,gBAAgB,EAAiB,EAC3D,EAAEC,OAAO,EAAoB,GAAA;QAE7B,IAAI1B,SAAAA;QAEJA,SAAAA,GAAYb,GAAAA,CAAI6C,KAAK,EAAA,CAAGC,EAAE,CACxB9C,GAAAA,CAAI+C,IAAI,CAAC,CAACC,IAAAA,GAAAA;AACR,YAAA,MAAMR,KAAAA,GAAQC,MAAAA,CAAOC,QAAQ,CAACU,QAAK,aAAA,EAAeJ,IAAAA,CAAAA,CAAAA;AAClD,YAAA,MAAMK,MAAAA,GAASrD,GAAAA,CACZsD,MAAM,EAAA,CACNC,KAAK,CAAC;gBACLC,WAAAA,EAAaxD,GAAAA,CAAIyD,MAAM,EAAA,CAAGvC,QAAQ,EAAA,CAAGwC,KAAK,CAACC,MAAAA,CAAOC,IAAI,CAACnB,MAAAA,CAAOoB,UAAU,CAAA;AAC1E,aAAA,CAAA,CACCnC,OAAO,EAAA;AAEV,YAAA,OAAOc,KAAAA,GACHa,MAAAA,CAAOS,MAAM,CACXb,qBAAqBzB,cAAAA,CAAAA,CACnB;AAAEgB,gBAAAA,KAAAA;gBAAOU,IAAAA,EAAMF,IAAAA;AAAMV,gBAAAA;aAAiB,EACtC;AAAEC,gBAAAA;aAAQ,CAAA,CAAA,GAGdc,MAAAA;AACN,QAAA,CAAA,CAAA,CAAA;QAGFxC,SAAAA,GAAYU,qBAAAA,CAAsBC,gBAAgBX,SAAAA,EAAW;YAC3DC,IAAAA,EAAM;gBAAEI,QAAAA,EAAU;AAAK,aAAA;AACvBH,YAAAA;AACF,SAAA,CAAA;AAEA,QAAA,IAAI,CAACwB,OAAAA,EAAS;AACZ1B,YAAAA,SAAAA,GAAYD,UAAUC,SAAAA,EAAW;AAAEC,gBAAAA,IAAAA;AAAMC,gBAAAA;AAAiB,aAAA,CAAA;AAC5D,QAAA;QAEA,OAAOF,SAAAA;AACT,IAAA,CAAA;AAEF,MAAMkD,uBAAAA,GAA0B,CAAC,EAC/BhD,gBAAgB,EACyB,GAAA;IACzC,IAAIF,SAAAA;AAEJ,IAAA,IAAIM,KAAAA,CAAMC,OAAO,CAACL,gBAAAA,CAAiBL,KAAK,CAAA,EAAG;AACzCG,QAAAA,SAAAA,GAAYb,IAAI6C,KAAK,EAAA,CAAGC,EAAE,CAAC9C,IAAIgE,KAAK,EAAA,CAAA;IACtC,CAAA,MAAO;AACLnD,QAAAA,SAAAA,GAAYb,IAAIgE,KAAK,EAAA;AACvB,IAAA;IAEA,OAAOnD,SAAAA;AACT,CAAA;AAEA,MAAMoD,8BAAAA,GACJ,CAACzC,cAAAA,GAAmC,CAAC0C,KAAAA,EAAsBC,OAAAA,GAAAA;QACzD,IAAItD,SAAAA;AAEJ,QAAA,IAAIuD,OAAIF,KAAAA,CAAMpD,IAAI,CAACe,IAAI,EAAEwC,qBAAAA,CAAAA,EAAa;YACpCxD,SAAAA,GAAawD,qBAAkB,CAACH,KAAAA,CAAMpD,IAAI,CAACe,IAAI,CAAC,CAACqC,KAAAA,EAAOC,OAAAA,CAAAA;QAC1D,CAAA,MAAO;;AAELtD,YAAAA,SAAAA,GAAYb,IAAIgE,KAAK,EAAA;AACvB,QAAA;QAEAnD,SAAAA,GAAYU,qBAAAA,CAAsBC,gBAAgBX,SAAAA,EAAW;YAC3DC,IAAAA,EAAM;AAAEI,gBAAAA,QAAAA,EAAU,CAACiD,OAAAA,CAAQ5B,OAAO,IAAI2B,KAAAA,CAAMpD,IAAI,CAACI;AAAS,aAAA;AAC1DH,YAAAA,gBAAAA,EAAkBmD,MAAMnD;AAC1B,SAAA,CAAA;QAEA,OAAOF,SAAAA;AACT,IAAA,CAAA;AAEF,MAAMyD,wBAAAA,GACJ,CAAC9C,cAAAA,GACD,CAAC0C,KAAAA,EAAuBC,OAAAA,GAAAA;QACtB,IAAItD,SAAAA,GAAYb,IAAIgE,KAAK,EAAA;;AAGzB,QAAA,IAAIE,KAAAA,CAAMpD,IAAI,CAACyD,UAAU,EAAEC,OAAAA,EAAS;AAClC,YAAA,MAAMC,SAAAA,GAAYC,0BAAAA,CAAUC,KAAK,CAACT,KAAAA,CAAMpD,IAAI,CAACyD,UAAU,CAACC,OAAO,EAAEN,KAAAA,CAAMhB,IAAI,CAAA;AAE3E,YAAA,IAAI,CAACuB,SAAAA,EAAW;AACd,gBAAA,OAAOzE,GAAAA,CAAIgE,KAAK,EAAA,CAAGY,WAAW;AAChC,YAAA;AACF,QAAA;QAEA,IAAIzE,gBAAAA,CAAiB+D,KAAAA,CAAMpD,IAAI,CAAA,EAAG;AAChCD,YAAAA,SAAAA,GAAYb,IAAIgE,KAAK,EAAA;AACvB,QAAA,CAAA,MAAO,IAAI5D,iBAAAA,CAAkB8D,KAAAA,CAAMpD,IAAI,CAAA,EAAG;YACxCD,SAAAA,GAAYoD,8BAAAA,CAA+BzC,gBAAgB0C,KAAAA,EAAOC,OAAAA,CAAAA;QACpE,CAAA,MAAO;YACL,IAAID,KAAAA,CAAMpD,IAAI,CAACe,IAAI,KAAK,WAAA,IAAeqC,KAAAA,CAAM5B,gBAAgB,EAAE;;AAE7D,gBAAA,MAAMuC,eAAAA,GAAkB;uBAClBX,KAAAA,EAAO5B,gBAAAA,EAAkBuC,mBAAmB,EAAE;oBAClDX,KAAAA,CAAMnD,gBAAgB,CAAC+D;AACxB,iBAAA;;;;;;;AASD,gBAAA,MAAMC,iBACJb,KAAAA,CAAMpD,IAAI,CAACgB,UAAU,IAAI+C,eAAAA,CAAgBxD,MAAM,KAAK,CAAA,GAChD6C,MAAMnD,gBAAgB,CAACL,KAAK,GAC5BwD,KAAAA,CAAM5B,gBAAgB,EAAEyC,cAAAA;AAG9B,gBAAA,MAAMC,mBAAAA,GAAwC;AAC5C,oBAAA,GAAGd,MAAM5B,gBAAgB;AACzBuC,oBAAAA,eAAAA;AACAE,oBAAAA;AACF,iBAAA;AAEAlE,gBAAAA,SAAAA,GAAYwB,yBAAyBb,cAAAA,CAAAA,CACnC;oBACEc,gBAAAA,EAAkB0C,mBAAAA;AAClBlE,oBAAAA,IAAAA,EAAMoD,MAAMpD,IAAI;AAChBC,oBAAAA,gBAAAA,EAAkBmD,MAAMnD;iBAC1B,EACAoD,OAAAA,CAAAA;YAEJ,CAAA,MAAO,IAAID,MAAMpD,IAAI,CAACe,IAAI,KAAK,aAAA,IAAiBqC,KAAAA,CAAM5B,gBAAgB,EAAE;AACtE,gBAAA,MAAM0C,mBAAAA,GAAwC;AAC5C,oBAAA,GAAGd,MAAM5B,gBAAgB;oBACzB2C,sBAAAA,EAAwBf,KAAAA,CAAMnD,gBAAgB,CAACL,KAAK;oBACpDmE,eAAAA,EAAiB;2BAAIX,KAAAA,CAAM5B,gBAAgB,CAACuC,eAAe;wBAAEX,KAAAA,CAAMnD,gBAAgB,CAAC+D;AAAK;AAC3F,iBAAA;gBAEAnB,MAAAA,CAAOuB,MAAM,CAAChB,KAAAA,EAAO;oBAAE5B,gBAAAA,EAAkB0C;AAAoB,iBAAA,CAAA;gBAE7DnE,SAAAA,GAAYsC,iBAAAA,CAAkB3B,gBAAgB0C,KAAAA,EAAOC,OAAAA,CAAAA;AACvD,YAAA,CAAA,MAAO,IAAID,KAAAA,CAAMpD,IAAI,CAACe,IAAI,KAAK,UAAA,EAAY;AACzChB,gBAAAA,SAAAA,GAAYkD,uBAAAA,CAAwB;AAClCjD,oBAAAA,IAAAA,EAAMoD,MAAMpD,IAAI;AAChBC,oBAAAA,gBAAAA,EAAkBmD,MAAMnD;AAC1B,iBAAA,CAAA;AACF,YAAA;AAEAF,YAAAA,SAAAA,GAAYoB,WAAAA,CAAYpB,SAAAA,CAAAA;AAC1B,QAAA;QAEAA,SAAAA,GAAYe,UAAAA,CAAWJ,gBAAgBX,SAAAA,EAAWqD,KAAAA,CAAAA;QAElD,OAAOrD,SAAAA;AACT,IAAA,CAAA;AAEF,MAAMoC,oBAAAA,GACJ,CAACzB,cAAAA,GACD,CACE,EAAEc,gBAAgB,EAAEE,KAAK,EAAEU,IAAI,EAAEiC,MAAM,EAAuB,EAC9DhB,OAAAA,GAAAA;AAEA,QAAA,MAAMiB,kBAAAA,GAAqB5C,KAAAA,GAAQnC,qBAAAA,CAAsBmC,KAAAA,CAAAA,GAAgB,EAAE;AAE3E,QAAA,MAAMa,MAAAA,GAAS+B,kBAAAA,CAAmBC,MAAM,CACtC,CAACC,UAAAA,EAAYC,aAAAA,GAAAA;AACX,YAAA,MAAMrB,KAAAA,GAAQ;gBACZpD,IAAAA,EAAM0B,KAAAA,CAAMgD,UAAU,CAACD,aAAAA,CAAc;gBACrCxE,gBAAAA,EAAkB;oBAAE+D,IAAAA,EAAMS,aAAAA;AAAe7E,oBAAAA,KAAAA,EAAO0C,QAAKmC,aAAAA,EAAerC,IAAAA;AAAM,iBAAA;AAC1EA,gBAAAA,IAAAA;AACAV,gBAAAA,KAAAA;AACA2C,gBAAAA,MAAAA;AACA7C,gBAAAA;AACF,aAAA;YAEA,MAAMzB,SAAAA,GAAYyD,wBAAAA,CAAyB9C,cAAAA,CAAAA,CAAgB0C,KAAAA,EAAOC,OAAAA,CAAAA;YAElEmB,UAAU,CAACC,cAAc,GAAG1E,SAAAA;YAE5B,OAAOyE,UAAAA;AACT,QAAA,CAAA,EACA,EAAC,CAAA;AAGH,QAAA,OAAOtF,GAAAA,CAAIsD,MAAM,EAAA,CAAGC,KAAK,CAACF,MAAAA,CAAAA;AAC5B,IAAA,CAAA;AAEF,MAAMoC,uBAAuB,CAACjE,cAAAA,GAAAA;IAC5B,OAAO,OAILgB,KAAAA,EACAU,IAAAA,EACAiB,OAAAA,EACAgB,MAAAA,GAAAA;QAEA,IAAI,CAACO,YAASxC,IAAAA,CAAAA,EAAO;AACnB,YAAA,MAAM,EAAEyC,WAAW,EAAE,GAAGnD,MAAMoD,IAAI;AAElC,YAAA,MAAM,IAAIrF,eAAAA,CACR,CAAC,kCAAkC,EAAEiB,cAAAA,CAAe,sBAAsB,EAAEmE,WAAAA,CAAY,8BAA8B,EAAE,OAAOzC,IAAAA,CAAAA,CAAM,CAAA;AAEzI,QAAA;QAEA,MAAMrC,SAAAA,GAAYoC,qBAAqBzB,cAAAA,CAAAA,CACrC;AACEgB,YAAAA,KAAAA;AACAU,YAAAA,IAAAA;AACAiC,YAAAA,MAAAA;YACA7C,gBAAAA,EAAkB;;;;gBAIhBuD,aAAAA,EAAe;AACbC,oBAAAA,EAAAA,EAAIX,MAAAA,EAAQW,EAAAA;AACZtD,oBAAAA,KAAAA;AACA2B,oBAAAA;AACF,iBAAA;AACAU,gBAAAA,eAAAA,EAAiB,EAAE;AACnBE,gBAAAA,cAAAA,EAAgB;AAClB;SACF,EACA;AACExC,YAAAA,OAAAA,EAAS4B,SAAS5B,OAAAA,IAAW,KAAA;AAC7BwD,YAAAA,MAAAA,EAAQ5B,SAAS4B,MAAAA,IAAU;AAC7B,SAAA,CAAA,CAECC,IAAI,CACH,gBAAA,EACA,gCAAA,EACA,eAAeC,oBAAoB/C,IAAI,EAAA;YACrC,IAAI;AACF,gBAAA,MAAMgD,oBAAoBC,mBAAAA,CAAoB;AAAEC,oBAAAA,GAAAA,EAAK5D,MAAM4D,GAAG;AAAElD,oBAAAA;AAAK,iBAAA,CAAA,CAAA;AACvE,YAAA,CAAA,CAAE,OAAOmD,CAAAA,EAAG;gBACV,OAAO,IAAI,CAACC,WAAW,CAAC;oBACtBC,IAAAA,EAAM,IAAI,CAACA,IAAI;AACfC,oBAAAA,OAAAA,EAAS,CAACH,YAAa9F,eAAAA,IAAmB8F,CAAAA,CAAEG,OAAO,IAAK;AAC1D,iBAAA,CAAA;AACF,YAAA;YACA,OAAO,IAAA;AACT,QAAA,CAAA,CAAA,CAEDtF,QAAQ,EAAA;AAEX,QAAA,OAAOjB,kBAAkBY,SAAAA,EAAW;YAClC4F,MAAAA,EAAQ,KAAA;YACRC,UAAAA,EAAY;SACd,CAAA,CAAGxD,IAAAA,CAAAA;AACL,IAAA,CAAA;AACF,CAAA;AAEA;;AAEC,IACD,MAAMiD,mBAAAA,GAAsB,CAA0B,EACpDC,GAAG,EACHlD,IAAI,EAIL,GAAA;AACC,IAAA,IAAI,CAACkD,GAAAA,EAAK;AACR,QAAA,MAAM,IAAI7F,eAAAA,CAAgB,CAAC,gDAAgD,CAAC,CAAA;AAC9E,IAAA;AAEA,IAAA,IAAIoG,WAAQzD,IAAAA,CAAAA,EAAO;AACjB,QAAA,OAAO,EAAC;AACV,IAAA;IAEA,MAAM0D,YAAAA,GAAenE,MAAAA,CAAOC,QAAQ,CAAC0D,GAAAA,CAAAA;IAErC,OAAOzC,MAAAA,CAAOC,IAAI,CAACgD,YAAAA,CAAapB,UAAU,CAAA,CAAEH,MAAM,CAChD,CAACwB,MAAAA,EAAQtB,aAAAA,GAAAA;AACP,QAAA,MAAMuB,SAAAA,GAAYF,YAAAA,CAAapB,UAAU,CAACD,aAAAA,CAAc;QACxD,MAAM7E,KAAAA,GAAQwC,IAAI,CAACqC,aAAAA,CAAc;AAEjC,QAAA,IAAIwB,QAAMrG,KAAAA,CAAAA,EAAQ;YAChB,OAAOmG,MAAAA;AACT,QAAA;AAEA,QAAA,OAAQC,UAAUjF,IAAI;YACpB,KAAK,UAAA;YACL,KAAK,OAAA;AAAS,gBAAA;AACZ,oBAAA,IACEiF,SAAAA,CAAUjF,IAAI,KAAK,UAAA,KAClBiF,SAAAA,CAAUE,QAAQ,KAAK,aAAA,IAAiBF,SAAAA,CAAUE,QAAQ,KAAK,YAAW,CAAA,EAC3E;AAEA,wBAAA;AACF,oBAAA;AAEA,oBAAA,MAAMC;AAEJH,oBAAAA,SAAAA,CAAUjF,IAAI,KAAK,OAAA,GAAU,qBAAA,GAAwBiF,UAAUG,MAAM;;;oBAGvE,IAAIC,MAAAA;oBACJ,IAAI/F,KAAAA,CAAMC,OAAO,CAACV,KAAAA,CAAAA,EAAQ;wBACxBwG,MAAAA,GAASxG,KAAAA;oBACX,CAAA,MAAO,IAAIgF,YAAShF,KAAAA,CAAAA,EAAQ;AAC1B,wBAAA,IAAI,aAAaA,KAAAA,IAAS,CAACqG,OAAAA,CAAMrG,KAAAA,CAAMyG,OAAO,CAAA,EAAG;AAC/CD,4BAAAA,MAAAA,GAASxG,MAAMyG,OAAO;AACxB,wBAAA,CAAA,MAAO,IAAI,KAAA,IAASzG,KAAAA,IAAS,CAACqG,OAAAA,CAAMrG,KAAAA,CAAM0G,GAAG,CAAA,EAAG;AAC9CF,4BAAAA,MAAAA,GAASxG,MAAM0G,GAAG;wBACpB,CAAA,MAAO;AACLF,4BAAAA,MAAAA,GAAS,EAAE;AACb,wBAAA;oBACF,CAAA,MAAO;AACLA,wBAAAA,MAAAA,GAASG,WAAAA,CAAU3G,KAAAA,CAAAA;AACrB,oBAAA;AACA,oBAAA,MAAM4G,UAAUJ,MAAAA,CAAOK,GAAG,CAAC,CAACC,KAAO;AACjC1B,4BAAAA,EAAAA,EAAI,OAAO0B,CAAAA,KAAM,QAAA,GAAWA,CAAAA,CAAE1B,EAAE,GAAG0B;yBACrC,CAAA,CAAA;;;AAIAX,oBAAAA,MAAM,CAACI,MAAAA,CAAO,GAAGJ,MAAM,CAACI,MAAAA,CAAO,IAAI,EAAE;AACrCJ,oBAAAA,MAAM,CAACI,MAAAA,CAAO,CAACQ,IAAI,CAAA,GAAIH,OAAAA,CAAAA;AACvB,oBAAA;AACF,gBAAA;YACA,KAAK,WAAA;AAAa,gBAAA;AAChB,oBAAA,OAAOD,WAAAA,CAAU3G,KAAAA,CAAAA,CAAO2E,MAAM,CAAC,CAACqC,cAAAA,EAAgBC,cAAAA,GAAAA;wBAC9C,IAAI,CAACb,SAAAA,CAAUnE,SAAS,EAAE;AACxB,4BAAA,MAAM,IAAIpC,eAAAA,CACR,CAAC,8EAA8E,CAAC,CAAA;AAEpF,wBAAA;wBAEA,OAAOqH,WAAAA,CACLF,gBACAvB,mBAAAA,CAAoB;AAClBC,4BAAAA,GAAAA,EAAKU,UAAUnE,SAAS;4BACxBO,IAAAA,EAAMyE;AACR,yBAAA,CAAA,EACA,CAACE,QAAAA,EAAUC,QAAAA,GAAAA;AACT,4BAAA,IAAI1G,UAAQyG,QAAAA,CAAAA,EAAW;gCACrB,OAAOA,QAAAA,CAAS/D,MAAM,CAACgE,QAAAA,CAAAA;AACzB,4BAAA;AACF,wBAAA,CAAA,CAAA;oBAEJ,CAAA,EAAGjB,MAAAA,CAAAA;AACL,gBAAA;YACA,KAAK,aAAA;AAAe,gBAAA;AAClB,oBAAA,OAAOQ,WAAAA,CAAU3G,KAAAA,CAAAA,CAAO2E,MAAM,CAAC,CAACqC,cAAAA,EAAgBK,OAAAA,GAAAA;AAC9C,wBAAA,MAAMrH,KAAAA,GAAQqH,OAAAA;wBACd,IAAI,CAACrH,KAAAA,CAAM8C,WAAW,EAAE;AACtB,4BAAA,MAAM,IAAIjD,eAAAA,CACR,CAAC,gFAAgF,CAAC,CAAA;AAEtF,wBAAA;wBAEA,OAAOqH,WAAAA,CACLF,gBACAvB,mBAAAA,CAAoB;AAClBC,4BAAAA,GAAAA,EAAK1F,MAAM8C,WAAW;4BACtBN,IAAAA,EAAMxC;AACR,yBAAA,CAAA,EACA,CAACmH,QAAAA,EAAUC,QAAAA,GAAAA;AACT,4BAAA,IAAI1G,UAAQyG,QAAAA,CAAAA,EAAW;gCACrB,OAAOA,QAAAA,CAAS/D,MAAM,CAACgE,QAAAA,CAAAA;AACzB,4BAAA;AACF,wBAAA,CAAA,CAAA;oBAEJ,CAAA,EAAGjB,MAAAA,CAAAA;AACL,gBAAA;AAGF;QAEA,OAAOA,MAAAA;AACT,IAAA,CAAA,EACA,EAAC,CAAA;AAEL,CAAA;AAEA;;;AAGC,IACD,MAAMX,mBAAAA,GAAsB,OAAOwB,cAAAA,GAAuC,EAAE,GAAA;AAC1E,IAAA,MAAMM,WAA4B,EAAE;IAEpC,KAAK,MAAM,CAACC,GAAAA,EAAKvH,KAAAA,CAAM,IAAIiD,MAAAA,CAAOuE,OAAO,CAACR,cAAAA,CAAAA,CAAiB;AACzD,QAAA,MAAMS,QAAAA,GAAW,UAAA;AACf,YAAA,MAAMC,YAAAA,GAAeC,QAAAA,CAAO3H,KAAAA,EAAO,CAAC,EAAE,CAAC,CAAA;YACvC,MAAM4H,KAAAA,GAAQ,MAAM7F,MAAAA,CAAO8F,EAAE,CAACC,KAAK,CAACP,GAAAA,CAAAA,CAAmBK,KAAK,CAAC;gBAC3DG,KAAAA,EAAO;oBACL3C,EAAAA,EAAI;AACF4C,wBAAAA,GAAAA,EAAKN,aAAab,GAAG,CAAC,CAACC,CAAAA,GAAMA,EAAE1B,EAAE;AACnC;AACF;AACF,aAAA,CAAA;YAEA,IAAIwC,KAAAA,KAAUF,YAAAA,CAAa/G,MAAM,EAAE;gBACjC,MAAM,IAAId,eAAAA,CACR,CAAA,EACE6H,YAAAA,CAAa/G,MAAM,GAAGiH,KAAAA,CACvB,qBAAqB,EAAEL,GAAAA,CAAI,yCAAyC,CAAC,CAAA;AAE1E,YAAA;AACF,QAAA,CAAA;AACAD,QAAAA,QAAAA,CAASP,IAAI,CAACU,QAAAA,EAAAA,CAAAA;AAChB,IAAA;IAEA,OAAOQ,OAAAA,CAAQC,GAAG,CAACZ,QAAAA,CAAAA;AACrB,CAAA;AAEA,MAAMa,eAAAA,GAA2D;AAC/DC,IAAAA,sBAAAA,EAAwBrD,oBAAAA,CAAqB,UAAA,CAAA;AAC7CsD,IAAAA,oBAAAA,EAAsBtD,oBAAAA,CAAqB,QAAA;AAC7C;;;;"}
1
+ {"version":3,"file":"index.js","sources":["../../../src/services/entity-validator/index.ts"],"sourcesContent":["/**\n * Entity validator\n * Module that will validate input data for entity creation or edition\n */\n\nimport { uniqBy, castArray, isNil, isArray, mergeWith } from 'lodash';\nimport { has, prop, isObject, isEmpty } from 'lodash/fp';\nimport jsonLogic from 'json-logic-js';\nimport strapiUtils from '@strapi/utils';\nimport type { Modules, UID, Struct, Schema } from '@strapi/types';\nimport { Validators, ValidatorMetas } from './validators';\n\ntype CreateOrUpdate = 'creation' | 'update';\n\nconst { yup, validateYupSchema } = strapiUtils;\nconst { isMediaAttribute, isScalarAttribute, getWritableAttributes } = strapiUtils.contentTypes;\nconst { isAnyToOne } = strapiUtils.relations;\nconst { ValidationError } = strapiUtils.errors;\n\ntype ID = { id: string | number };\n\ntype RelationSource = string | number | ID;\n\nexport type ComponentContext = {\n parentContent: {\n // The model of the parent content type that contains the current component.\n model: Struct.Schema;\n // The numeric id of the parent entity that contains the component.\n id?: number;\n // The options passed to the entity validator. From which we can extract\n // entity dimensions such as locale and publication state.\n options?: ValidatorContext;\n };\n // The path to the component within the parent content type schema.\n pathToComponent: string[];\n // If working with a repeatable component this contains the\n // full data of the repeatable component in the current entity.\n repeatableData: Modules.EntityValidator.Entity[];\n fullDynamicZoneContent?: Schema.Attribute.Value<Schema.Attribute.DynamicZone>;\n};\n\ninterface WithComponentContext {\n componentContext?: ComponentContext;\n}\n\ninterface ValidatorMeta<TAttribute = Schema.Attribute.AnyAttribute> extends WithComponentContext {\n attr: TAttribute;\n updatedAttribute: { name: string; value: any };\n}\n\ninterface ValidatorContext {\n isDraft?: boolean;\n locale?: string | null;\n strictRelations?: boolean;\n}\n\ninterface ModelValidatorMetas extends WithComponentContext {\n model: Struct.Schema;\n data: Record<string, unknown>;\n entity?: Modules.EntityValidator.Entity;\n}\n\nconst isInteger = (value: unknown): value is number => Number.isInteger(value);\n\nconst addMinMax = <\n T extends {\n min(value: number): T;\n max(value: number): T;\n },\n>(\n validator: T,\n {\n attr,\n updatedAttribute,\n }: ValidatorMeta<Schema.Attribute.AnyAttribute & Schema.Attribute.MinMaxOption<string | number>>\n): T => {\n let nextValidator: T = validator;\n\n if (\n isInteger(attr.min) &&\n (('required' in attr && attr.required) ||\n (Array.isArray(updatedAttribute.value) && updatedAttribute.value.length > 0))\n ) {\n nextValidator = nextValidator.min(attr.min);\n }\n if (isInteger(attr.max)) {\n nextValidator = nextValidator.max(attr.max);\n }\n return nextValidator;\n};\n\nconst addRequiredValidation = (createOrUpdate: CreateOrUpdate) => {\n return <T extends strapiUtils.yup.AnySchema>(\n validator: T,\n {\n attr: { required },\n }: ValidatorMeta<Partial<Schema.Attribute.AnyAttribute & Schema.Attribute.RequiredOption>>\n ): T => {\n let nextValidator = validator;\n\n if (required) {\n if (createOrUpdate === 'creation') {\n nextValidator = nextValidator.notNil();\n } else if (createOrUpdate === 'update') {\n nextValidator = nextValidator.notNull();\n }\n } else {\n nextValidator = nextValidator.nullable();\n }\n return nextValidator;\n };\n};\n\nconst addDefault = (createOrUpdate: CreateOrUpdate) => {\n return (\n validator: strapiUtils.yup.BaseSchema,\n { attr }: ValidatorMeta<Schema.Attribute.AnyAttribute & Schema.Attribute.DefaultOption<unknown>>\n ) => {\n let nextValidator = validator;\n\n if (createOrUpdate === 'creation') {\n if (\n ((attr.type === 'component' && attr.repeatable) || attr.type === 'dynamiczone') &&\n !attr.required\n ) {\n nextValidator = nextValidator.default([]);\n } else {\n nextValidator = nextValidator.default(attr.default);\n }\n } else {\n nextValidator = nextValidator.default(undefined);\n }\n\n return nextValidator;\n };\n};\n\nconst preventCast = (validator: strapiUtils.yup.AnySchema) =>\n validator.transform((val, originalVal) => originalVal);\n\nconst createComponentValidator =\n (createOrUpdate: CreateOrUpdate) =>\n (\n {\n attr,\n updatedAttribute,\n componentContext,\n }: ValidatorMeta<Schema.Attribute.Component<UID.Component, boolean>>,\n options: ValidatorContext\n ): strapiUtils.yup.AnySchema => {\n const model = strapi.getModel(attr.component);\n if (!model) {\n throw new Error('Validation failed: Model not found');\n }\n\n if (attr?.repeatable) {\n // FIXME: yup v1\n\n let validator = yup\n .array()\n .of(\n yup.lazy((item) =>\n createModelValidator(createOrUpdate)(\n { componentContext, model, data: item },\n options\n ).notNull()\n ) as any\n );\n\n validator = addRequiredValidation(createOrUpdate)(validator, {\n attr: { required: true },\n updatedAttribute,\n });\n\n if (!options.isDraft) {\n validator = addMinMax(validator, { attr, updatedAttribute });\n }\n\n return validator;\n }\n\n let validator = createModelValidator(createOrUpdate)(\n {\n model,\n data: updatedAttribute.value,\n componentContext,\n },\n options\n );\n\n validator = addRequiredValidation(createOrUpdate)(validator, {\n attr: { required: !options.isDraft && attr.required },\n updatedAttribute,\n });\n\n return validator;\n };\n\nconst createDzValidator =\n (createOrUpdate: CreateOrUpdate) =>\n (\n { attr, updatedAttribute, componentContext }: ValidatorMeta,\n options: ValidatorContext\n ): strapiUtils.yup.AnySchema => {\n let validator;\n\n validator = yup.array().of(\n yup.lazy((item) => {\n const model = strapi.getModel(prop('__component', item));\n const schema = yup\n .object()\n .shape({\n __component: yup.string().required().oneOf(Object.keys(strapi.components)),\n })\n .notNull();\n\n return model\n ? schema.concat(\n createModelValidator(createOrUpdate)({ model, data: item, componentContext }, options)\n )\n : schema;\n }) as any // FIXME: yup v1\n );\n\n validator = addRequiredValidation(createOrUpdate)(validator, {\n attr: { required: true },\n updatedAttribute,\n });\n\n if (!options.isDraft) {\n validator = addMinMax(validator, { attr, updatedAttribute });\n }\n\n return validator;\n };\n\n/**\n * A relation/media value can be supplied in several shapes: a bare id, an array of ids,\n * or a connect/set object (`{ connect: [...] }` / `{ set: [...] }`). This normalises all\n * of them to \"does this attach at least one entry?\" so required validation is consistent\n * regardless of the input shape (mirrors `buildRelationsStore`'s source extraction).\n */\nconst hasRelationValue = (value: unknown): boolean => {\n if (isNil(value)) {\n return false;\n }\n\n if (Array.isArray(value)) {\n return value.length > 0;\n }\n\n if (isObject(value)) {\n const connect = (value as { connect?: unknown }).connect;\n const set = (value as { set?: unknown }).set;\n\n if (!isNil(connect)) {\n return Array.isArray(connect) ? connect.length > 0 : true;\n }\n if (!isNil(set)) {\n return Array.isArray(set) ? set.length > 0 : true;\n }\n\n // Any other object shape (e.g. a bare `{ id }`) counts as a value.\n return true;\n }\n\n return true;\n};\n\n/**\n * A disconnect-only update payload removes entries without adding or replacing any:\n * actual removals in `disconnect`, no `set`, and no effective additions in `connect`.\n * `connect` counts as \"no additions\" when absent OR an empty array — the Content Manager\n * initializes every relation as `{ connect: [], disconnect: [] }` and keeps `connect: []`\n * in place when the user only removes entries, so `{ connect: [], disconnect: [id] }`\n * is the shape real admin saves produce. A payload with empty `disconnect` (nothing\n * removed) is NOT disconnect-only — it's the CM's untouched-relation no-op.\n */\nconst isDisconnectOnly = (value: unknown): boolean => {\n if (!isObject(value)) {\n return false;\n }\n\n const { connect, set, disconnect } = value as {\n connect?: unknown;\n set?: unknown;\n disconnect?: unknown;\n };\n\n if (!isNil(set)) {\n return false;\n }\n\n const hasAdditions = !isNil(connect) && (!Array.isArray(connect) || connect.length > 0);\n if (hasAdditions) {\n return false;\n }\n\n return !isNil(disconnect) && (!Array.isArray(disconnect) || disconnect.length > 0);\n};\n\n/**\n * Decides whether a required media/relation value should be rejected as empty,\n * mirroring the scalar `required` semantics:\n *\n * - creation (`notNil` analogue): an absent key is a failure — the field must be\n * populated, so anything without a value (`undefined`/`null`/`[]`/empty `set`/`connect`)\n * is rejected.\n * - update (`notNull` analogue): an absent key keeps the existing value, so it passes.\n * Only reject when the request is present AND leaves the field empty. A bare\n * `{ connect: [] }` (no `set`) neither adds nor removes anything → treated as a no-op\n * that passes; `{ set: [] }` / `null` / `[]` explicitly empty the field → rejected.\n *\n * `isToOne` marks a to-one relation / single media, which can hold at most one entry.\n * For those, a disconnect-only update (`{ disconnect: [...] }` with no `connect`/`set`)\n * always leaves the field empty — no DB read needed — so it is rejected on non-draft\n * updates. To-many fields can still hold other entries after a disconnect, so their\n * resulting state can't be known without a DB read and they fall through to a pass\n * (publish re-validates the populated draft for D&P types; documented limitation for\n * non-D&P, tied to the null→[] follow-up).\n *\n * On creation there are no existing rows, so a disconnect-only payload attaches nothing\n * and always leaves the field empty — for both to-one and to-many — so it is rejected\n * regardless of `isToOne`.\n */\nconst relationRequiredFails = (\n createOrUpdate: CreateOrUpdate,\n value: unknown,\n isToOne: boolean\n): boolean => {\n if (createOrUpdate === 'creation') {\n // No existing rows on create, so a disconnect attaches nothing and the field stays\n // empty for both to-one and to-many — reject it before the generic value check, which\n // would otherwise treat the bare `{ disconnect: [...] }` object as a present value.\n if (isDisconnectOnly(value)) {\n return true;\n }\n }\n\n if (createOrUpdate === 'update') {\n // Absent key on update = keep the existing value.\n if (value === undefined) {\n return false;\n }\n\n if (isDisconnectOnly(value)) {\n // A disconnect on a to-one/single field deterministically empties it; on a to-many\n // field the resulting state depends on the current DB rows, so we can't reject here.\n return isToOne;\n }\n\n // A connect-only empty is a no-op, not an emptying operation.\n if (isObject(value) && !isNil((value as { connect?: unknown }).connect)) {\n const connect = (value as { connect?: unknown }).connect;\n const hasSet = !isNil((value as { set?: unknown }).set);\n if (!hasSet && Array.isArray(connect) && connect.length === 0) {\n return false;\n }\n }\n }\n\n return !hasRelationValue(value);\n};\n\nconst createMediaAttributeValidator =\n (createOrUpdate: CreateOrUpdate) =>\n (\n { attr, updatedAttribute }: ValidatorMeta<Schema.Attribute.Media>,\n options: ValidatorContext\n ): strapiUtils.yup.AnySchema => {\n // Media values arrive in several shapes (a bare id, an array of ids, or a\n // `{ connect }` / `{ set }` object on update). `yup.mixed()` accepts all of them;\n // coercing `multiple` media to `yup.array()` would reject the connect/set object\n // syntax that update requests legitimately send. Required-ness is asserted below\n // via `relationRequiredFails`, which understands every shape.\n let validator: strapiUtils.yup.AnySchema = yup.mixed();\n\n // Relational required constraints are only enforced under the strictRelations flag,\n // and never for drafts (mirrors scalar `required` handling via `!isDraft`).\n if (options.strictRelations && !options.isDraft && attr.required) {\n // A media value can arrive as an id, an array, or a connect/set object, so a simple\n // `.notNil()`/`.min()` is not enough — normalise the shape before asserting.\n // Single media holds at most one file, so a disconnect-only update always empties it.\n const isToOne = !attr.multiple;\n validator = validator.test(\n 'required-media',\n `${updatedAttribute.name} must be defined.`,\n () => !relationRequiredFails(createOrUpdate, updatedAttribute.value, isToOne)\n );\n }\n\n return validator;\n };\n\nconst createRelationValidator =\n (createOrUpdate: CreateOrUpdate) =>\n (\n { attr, updatedAttribute }: ValidatorMeta<Schema.Attribute.Relation>,\n options: ValidatorContext\n ): strapiUtils.yup.AnySchema => {\n let validator: strapiUtils.yup.AnySchema;\n\n if (Array.isArray(updatedAttribute.value)) {\n validator = yup.array().of(yup.mixed());\n } else {\n validator = yup.mixed();\n }\n\n // Relational required constraints are only enforced under the strictRelations flag,\n // and never for drafts (mirrors scalar `required` handling via `!isDraft`).\n if (options.strictRelations && !options.isDraft && attr.required) {\n // A relation value can arrive as an id, an array, or a connect/set object, so a\n // simple `.notNil()`/`.min()` is not enough — normalise the shape before asserting.\n // A to-one relation holds at most one target, so a disconnect-only update always empties it.\n const isToOne = isAnyToOne(attr);\n validator = validator.test(\n 'required-relation',\n `${updatedAttribute.name} must be defined.`,\n () => !relationRequiredFails(createOrUpdate, updatedAttribute.value, isToOne)\n );\n }\n\n return validator;\n };\n\nconst createScalarAttributeValidator =\n (createOrUpdate: CreateOrUpdate) => (metas: ValidatorMeta, options: ValidatorContext) => {\n let validator;\n\n if (has(metas.attr.type, Validators)) {\n validator = (Validators as any)[metas.attr.type](metas, options);\n } else {\n // No validators specified - fall back to mixed\n validator = yup.mixed();\n }\n\n validator = addRequiredValidation(createOrUpdate)(validator, {\n attr: { required: !options.isDraft && metas.attr.required },\n updatedAttribute: metas.updatedAttribute,\n });\n\n return validator;\n };\n\nconst createAttributeValidator =\n (createOrUpdate: CreateOrUpdate) =>\n (metas: ValidatorMetas, options: ValidatorContext): strapiUtils.yup.AnySchema => {\n let validator = yup.mixed();\n\n // If field is conditionally invisible, skip all validation for it\n if (metas.attr.conditions?.visible) {\n const isVisible = jsonLogic.apply(metas.attr.conditions.visible, metas.data);\n\n if (!isVisible) {\n return yup.mixed().notRequired(); // Completely skip validation\n }\n }\n\n if (isMediaAttribute(metas.attr)) {\n validator = createMediaAttributeValidator(createOrUpdate)(\n {\n attr: metas.attr as Schema.Attribute.Media,\n updatedAttribute: metas.updatedAttribute,\n },\n options\n );\n } else if (isScalarAttribute(metas.attr)) {\n validator = createScalarAttributeValidator(createOrUpdate)(metas, options);\n } else {\n if (metas.attr.type === 'component' && metas.componentContext) {\n // Build the path to the component within the parent content type schema.\n const pathToComponent = [\n ...(metas?.componentContext?.pathToComponent ?? []),\n metas.updatedAttribute.name,\n ];\n\n // If working with a repeatable component, determine the repeatable data\n // based on the component's path.\n\n // In order to validate the repeatable within this entity we need\n // access to the full repeatable data. In case we are validating a\n // nested component within a repeatable.\n // Hence why we set this up when the path to the component is only one level deep.\n const repeatableData = (\n metas.attr.repeatable && pathToComponent.length === 1\n ? metas.updatedAttribute.value\n : metas.componentContext?.repeatableData\n ) as Modules.EntityValidator.Entity[];\n\n const newComponentContext: ComponentContext = {\n ...metas.componentContext,\n pathToComponent,\n repeatableData,\n };\n\n validator = createComponentValidator(createOrUpdate)(\n {\n componentContext: newComponentContext,\n attr: metas.attr,\n updatedAttribute: metas.updatedAttribute,\n },\n options\n );\n } else if (metas.attr.type === 'dynamiczone' && metas.componentContext) {\n const newComponentContext: ComponentContext = {\n ...metas.componentContext,\n fullDynamicZoneContent: metas.updatedAttribute.value,\n pathToComponent: [...metas.componentContext.pathToComponent, metas.updatedAttribute.name],\n };\n\n Object.assign(metas, { componentContext: newComponentContext });\n\n validator = createDzValidator(createOrUpdate)(metas, options);\n } else if (metas.attr.type === 'relation') {\n validator = createRelationValidator(createOrUpdate)(\n {\n attr: metas.attr,\n updatedAttribute: metas.updatedAttribute,\n },\n options\n );\n }\n\n validator = preventCast(validator);\n }\n\n validator = addDefault(createOrUpdate)(validator, metas);\n\n return validator;\n };\n\nconst createModelValidator =\n (createOrUpdate: CreateOrUpdate) =>\n (\n { componentContext, model, data, entity }: ModelValidatorMetas,\n options: ValidatorContext\n ): strapiUtils.yup.AnyObjectSchema => {\n const writableAttributes = model ? getWritableAttributes(model as any) : [];\n\n const schema = writableAttributes.reduce(\n (validators, attributeName) => {\n const metas = {\n attr: model.attributes[attributeName],\n updatedAttribute: { name: attributeName, value: prop(attributeName, data) },\n data,\n model,\n entity,\n componentContext,\n };\n\n const validator = createAttributeValidator(createOrUpdate)(metas, options);\n\n validators[attributeName] = validator;\n\n return validators;\n },\n {} as Record<string, strapiUtils.yup.BaseSchema>\n );\n\n return yup.object().shape(schema);\n };\n\nconst createValidateEntity = (createOrUpdate: CreateOrUpdate) => {\n return async <\n TUID extends UID.ContentType,\n TData extends Modules.EntityService.Params.Data.Input<TUID>,\n >(\n model: Schema.ContentType<TUID>,\n data: TData | Partial<TData> | undefined,\n options?: ValidatorContext,\n entity?: Modules.EntityValidator.Entity\n ): Promise<TData> => {\n if (!isObject(data)) {\n const { displayName } = model.info;\n\n throw new ValidationError(\n `Invalid payload submitted for the ${createOrUpdate} of an entity of type ${displayName}. Expected an object, but got ${typeof data}`\n );\n }\n\n const validator = createModelValidator(createOrUpdate)(\n {\n model,\n data,\n entity,\n componentContext: {\n // Set up the initial component context.\n // Keeping track of parent content type context in which a component will be used.\n // This is necessary to validate component field constraints such as uniqueness.\n parentContent: {\n id: entity?.id,\n model,\n options,\n },\n pathToComponent: [],\n repeatableData: [],\n },\n },\n {\n isDraft: options?.isDraft ?? false,\n locale: options?.locale ?? null,\n strictRelations: options?.strictRelations ?? false,\n }\n )\n .test(\n 'relations-test',\n 'check that all relations exist',\n async function relationsValidation(data) {\n try {\n await checkRelationsExist(buildRelationsStore({ uid: model.uid, data }));\n } catch (e) {\n return this.createError({\n path: this.path,\n message: (e instanceof ValidationError && e.message) || 'Invalid relations',\n });\n }\n return true;\n }\n )\n .required();\n\n return validateYupSchema(validator, {\n strict: false,\n abortEarly: false,\n })(data);\n };\n};\n\n/**\n * Builds an object containing all the media and relations being associated with an entity\n */\nconst buildRelationsStore = <TUID extends UID.Schema>({\n uid,\n data,\n}: {\n uid: TUID;\n data: Record<string, unknown> | null;\n}): Record<string, ID[]> => {\n if (!uid) {\n throw new ValidationError(`Cannot build relations store: \"uid\" is undefined`);\n }\n\n if (isEmpty(data)) {\n return {};\n }\n\n const currentModel = strapi.getModel(uid);\n\n return Object.keys(currentModel.attributes).reduce(\n (result, attributeName: string) => {\n const attribute = currentModel.attributes[attributeName];\n const value = data[attributeName];\n\n if (isNil(value)) {\n return result;\n }\n\n switch (attribute.type) {\n case 'relation':\n case 'media': {\n if (\n attribute.type === 'relation' &&\n (attribute.relation === 'morphToMany' || attribute.relation === 'morphToOne')\n ) {\n // TODO: handle polymorphic relations\n break;\n }\n\n const target =\n // eslint-disable-next-line no-nested-ternary\n attribute.type === 'media' ? 'plugin::upload.file' : attribute.target;\n // As there are multiple formats supported for associating relations\n // with an entity, the value here can be an: array, object or number.\n let source: RelationSource[];\n if (Array.isArray(value)) {\n source = value;\n } else if (isObject(value)) {\n if ('connect' in value && !isNil(value.connect)) {\n source = value.connect as RelationSource[];\n } else if ('set' in value && !isNil(value.set)) {\n source = value.set as RelationSource[];\n } else {\n source = [];\n }\n } else {\n source = castArray(value as RelationSource);\n }\n const idArray = source.map((v) => ({\n id: typeof v === 'object' ? v.id : v,\n }));\n\n // Update the relationStore to keep track of all associations being made\n // with relations and media.\n result[target] = result[target] || [];\n result[target].push(...idArray);\n break;\n }\n case 'component': {\n return castArray(value).reduce((relationsStore, componentValue) => {\n if (!attribute.component) {\n throw new ValidationError(\n `Cannot build relations store from component, component identifier is undefined`\n );\n }\n\n return mergeWith(\n relationsStore,\n buildRelationsStore({\n uid: attribute.component,\n data: componentValue as Record<string, unknown>,\n }),\n (objValue, srcValue) => {\n if (isArray(objValue)) {\n return objValue.concat(srcValue);\n }\n }\n );\n }, result) as Record<string, ID[]>;\n }\n case 'dynamiczone': {\n return castArray(value).reduce((relationsStore, dzValue) => {\n const value = dzValue as Record<string, unknown>;\n if (!value.__component) {\n throw new ValidationError(\n `Cannot build relations store from dynamiczone, component identifier is undefined`\n );\n }\n\n return mergeWith(\n relationsStore,\n buildRelationsStore({\n uid: value.__component as UID.Component,\n data: value,\n }),\n (objValue, srcValue) => {\n if (isArray(objValue)) {\n return objValue.concat(srcValue);\n }\n }\n );\n }, result) as Record<string, ID[]>;\n }\n default:\n break;\n }\n\n return result;\n },\n {} as Record<string, ID[]>\n );\n};\n\n/**\n * Iterate through the relations store and validates that every relation or media\n * mentioned exists\n */\nconst checkRelationsExist = async (relationsStore: Record<string, ID[]> = {}) => {\n const promises: Promise<void>[] = [];\n\n for (const [key, value] of Object.entries(relationsStore)) {\n const evaluate = async () => {\n const uniqueValues = uniqBy(value, `id`);\n const count = await strapi.db.query(key as UID.Schema).count({\n where: {\n id: {\n $in: uniqueValues.map((v) => v.id),\n },\n },\n });\n\n if (count !== uniqueValues.length) {\n throw new ValidationError(\n `${\n uniqueValues.length - count\n } relation(s) of type ${key} associated with this entity do not exist`\n );\n }\n };\n promises.push(evaluate());\n }\n\n return Promise.all(promises);\n};\n\nconst entityValidator: Modules.EntityValidator.EntityValidator = {\n validateEntityCreation: createValidateEntity('creation'),\n validateEntityUpdate: createValidateEntity('update'),\n};\n\nexport default entityValidator;\n"],"names":["yup","validateYupSchema","strapiUtils","isMediaAttribute","isScalarAttribute","getWritableAttributes","contentTypes","isAnyToOne","relations","ValidationError","errors","isInteger","value","Number","addMinMax","validator","attr","updatedAttribute","nextValidator","min","required","Array","isArray","length","max","addRequiredValidation","createOrUpdate","notNil","notNull","nullable","addDefault","type","repeatable","default","undefined","preventCast","transform","val","originalVal","createComponentValidator","componentContext","options","model","strapi","getModel","component","Error","array","of","lazy","item","createModelValidator","data","isDraft","createDzValidator","prop","schema","object","shape","__component","string","oneOf","Object","keys","components","concat","hasRelationValue","isNil","isObject","connect","set","isDisconnectOnly","disconnect","hasAdditions","relationRequiredFails","isToOne","hasSet","createMediaAttributeValidator","mixed","strictRelations","multiple","test","name","createRelationValidator","createScalarAttributeValidator","metas","has","Validators","createAttributeValidator","conditions","visible","isVisible","jsonLogic","apply","notRequired","pathToComponent","repeatableData","newComponentContext","fullDynamicZoneContent","assign","entity","writableAttributes","reduce","validators","attributeName","attributes","createValidateEntity","displayName","info","parentContent","id","locale","relationsValidation","checkRelationsExist","buildRelationsStore","uid","e","createError","path","message","strict","abortEarly","isEmpty","currentModel","result","attribute","relation","target","source","castArray","idArray","map","v","push","relationsStore","componentValue","mergeWith","objValue","srcValue","dzValue","promises","key","entries","evaluate","uniqueValues","uniqBy","count","db","query","where","$in","Promise","all","entityValidator","validateEntityCreation","validateEntityUpdate"],"mappings":"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"}
@@ -6,6 +6,7 @@ import { Validators } from './validators.mjs';
6
6
 
7
7
  const { yup, validateYupSchema } = strapiUtils;
8
8
  const { isMediaAttribute, isScalarAttribute, getWritableAttributes } = strapiUtils.contentTypes;
9
+ const { isAnyToOne } = strapiUtils.relations;
9
10
  const { ValidationError } = strapiUtils.errors;
10
11
  const isInteger = (value)=>Number.isInteger(value);
11
12
  const addMinMax = (validator, { attr, updatedAttribute })=>{
@@ -49,7 +50,7 @@ const addDefault = (createOrUpdate)=>{
49
50
  };
50
51
  };
51
52
  const preventCast = (validator)=>validator.transform((val, originalVal)=>originalVal);
52
- const createComponentValidator = (createOrUpdate)=>({ attr, updatedAttribute, componentContext }, { isDraft })=>{
53
+ const createComponentValidator = (createOrUpdate)=>({ attr, updatedAttribute, componentContext }, options)=>{
53
54
  const model = strapi.getModel(attr.component);
54
55
  if (!model) {
55
56
  throw new Error('Validation failed: Model not found');
@@ -60,16 +61,14 @@ const createComponentValidator = (createOrUpdate)=>({ attr, updatedAttribute, co
60
61
  componentContext,
61
62
  model,
62
63
  data: item
63
- }, {
64
- isDraft
65
- }).notNull()));
64
+ }, options).notNull()));
66
65
  validator = addRequiredValidation(createOrUpdate)(validator, {
67
66
  attr: {
68
67
  required: true
69
68
  },
70
69
  updatedAttribute
71
70
  });
72
- if (!isDraft) {
71
+ if (!options.isDraft) {
73
72
  validator = addMinMax(validator, {
74
73
  attr,
75
74
  updatedAttribute
@@ -81,18 +80,16 @@ const createComponentValidator = (createOrUpdate)=>({ attr, updatedAttribute, co
81
80
  model,
82
81
  data: updatedAttribute.value,
83
82
  componentContext
84
- }, {
85
- isDraft
86
- });
83
+ }, options);
87
84
  validator = addRequiredValidation(createOrUpdate)(validator, {
88
85
  attr: {
89
- required: !isDraft && attr.required
86
+ required: !options.isDraft && attr.required
90
87
  },
91
88
  updatedAttribute
92
89
  });
93
90
  return validator;
94
91
  };
95
- const createDzValidator = (createOrUpdate)=>({ attr, updatedAttribute, componentContext }, { isDraft })=>{
92
+ const createDzValidator = (createOrUpdate)=>({ attr, updatedAttribute, componentContext }, options)=>{
96
93
  let validator;
97
94
  validator = yup.array().of(yup.lazy((item)=>{
98
95
  const model = strapi.getModel(prop('__component', item));
@@ -103,9 +100,7 @@ const createDzValidator = (createOrUpdate)=>({ attr, updatedAttribute, component
103
100
  model,
104
101
  data: item,
105
102
  componentContext
106
- }, {
107
- isDraft
108
- })) : schema;
103
+ }, options)) : schema;
109
104
  }));
110
105
  validator = addRequiredValidation(createOrUpdate)(validator, {
111
106
  attr: {
@@ -113,7 +108,7 @@ const createDzValidator = (createOrUpdate)=>({ attr, updatedAttribute, component
113
108
  },
114
109
  updatedAttribute
115
110
  });
116
- if (!isDraft) {
111
+ if (!options.isDraft) {
117
112
  validator = addMinMax(validator, {
118
113
  attr,
119
114
  updatedAttribute
@@ -121,15 +116,143 @@ const createDzValidator = (createOrUpdate)=>({ attr, updatedAttribute, component
121
116
  }
122
117
  return validator;
123
118
  };
124
- const createRelationValidator = ({ updatedAttribute })=>{
125
- let validator;
126
- if (Array.isArray(updatedAttribute.value)) {
127
- validator = yup.array().of(yup.mixed());
128
- } else {
129
- validator = yup.mixed();
119
+ /**
120
+ * A relation/media value can be supplied in several shapes: a bare id, an array of ids,
121
+ * or a connect/set object (`{ connect: [...] }` / `{ set: [...] }`). This normalises all
122
+ * of them to "does this attach at least one entry?" so required validation is consistent
123
+ * regardless of the input shape (mirrors `buildRelationsStore`'s source extraction).
124
+ */ const hasRelationValue = (value)=>{
125
+ if (isNil(value)) {
126
+ return false;
127
+ }
128
+ if (Array.isArray(value)) {
129
+ return value.length > 0;
130
+ }
131
+ if (isObject(value)) {
132
+ const connect = value.connect;
133
+ const set = value.set;
134
+ if (!isNil(connect)) {
135
+ return Array.isArray(connect) ? connect.length > 0 : true;
136
+ }
137
+ if (!isNil(set)) {
138
+ return Array.isArray(set) ? set.length > 0 : true;
139
+ }
140
+ // Any other object shape (e.g. a bare `{ id }`) counts as a value.
141
+ return true;
142
+ }
143
+ return true;
144
+ };
145
+ /**
146
+ * A disconnect-only update payload removes entries without adding or replacing any:
147
+ * actual removals in `disconnect`, no `set`, and no effective additions in `connect`.
148
+ * `connect` counts as "no additions" when absent OR an empty array — the Content Manager
149
+ * initializes every relation as `{ connect: [], disconnect: [] }` and keeps `connect: []`
150
+ * in place when the user only removes entries, so `{ connect: [], disconnect: [id] }`
151
+ * is the shape real admin saves produce. A payload with empty `disconnect` (nothing
152
+ * removed) is NOT disconnect-only — it's the CM's untouched-relation no-op.
153
+ */ const isDisconnectOnly = (value)=>{
154
+ if (!isObject(value)) {
155
+ return false;
156
+ }
157
+ const { connect, set, disconnect } = value;
158
+ if (!isNil(set)) {
159
+ return false;
160
+ }
161
+ const hasAdditions = !isNil(connect) && (!Array.isArray(connect) || connect.length > 0);
162
+ if (hasAdditions) {
163
+ return false;
164
+ }
165
+ return !isNil(disconnect) && (!Array.isArray(disconnect) || disconnect.length > 0);
166
+ };
167
+ /**
168
+ * Decides whether a required media/relation value should be rejected as empty,
169
+ * mirroring the scalar `required` semantics:
170
+ *
171
+ * - creation (`notNil` analogue): an absent key is a failure — the field must be
172
+ * populated, so anything without a value (`undefined`/`null`/`[]`/empty `set`/`connect`)
173
+ * is rejected.
174
+ * - update (`notNull` analogue): an absent key keeps the existing value, so it passes.
175
+ * Only reject when the request is present AND leaves the field empty. A bare
176
+ * `{ connect: [] }` (no `set`) neither adds nor removes anything → treated as a no-op
177
+ * that passes; `{ set: [] }` / `null` / `[]` explicitly empty the field → rejected.
178
+ *
179
+ * `isToOne` marks a to-one relation / single media, which can hold at most one entry.
180
+ * For those, a disconnect-only update (`{ disconnect: [...] }` with no `connect`/`set`)
181
+ * always leaves the field empty — no DB read needed — so it is rejected on non-draft
182
+ * updates. To-many fields can still hold other entries after a disconnect, so their
183
+ * resulting state can't be known without a DB read and they fall through to a pass
184
+ * (publish re-validates the populated draft for D&P types; documented limitation for
185
+ * non-D&P, tied to the null→[] follow-up).
186
+ *
187
+ * On creation there are no existing rows, so a disconnect-only payload attaches nothing
188
+ * and always leaves the field empty — for both to-one and to-many — so it is rejected
189
+ * regardless of `isToOne`.
190
+ */ const relationRequiredFails = (createOrUpdate, value, isToOne)=>{
191
+ if (createOrUpdate === 'creation') {
192
+ // No existing rows on create, so a disconnect attaches nothing and the field stays
193
+ // empty for both to-one and to-many — reject it before the generic value check, which
194
+ // would otherwise treat the bare `{ disconnect: [...] }` object as a present value.
195
+ if (isDisconnectOnly(value)) {
196
+ return true;
197
+ }
198
+ }
199
+ if (createOrUpdate === 'update') {
200
+ // Absent key on update = keep the existing value.
201
+ if (value === undefined) {
202
+ return false;
203
+ }
204
+ if (isDisconnectOnly(value)) {
205
+ // A disconnect on a to-one/single field deterministically empties it; on a to-many
206
+ // field the resulting state depends on the current DB rows, so we can't reject here.
207
+ return isToOne;
208
+ }
209
+ // A connect-only empty is a no-op, not an emptying operation.
210
+ if (isObject(value) && !isNil(value.connect)) {
211
+ const connect = value.connect;
212
+ const hasSet = !isNil(value.set);
213
+ if (!hasSet && Array.isArray(connect) && connect.length === 0) {
214
+ return false;
215
+ }
216
+ }
130
217
  }
131
- return validator;
218
+ return !hasRelationValue(value);
132
219
  };
220
+ const createMediaAttributeValidator = (createOrUpdate)=>({ attr, updatedAttribute }, options)=>{
221
+ // Media values arrive in several shapes (a bare id, an array of ids, or a
222
+ // `{ connect }` / `{ set }` object on update). `yup.mixed()` accepts all of them;
223
+ // coercing `multiple` media to `yup.array()` would reject the connect/set object
224
+ // syntax that update requests legitimately send. Required-ness is asserted below
225
+ // via `relationRequiredFails`, which understands every shape.
226
+ let validator = yup.mixed();
227
+ // Relational required constraints are only enforced under the strictRelations flag,
228
+ // and never for drafts (mirrors scalar `required` handling via `!isDraft`).
229
+ if (options.strictRelations && !options.isDraft && attr.required) {
230
+ // A media value can arrive as an id, an array, or a connect/set object, so a simple
231
+ // `.notNil()`/`.min()` is not enough — normalise the shape before asserting.
232
+ // Single media holds at most one file, so a disconnect-only update always empties it.
233
+ const isToOne = !attr.multiple;
234
+ validator = validator.test('required-media', `${updatedAttribute.name} must be defined.`, ()=>!relationRequiredFails(createOrUpdate, updatedAttribute.value, isToOne));
235
+ }
236
+ return validator;
237
+ };
238
+ const createRelationValidator = (createOrUpdate)=>({ attr, updatedAttribute }, options)=>{
239
+ let validator;
240
+ if (Array.isArray(updatedAttribute.value)) {
241
+ validator = yup.array().of(yup.mixed());
242
+ } else {
243
+ validator = yup.mixed();
244
+ }
245
+ // Relational required constraints are only enforced under the strictRelations flag,
246
+ // and never for drafts (mirrors scalar `required` handling via `!isDraft`).
247
+ if (options.strictRelations && !options.isDraft && attr.required) {
248
+ // A relation value can arrive as an id, an array, or a connect/set object, so a
249
+ // simple `.notNil()`/`.min()` is not enough — normalise the shape before asserting.
250
+ // A to-one relation holds at most one target, so a disconnect-only update always empties it.
251
+ const isToOne = isAnyToOne(attr);
252
+ validator = validator.test('required-relation', `${updatedAttribute.name} must be defined.`, ()=>!relationRequiredFails(createOrUpdate, updatedAttribute.value, isToOne));
253
+ }
254
+ return validator;
255
+ };
133
256
  const createScalarAttributeValidator = (createOrUpdate)=>(metas, options)=>{
134
257
  let validator;
135
258
  if (has(metas.attr.type, Validators)) {
@@ -156,7 +279,10 @@ const createAttributeValidator = (createOrUpdate)=>(metas, options)=>{
156
279
  }
157
280
  }
158
281
  if (isMediaAttribute(metas.attr)) {
159
- validator = yup.mixed();
282
+ validator = createMediaAttributeValidator(createOrUpdate)({
283
+ attr: metas.attr,
284
+ updatedAttribute: metas.updatedAttribute
285
+ }, options);
160
286
  } else if (isScalarAttribute(metas.attr)) {
161
287
  validator = createScalarAttributeValidator(createOrUpdate)(metas, options);
162
288
  } else {
@@ -197,10 +323,10 @@ const createAttributeValidator = (createOrUpdate)=>(metas, options)=>{
197
323
  });
198
324
  validator = createDzValidator(createOrUpdate)(metas, options);
199
325
  } else if (metas.attr.type === 'relation') {
200
- validator = createRelationValidator({
326
+ validator = createRelationValidator(createOrUpdate)({
201
327
  attr: metas.attr,
202
328
  updatedAttribute: metas.updatedAttribute
203
- });
329
+ }, options);
204
330
  }
205
331
  validator = preventCast(validator);
206
332
  }
@@ -251,7 +377,8 @@ const createValidateEntity = (createOrUpdate)=>{
251
377
  }
252
378
  }, {
253
379
  isDraft: options?.isDraft ?? false,
254
- locale: options?.locale ?? null
380
+ locale: options?.locale ?? null,
381
+ strictRelations: options?.strictRelations ?? false
255
382
  }).test('relations-test', 'check that all relations exist', async function relationsValidation(data) {
256
383
  try {
257
384
  await checkRelationsExist(buildRelationsStore({