@mikro-orm/core 7.0.4-dev.8 → 7.0.4
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.
- package/EntityManager.d.ts +884 -583
- package/EntityManager.js +1922 -1895
- package/MikroORM.d.ts +103 -74
- package/MikroORM.js +178 -179
- package/README.md +1 -1
- package/cache/CacheAdapter.d.ts +36 -36
- package/cache/FileCacheAdapter.d.ts +30 -24
- package/cache/FileCacheAdapter.js +80 -78
- package/cache/GeneratedCacheAdapter.d.ts +18 -20
- package/cache/GeneratedCacheAdapter.js +30 -30
- package/cache/MemoryCacheAdapter.d.ts +18 -20
- package/cache/MemoryCacheAdapter.js +35 -36
- package/cache/NullCacheAdapter.d.ts +16 -16
- package/cache/NullCacheAdapter.js +24 -24
- package/connections/Connection.d.ts +95 -84
- package/connections/Connection.js +165 -168
- package/drivers/DatabaseDriver.d.ts +186 -80
- package/drivers/DatabaseDriver.js +450 -443
- package/drivers/IDatabaseDriver.d.ts +440 -301
- package/entity/BaseEntity.d.ts +120 -83
- package/entity/BaseEntity.js +43 -43
- package/entity/Collection.d.ts +212 -179
- package/entity/Collection.js +727 -721
- package/entity/EntityAssigner.d.ts +88 -77
- package/entity/EntityAssigner.js +231 -230
- package/entity/EntityFactory.d.ts +66 -54
- package/entity/EntityFactory.js +425 -383
- package/entity/EntityHelper.d.ts +34 -22
- package/entity/EntityHelper.js +280 -267
- package/entity/EntityIdentifier.d.ts +4 -4
- package/entity/EntityIdentifier.js +10 -10
- package/entity/EntityLoader.d.ts +98 -72
- package/entity/EntityLoader.js +753 -723
- package/entity/EntityRepository.d.ts +316 -201
- package/entity/EntityRepository.js +213 -213
- package/entity/PolymorphicRef.d.ts +5 -5
- package/entity/PolymorphicRef.js +10 -10
- package/entity/Reference.d.ts +126 -82
- package/entity/Reference.js +278 -274
- package/entity/WrappedEntity.d.ts +115 -72
- package/entity/WrappedEntity.js +168 -166
- package/entity/defineEntity.d.ts +1315 -636
- package/entity/defineEntity.js +527 -518
- package/entity/utils.d.ts +13 -3
- package/entity/utils.js +71 -73
- package/entity/validators.js +43 -43
- package/entity/wrap.js +8 -8
- package/enums.d.ts +258 -253
- package/enums.js +251 -252
- package/errors.d.ts +114 -72
- package/errors.js +350 -253
- package/events/EventManager.d.ts +26 -14
- package/events/EventManager.js +79 -77
- package/events/EventSubscriber.d.ts +29 -29
- package/events/TransactionEventBroadcaster.d.ts +15 -8
- package/events/TransactionEventBroadcaster.js +14 -14
- package/exceptions.d.ts +23 -40
- package/exceptions.js +35 -52
- package/hydration/Hydrator.d.ts +42 -17
- package/hydration/Hydrator.js +43 -43
- package/hydration/ObjectHydrator.d.ts +50 -17
- package/hydration/ObjectHydrator.js +481 -416
- package/index.d.ts +116 -2
- package/index.js +10 -1
- package/logging/DefaultLogger.d.ts +34 -32
- package/logging/DefaultLogger.js +86 -86
- package/logging/Logger.d.ts +41 -41
- package/logging/SimpleLogger.d.ts +13 -11
- package/logging/SimpleLogger.js +22 -22
- package/logging/colors.d.ts +6 -6
- package/logging/colors.js +11 -10
- package/logging/inspect.js +7 -7
- package/metadata/EntitySchema.d.ts +211 -127
- package/metadata/EntitySchema.js +397 -398
- package/metadata/MetadataDiscovery.d.ts +114 -114
- package/metadata/MetadataDiscovery.js +1951 -1863
- package/metadata/MetadataProvider.d.ts +24 -21
- package/metadata/MetadataProvider.js +82 -84
- package/metadata/MetadataStorage.d.ts +38 -32
- package/metadata/MetadataStorage.js +118 -118
- package/metadata/MetadataValidator.d.ts +39 -39
- package/metadata/MetadataValidator.js +381 -338
- package/metadata/discover-entities.d.ts +5 -2
- package/metadata/discover-entities.js +35 -27
- package/metadata/types.d.ts +615 -531
- package/naming-strategy/AbstractNamingStrategy.d.ts +54 -39
- package/naming-strategy/AbstractNamingStrategy.js +90 -85
- package/naming-strategy/EntityCaseNamingStrategy.d.ts +6 -6
- package/naming-strategy/EntityCaseNamingStrategy.js +22 -22
- package/naming-strategy/MongoNamingStrategy.d.ts +6 -6
- package/naming-strategy/MongoNamingStrategy.js +18 -18
- package/naming-strategy/NamingStrategy.d.ts +109 -99
- package/naming-strategy/UnderscoreNamingStrategy.d.ts +7 -7
- package/naming-strategy/UnderscoreNamingStrategy.js +21 -21
- package/not-supported.js +7 -4
- package/package.json +1 -1
- package/platforms/ExceptionConverter.d.ts +1 -1
- package/platforms/ExceptionConverter.js +4 -4
- package/platforms/Platform.d.ts +310 -299
- package/platforms/Platform.js +663 -636
- package/serialization/EntitySerializer.d.ts +49 -26
- package/serialization/EntitySerializer.js +224 -218
- package/serialization/EntityTransformer.d.ts +10 -6
- package/serialization/EntityTransformer.js +219 -217
- package/serialization/SerializationContext.d.ts +27 -23
- package/serialization/SerializationContext.js +105 -105
- package/types/ArrayType.d.ts +8 -8
- package/types/ArrayType.js +33 -33
- package/types/BigIntType.d.ts +17 -10
- package/types/BigIntType.js +37 -37
- package/types/BlobType.d.ts +3 -3
- package/types/BlobType.js +13 -13
- package/types/BooleanType.d.ts +4 -4
- package/types/BooleanType.js +12 -12
- package/types/CharacterType.d.ts +2 -2
- package/types/CharacterType.js +6 -6
- package/types/DateTimeType.d.ts +5 -5
- package/types/DateTimeType.js +15 -15
- package/types/DateType.d.ts +5 -5
- package/types/DateType.js +15 -15
- package/types/DecimalType.d.ts +7 -7
- package/types/DecimalType.js +26 -26
- package/types/DoubleType.d.ts +3 -3
- package/types/DoubleType.js +12 -12
- package/types/EnumArrayType.d.ts +5 -5
- package/types/EnumArrayType.js +24 -24
- package/types/EnumType.d.ts +3 -3
- package/types/EnumType.js +11 -11
- package/types/FloatType.d.ts +3 -3
- package/types/FloatType.js +9 -9
- package/types/IntegerType.d.ts +3 -3
- package/types/IntegerType.js +9 -9
- package/types/IntervalType.d.ts +4 -4
- package/types/IntervalType.js +12 -12
- package/types/JsonType.d.ts +8 -8
- package/types/JsonType.js +32 -32
- package/types/MediumIntType.d.ts +1 -1
- package/types/MediumIntType.js +3 -3
- package/types/SmallIntType.d.ts +3 -3
- package/types/SmallIntType.js +9 -9
- package/types/StringType.d.ts +4 -4
- package/types/StringType.js +12 -12
- package/types/TextType.d.ts +3 -3
- package/types/TextType.js +9 -9
- package/types/TimeType.d.ts +5 -5
- package/types/TimeType.js +17 -17
- package/types/TinyIntType.d.ts +3 -3
- package/types/TinyIntType.js +10 -10
- package/types/Type.d.ts +83 -79
- package/types/Type.js +82 -82
- package/types/Uint8ArrayType.d.ts +4 -4
- package/types/Uint8ArrayType.js +21 -21
- package/types/UnknownType.d.ts +4 -4
- package/types/UnknownType.js +12 -12
- package/types/UuidType.d.ts +5 -5
- package/types/UuidType.js +19 -19
- package/types/index.d.ts +75 -49
- package/types/index.js +52 -26
- package/typings.d.ts +1250 -737
- package/typings.js +244 -231
- package/unit-of-work/ChangeSet.d.ts +26 -26
- package/unit-of-work/ChangeSet.js +56 -56
- package/unit-of-work/ChangeSetComputer.d.ts +12 -12
- package/unit-of-work/ChangeSetComputer.js +178 -170
- package/unit-of-work/ChangeSetPersister.d.ts +63 -44
- package/unit-of-work/ChangeSetPersister.js +442 -421
- package/unit-of-work/CommitOrderCalculator.d.ts +40 -40
- package/unit-of-work/CommitOrderCalculator.js +89 -88
- package/unit-of-work/IdentityMap.d.ts +31 -31
- package/unit-of-work/IdentityMap.js +105 -105
- package/unit-of-work/UnitOfWork.d.ts +181 -141
- package/unit-of-work/UnitOfWork.js +1200 -1183
- package/utils/AbstractMigrator.d.ts +111 -91
- package/utils/AbstractMigrator.js +275 -275
- package/utils/AbstractSchemaGenerator.d.ts +43 -34
- package/utils/AbstractSchemaGenerator.js +121 -122
- package/utils/AsyncContext.d.ts +3 -3
- package/utils/AsyncContext.js +34 -35
- package/utils/Configuration.d.ts +852 -808
- package/utils/Configuration.js +359 -344
- package/utils/Cursor.d.ts +40 -22
- package/utils/Cursor.js +135 -127
- package/utils/DataloaderUtils.d.ts +58 -43
- package/utils/DataloaderUtils.js +203 -198
- package/utils/EntityComparator.d.ts +98 -81
- package/utils/EntityComparator.js +828 -728
- package/utils/NullHighlighter.d.ts +1 -1
- package/utils/NullHighlighter.js +3 -3
- package/utils/QueryHelper.d.ts +79 -51
- package/utils/QueryHelper.js +372 -361
- package/utils/RawQueryFragment.d.ts +50 -34
- package/utils/RawQueryFragment.js +107 -105
- package/utils/RequestContext.d.ts +32 -32
- package/utils/RequestContext.js +52 -53
- package/utils/TransactionContext.d.ts +16 -16
- package/utils/TransactionContext.js +27 -27
- package/utils/TransactionManager.d.ts +58 -58
- package/utils/TransactionManager.js +199 -197
- package/utils/Utils.d.ts +204 -145
- package/utils/Utils.js +812 -810
- package/utils/clone.js +104 -113
- package/utils/env-vars.js +90 -88
- package/utils/fs-utils.d.ts +15 -15
- package/utils/fs-utils.js +180 -181
- package/utils/upsert-utils.d.ts +20 -5
- package/utils/upsert-utils.js +114 -116
package/entity/EntityFactory.js
CHANGED
|
@@ -8,409 +8,451 @@ import { JsonType } from '../types/JsonType.js';
|
|
|
8
8
|
import { isRaw } from '../utils/RawQueryFragment.js';
|
|
9
9
|
/** @internal Factory responsible for creating, merging, and hydrating entity instances. */
|
|
10
10
|
export class EntityFactory {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
11
|
+
#driver;
|
|
12
|
+
#platform;
|
|
13
|
+
#config;
|
|
14
|
+
#metadata;
|
|
15
|
+
#hydrator;
|
|
16
|
+
#eventManager;
|
|
17
|
+
#comparator;
|
|
18
|
+
#em;
|
|
19
|
+
constructor(em) {
|
|
20
|
+
this.#em = em;
|
|
21
|
+
this.#driver = this.#em.getDriver();
|
|
22
|
+
this.#platform = this.#driver.getPlatform();
|
|
23
|
+
this.#config = this.#em.config;
|
|
24
|
+
this.#metadata = this.#em.getMetadata();
|
|
25
|
+
this.#hydrator = this.#config.getHydrator(this.#metadata);
|
|
26
|
+
this.#eventManager = this.#em.getEventManager();
|
|
27
|
+
this.#comparator = this.#em.getComparator();
|
|
28
|
+
}
|
|
29
|
+
/** Creates a new entity instance or returns an existing one from the identity map, hydrating it with the provided data. */
|
|
30
|
+
create(entityName, data, options = {}) {
|
|
31
|
+
data = Reference.unwrapReference(data);
|
|
32
|
+
options.initialized ??= true;
|
|
33
|
+
if (data.__entity) {
|
|
34
|
+
return data;
|
|
28
35
|
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
36
|
+
const meta = this.#metadata.get(entityName);
|
|
37
|
+
if (meta.virtual) {
|
|
38
|
+
data = { ...data };
|
|
39
|
+
const entity = this.createEntity(data, meta, options);
|
|
40
|
+
this.hydrate(entity, meta, data, options);
|
|
41
|
+
return entity;
|
|
42
|
+
}
|
|
43
|
+
if (meta.serializedPrimaryKey) {
|
|
44
|
+
this.denormalizePrimaryKey(meta, data);
|
|
45
|
+
}
|
|
46
|
+
const meta2 = this.processDiscriminatorColumn(meta, data);
|
|
47
|
+
const exists = this.findEntity(data, meta2, options);
|
|
48
|
+
let wrapped = exists && helper(exists);
|
|
49
|
+
if (wrapped && !options.refresh) {
|
|
50
|
+
wrapped.__processing = true;
|
|
51
|
+
Utils.dropUndefinedProperties(data);
|
|
52
|
+
this.mergeData(meta2, exists, data, options);
|
|
53
|
+
wrapped.__processing = false;
|
|
54
|
+
if (wrapped.isInitialized()) {
|
|
55
|
+
return exists;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
data = { ...data };
|
|
59
|
+
const entity = exists ?? this.createEntity(data, meta2, options);
|
|
60
|
+
wrapped = helper(entity);
|
|
61
|
+
wrapped.__processing = true;
|
|
62
|
+
wrapped.__initialized = options.initialized;
|
|
63
|
+
if (options.newEntity || meta.forceConstructor || meta.virtual) {
|
|
64
|
+
const tmp = { ...data };
|
|
65
|
+
meta.constructorParams?.forEach(prop => delete tmp[prop]);
|
|
66
|
+
this.hydrate(entity, meta2, tmp, options);
|
|
67
|
+
// since we now process only a copy of the `data` via hydrator, but later we register the state with the full snapshot,
|
|
68
|
+
// we need to go through all props with custom types that have `ensureComparable: true` and ensure they are comparable
|
|
69
|
+
// even if they are not part of constructor parameters (as this is otherwise normalized during hydration, here only in `tmp`)
|
|
70
|
+
if (options.convertCustomTypes) {
|
|
71
|
+
for (const prop of meta.props) {
|
|
72
|
+
if (prop.customType?.ensureComparable(meta, prop) && data[prop.name]) {
|
|
73
|
+
if ([ReferenceKind.ONE_TO_MANY, ReferenceKind.MANY_TO_MANY].includes(prop.kind)) {
|
|
74
|
+
continue;
|
|
56
75
|
}
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
wrapped.__initialized = options.initialized;
|
|
63
|
-
if (options.newEntity || meta.forceConstructor || meta.virtual) {
|
|
64
|
-
const tmp = { ...data };
|
|
65
|
-
meta.constructorParams?.forEach(prop => delete tmp[prop]);
|
|
66
|
-
this.hydrate(entity, meta2, tmp, options);
|
|
67
|
-
// since we now process only a copy of the `data` via hydrator, but later we register the state with the full snapshot,
|
|
68
|
-
// we need to go through all props with custom types that have `ensureComparable: true` and ensure they are comparable
|
|
69
|
-
// even if they are not part of constructor parameters (as this is otherwise normalized during hydration, here only in `tmp`)
|
|
70
|
-
if (options.convertCustomTypes) {
|
|
71
|
-
for (const prop of meta.props) {
|
|
72
|
-
if (prop.customType?.ensureComparable(meta, prop) && data[prop.name]) {
|
|
73
|
-
if ([ReferenceKind.ONE_TO_MANY, ReferenceKind.MANY_TO_MANY].includes(prop.kind)) {
|
|
74
|
-
continue;
|
|
75
|
-
}
|
|
76
|
-
if ([ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) &&
|
|
77
|
-
Utils.isPlainObject(data[prop.name])) {
|
|
78
|
-
data[prop.name] = Utils.getPrimaryKeyValues(data[prop.name], prop.targetMeta, true);
|
|
79
|
-
}
|
|
80
|
-
if (prop.customType instanceof JsonType && this.#platform.convertsJsonAutomatically()) {
|
|
81
|
-
data[prop.name] = prop.customType.convertToDatabaseValue(data[prop.name], this.#platform, {
|
|
82
|
-
key: prop.name,
|
|
83
|
-
mode: 'hydration',
|
|
84
|
-
});
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
76
|
+
if (
|
|
77
|
+
[ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) &&
|
|
78
|
+
Utils.isPlainObject(data[prop.name])
|
|
79
|
+
) {
|
|
80
|
+
data[prop.name] = Utils.getPrimaryKeyValues(data[prop.name], prop.targetMeta, true);
|
|
88
81
|
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
Object.setPrototypeOf(entity, meta2.prototype);
|
|
95
|
-
}
|
|
96
|
-
if (options.merge && wrapped.hasPrimaryKey()) {
|
|
97
|
-
this.unitOfWork.register(entity, data, {
|
|
98
|
-
// Always refresh to ensure the payload is in correct shape for joined strategy. When loading nested relations,
|
|
99
|
-
// they will be created early without `Type.ensureComparable` being properly handled, resulting in extra updates.
|
|
100
|
-
refresh: options.initialized,
|
|
101
|
-
newEntity: options.newEntity,
|
|
102
|
-
loaded: options.initialized,
|
|
103
|
-
});
|
|
104
|
-
if (options.recomputeSnapshot) {
|
|
105
|
-
wrapped.__originalEntityData = this.#comparator.prepareEntity(entity);
|
|
82
|
+
if (prop.customType instanceof JsonType && this.#platform.convertsJsonAutomatically()) {
|
|
83
|
+
data[prop.name] = prop.customType.convertToDatabaseValue(data[prop.name], this.#platform, {
|
|
84
|
+
key: prop.name,
|
|
85
|
+
mode: 'hydration',
|
|
86
|
+
});
|
|
106
87
|
}
|
|
88
|
+
}
|
|
107
89
|
}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
wrapped.__processing = false;
|
|
112
|
-
return entity;
|
|
90
|
+
}
|
|
91
|
+
} else {
|
|
92
|
+
this.hydrate(entity, meta2, data, options);
|
|
113
93
|
}
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
// merge unchanged properties automatically
|
|
117
|
-
data = QueryHelper.processParams(data);
|
|
118
|
-
const existsData = this.#comparator.prepareEntity(entity);
|
|
119
|
-
const originalEntityData = helper(entity).__originalEntityData ?? {};
|
|
120
|
-
const diff = this.#comparator.diffEntities(meta.class, originalEntityData, existsData);
|
|
121
|
-
// version properties are not part of entity snapshots
|
|
122
|
-
if (meta.versionProperty &&
|
|
123
|
-
data[meta.versionProperty] &&
|
|
124
|
-
data[meta.versionProperty] !== originalEntityData[meta.versionProperty]) {
|
|
125
|
-
diff[meta.versionProperty] = data[meta.versionProperty];
|
|
126
|
-
}
|
|
127
|
-
const diff2 = this.#comparator.diffEntities(meta.class, existsData, data, { includeInverseSides: true });
|
|
128
|
-
// do not override values changed by user
|
|
129
|
-
Utils.keys(diff).forEach(key => delete diff2[key]);
|
|
130
|
-
Utils.keys(diff2)
|
|
131
|
-
.filter(key => {
|
|
132
|
-
// ignore null values if there is already present non-null value
|
|
133
|
-
if (existsData[key] != null) {
|
|
134
|
-
return diff2[key] == null;
|
|
135
|
-
}
|
|
136
|
-
return diff2[key] === undefined;
|
|
137
|
-
})
|
|
138
|
-
.forEach(key => delete diff2[key]);
|
|
139
|
-
// but always add collection properties and formulas if they are part of the `data`
|
|
140
|
-
Utils.keys(data)
|
|
141
|
-
.filter(key => meta.properties[key]?.formula ||
|
|
142
|
-
[ReferenceKind.ONE_TO_MANY, ReferenceKind.MANY_TO_MANY].includes(meta.properties[key]?.kind))
|
|
143
|
-
.forEach(key => (diff2[key] = data[key]));
|
|
144
|
-
// rehydrated with the new values, skip those changed by user
|
|
145
|
-
// use full hydration if the entity is already initialized, even if the caller used `initialized: false`
|
|
146
|
-
// (e.g. from createReference), otherwise scalar properties in diff2 won't be applied
|
|
147
|
-
const initialized = options.initialized || helper(entity).__initialized;
|
|
148
|
-
this.hydrate(entity, meta, diff2, initialized ? { ...options, initialized } : options);
|
|
149
|
-
// we need to update the entity data only with keys that were not present before
|
|
150
|
-
const nullVal = this.#config.get('forceUndefined') ? undefined : null;
|
|
151
|
-
Utils.keys(diff2).forEach(key => {
|
|
152
|
-
const prop = meta.properties[key];
|
|
153
|
-
if ([ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) &&
|
|
154
|
-
Utils.isPlainObject(data[prop.name])) {
|
|
155
|
-
// oxfmt-ignore
|
|
156
|
-
diff2[key] = entity[prop.name] ? helper(entity[prop.name]).getPrimaryKey(options.convertCustomTypes) : null;
|
|
157
|
-
}
|
|
158
|
-
if (!options.convertCustomTypes &&
|
|
159
|
-
[ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE, ReferenceKind.SCALAR].includes(prop.kind) &&
|
|
160
|
-
prop.customType?.ensureComparable(meta, prop) &&
|
|
161
|
-
diff2[key] != null) {
|
|
162
|
-
const converted = prop.customType.convertToJSValue(diff2[key], this.#platform, { force: true });
|
|
163
|
-
diff2[key] = prop.customType.convertToDatabaseValue(converted, this.#platform, { fromQuery: true });
|
|
164
|
-
}
|
|
165
|
-
originalEntityData[key] = diff2[key] === null ? nullVal : diff2[key];
|
|
166
|
-
helper(entity).__loadedProperties.add(key);
|
|
167
|
-
});
|
|
168
|
-
// in case of joined loading strategy, we need to cascade the merging to possibly loaded relations manually
|
|
169
|
-
meta.relations.forEach(prop => {
|
|
170
|
-
if ([ReferenceKind.MANY_TO_MANY, ReferenceKind.ONE_TO_MANY].includes(prop.kind) &&
|
|
171
|
-
Array.isArray(data[prop.name])) {
|
|
172
|
-
// instead of trying to match the collection items (which could easily fail if the collection was loaded with different ordering),
|
|
173
|
-
// we just create the entity from scratch, which will automatically pick the right one from the identity map and call `mergeData` on it
|
|
174
|
-
data[prop.name]
|
|
175
|
-
.filter(child => Utils.isPlainObject(child)) // objects with prototype can be PKs (e.g. `ObjectId`)
|
|
176
|
-
.forEach(child => this.create(prop.targetMeta.class, child, options)); // we can ignore the value, we just care about the `mergeData` call
|
|
177
|
-
return;
|
|
178
|
-
}
|
|
179
|
-
if ([ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) &&
|
|
180
|
-
Utils.isPlainObject(data[prop.name]) &&
|
|
181
|
-
entity[prop.name] &&
|
|
182
|
-
helper(entity[prop.name]).__initialized) {
|
|
183
|
-
this.create(prop.targetMeta.class, data[prop.name], options); // we can ignore the value, we just care about the `mergeData` call
|
|
184
|
-
}
|
|
185
|
-
});
|
|
186
|
-
this.unitOfWork.normalizeEntityData(meta, originalEntityData);
|
|
94
|
+
if (exists && meta.root.inheritanceType && !(entity instanceof meta2.class)) {
|
|
95
|
+
Object.setPrototypeOf(entity, meta2.prototype);
|
|
187
96
|
}
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
}
|
|
200
|
-
// Create entity stub - storeByKey will set the alternate key property and store in identity map
|
|
201
|
-
const entity = this.create(entityName, {}, { ...options, initialized: false });
|
|
202
|
-
this.unitOfWork.storeByKey(entity, options.key, value, schema, options.convertCustomTypes);
|
|
203
|
-
return entity;
|
|
204
|
-
}
|
|
205
|
-
if (meta.simplePK) {
|
|
206
|
-
const exists = this.unitOfWork.getById(entityName, id, schema);
|
|
207
|
-
if (exists) {
|
|
208
|
-
return exists;
|
|
209
|
-
}
|
|
210
|
-
const data = Utils.isPlainObject(id) ? id : { [meta.primaryKeys[0]]: Array.isArray(id) ? id[0] : id };
|
|
211
|
-
return this.create(entityName, data, { ...options, initialized: false });
|
|
212
|
-
}
|
|
213
|
-
if (Array.isArray(id)) {
|
|
214
|
-
id = Utils.getPrimaryKeyCondFromArray(id, meta);
|
|
215
|
-
}
|
|
216
|
-
const pks = Utils.getOrderedPrimaryKeys(id, meta, this.#platform);
|
|
217
|
-
const exists = this.unitOfWork.getById(entityName, pks, schema, options.convertCustomTypes);
|
|
218
|
-
if (exists) {
|
|
219
|
-
return exists;
|
|
220
|
-
}
|
|
221
|
-
if (Utils.isPrimaryKey(id)) {
|
|
222
|
-
id = { [meta.primaryKeys[0]]: id };
|
|
223
|
-
}
|
|
224
|
-
return this.create(entityName, id, { ...options, initialized: false });
|
|
97
|
+
if (options.merge && wrapped.hasPrimaryKey()) {
|
|
98
|
+
this.unitOfWork.register(entity, data, {
|
|
99
|
+
// Always refresh to ensure the payload is in correct shape for joined strategy. When loading nested relations,
|
|
100
|
+
// they will be created early without `Type.ensureComparable` being properly handled, resulting in extra updates.
|
|
101
|
+
refresh: options.initialized,
|
|
102
|
+
newEntity: options.newEntity,
|
|
103
|
+
loaded: options.initialized,
|
|
104
|
+
});
|
|
105
|
+
if (options.recomputeSnapshot) {
|
|
106
|
+
wrapped.__originalEntityData = this.#comparator.prepareEntity(entity);
|
|
107
|
+
}
|
|
225
108
|
}
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
data = { ...data };
|
|
229
|
-
const meta = this.#metadata.get(entityName);
|
|
230
|
-
const meta2 = this.processDiscriminatorColumn(meta, data);
|
|
231
|
-
return this.createEntity(data, meta2, options);
|
|
109
|
+
if (this.#eventManager.hasListeners(EventType.onInit, meta2)) {
|
|
110
|
+
this.#eventManager.dispatchEvent(EventType.onInit, { entity, meta: meta2, em: this.#em });
|
|
232
111
|
}
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
112
|
+
wrapped.__processing = false;
|
|
113
|
+
return entity;
|
|
114
|
+
}
|
|
115
|
+
/** Merges new data into an existing entity, preserving user-modified properties. */
|
|
116
|
+
mergeData(meta, entity, data, options = {}) {
|
|
117
|
+
// merge unchanged properties automatically
|
|
118
|
+
data = QueryHelper.processParams(data);
|
|
119
|
+
const existsData = this.#comparator.prepareEntity(entity);
|
|
120
|
+
const originalEntityData = helper(entity).__originalEntityData ?? {};
|
|
121
|
+
const diff = this.#comparator.diffEntities(meta.class, originalEntityData, existsData);
|
|
122
|
+
// version properties are not part of entity snapshots
|
|
123
|
+
if (
|
|
124
|
+
meta.versionProperty &&
|
|
125
|
+
data[meta.versionProperty] &&
|
|
126
|
+
data[meta.versionProperty] !== originalEntityData[meta.versionProperty]
|
|
127
|
+
) {
|
|
128
|
+
diff[meta.versionProperty] = data[meta.versionProperty];
|
|
236
129
|
}
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
// creates new instance via constructor as this is the new entity
|
|
246
|
-
const entity = new Entity(...params);
|
|
247
|
-
// creating managed entity instance when `forceEntityConstructor` is enabled,
|
|
248
|
-
// we need to wipe all the values as they would cause update queries on next flush
|
|
249
|
-
if (!options.newEntity && (meta.forceConstructor || this.#config.get('forceEntityConstructor'))) {
|
|
250
|
-
meta.props
|
|
251
|
-
.filter(prop => prop.persist !== false && !prop.primary && data[prop.name] === undefined)
|
|
252
|
-
.forEach(prop => delete entity[prop.name]);
|
|
253
|
-
}
|
|
254
|
-
if (meta.virtual) {
|
|
255
|
-
return entity;
|
|
256
|
-
}
|
|
257
|
-
helper(entity).__schema = schema;
|
|
258
|
-
if (options.initialized) {
|
|
259
|
-
EntityHelper.ensurePropagation(entity);
|
|
260
|
-
}
|
|
261
|
-
return entity;
|
|
262
|
-
}
|
|
263
|
-
// creates new entity instance, bypassing constructor call as its already persisted entity
|
|
264
|
-
const entity = Object.create(meta.class.prototype);
|
|
265
|
-
helper(entity).__managed = true;
|
|
266
|
-
helper(entity).__processing = !meta.embeddable && !meta.virtual;
|
|
267
|
-
helper(entity).__schema = schema;
|
|
268
|
-
if (options.merge && !options.newEntity) {
|
|
269
|
-
this.#hydrator.hydrateReference(entity, meta, data, this, options.convertCustomTypes, options.schema, options.parentSchema);
|
|
270
|
-
this.unitOfWork.register(entity);
|
|
271
|
-
}
|
|
272
|
-
if (options.initialized) {
|
|
273
|
-
EntityHelper.ensurePropagation(entity);
|
|
130
|
+
const diff2 = this.#comparator.diffEntities(meta.class, existsData, data, { includeInverseSides: true });
|
|
131
|
+
// do not override values changed by user
|
|
132
|
+
Utils.keys(diff).forEach(key => delete diff2[key]);
|
|
133
|
+
Utils.keys(diff2)
|
|
134
|
+
.filter(key => {
|
|
135
|
+
// ignore null values if there is already present non-null value
|
|
136
|
+
if (existsData[key] != null) {
|
|
137
|
+
return diff2[key] == null;
|
|
274
138
|
}
|
|
139
|
+
return diff2[key] === undefined;
|
|
140
|
+
})
|
|
141
|
+
.forEach(key => delete diff2[key]);
|
|
142
|
+
// but always add collection properties and formulas if they are part of the `data`
|
|
143
|
+
Utils.keys(data)
|
|
144
|
+
.filter(
|
|
145
|
+
key =>
|
|
146
|
+
meta.properties[key]?.formula ||
|
|
147
|
+
[ReferenceKind.ONE_TO_MANY, ReferenceKind.MANY_TO_MANY].includes(meta.properties[key]?.kind),
|
|
148
|
+
)
|
|
149
|
+
.forEach(key => (diff2[key] = data[key]));
|
|
150
|
+
// rehydrated with the new values, skip those changed by user
|
|
151
|
+
// use full hydration if the entity is already initialized, even if the caller used `initialized: false`
|
|
152
|
+
// (e.g. from createReference), otherwise scalar properties in diff2 won't be applied
|
|
153
|
+
const initialized = options.initialized || helper(entity).__initialized;
|
|
154
|
+
this.hydrate(entity, meta, diff2, initialized ? { ...options, initialized } : options);
|
|
155
|
+
// we need to update the entity data only with keys that were not present before
|
|
156
|
+
const nullVal = this.#config.get('forceUndefined') ? undefined : null;
|
|
157
|
+
Utils.keys(diff2).forEach(key => {
|
|
158
|
+
const prop = meta.properties[key];
|
|
159
|
+
if (
|
|
160
|
+
[ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) &&
|
|
161
|
+
Utils.isPlainObject(data[prop.name])
|
|
162
|
+
) {
|
|
163
|
+
// oxfmt-ignore
|
|
164
|
+
diff2[key] = entity[prop.name] ? helper(entity[prop.name]).getPrimaryKey(options.convertCustomTypes) : null;
|
|
165
|
+
}
|
|
166
|
+
if (
|
|
167
|
+
!options.convertCustomTypes &&
|
|
168
|
+
[ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE, ReferenceKind.SCALAR].includes(prop.kind) &&
|
|
169
|
+
prop.customType?.ensureComparable(meta, prop) &&
|
|
170
|
+
diff2[key] != null
|
|
171
|
+
) {
|
|
172
|
+
const converted = prop.customType.convertToJSValue(diff2[key], this.#platform, { force: true });
|
|
173
|
+
diff2[key] = prop.customType.convertToDatabaseValue(converted, this.#platform, { fromQuery: true });
|
|
174
|
+
}
|
|
175
|
+
originalEntityData[key] = diff2[key] === null ? nullVal : diff2[key];
|
|
176
|
+
helper(entity).__loadedProperties.add(key);
|
|
177
|
+
});
|
|
178
|
+
// in case of joined loading strategy, we need to cascade the merging to possibly loaded relations manually
|
|
179
|
+
meta.relations.forEach(prop => {
|
|
180
|
+
if (
|
|
181
|
+
[ReferenceKind.MANY_TO_MANY, ReferenceKind.ONE_TO_MANY].includes(prop.kind) &&
|
|
182
|
+
Array.isArray(data[prop.name])
|
|
183
|
+
) {
|
|
184
|
+
// instead of trying to match the collection items (which could easily fail if the collection was loaded with different ordering),
|
|
185
|
+
// we just create the entity from scratch, which will automatically pick the right one from the identity map and call `mergeData` on it
|
|
186
|
+
data[prop.name]
|
|
187
|
+
.filter(child => Utils.isPlainObject(child)) // objects with prototype can be PKs (e.g. `ObjectId`)
|
|
188
|
+
.forEach(child => this.create(prop.targetMeta.class, child, options)); // we can ignore the value, we just care about the `mergeData` call
|
|
189
|
+
return;
|
|
190
|
+
}
|
|
191
|
+
if (
|
|
192
|
+
[ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) &&
|
|
193
|
+
Utils.isPlainObject(data[prop.name]) &&
|
|
194
|
+
entity[prop.name] &&
|
|
195
|
+
helper(entity[prop.name]).__initialized
|
|
196
|
+
) {
|
|
197
|
+
this.create(prop.targetMeta.class, data[prop.name], options); // we can ignore the value, we just care about the `mergeData` call
|
|
198
|
+
}
|
|
199
|
+
});
|
|
200
|
+
this.unitOfWork.normalizeEntityData(meta, originalEntityData);
|
|
201
|
+
}
|
|
202
|
+
/** Creates or retrieves an uninitialized entity reference by its primary key or alternate key. */
|
|
203
|
+
createReference(entityName, id, options = {}) {
|
|
204
|
+
options.convertCustomTypes ??= true;
|
|
205
|
+
const meta = this.#metadata.get(entityName);
|
|
206
|
+
const schema = this.#driver.getSchemaName(meta, options);
|
|
207
|
+
// Handle alternate key lookup
|
|
208
|
+
if (options.key) {
|
|
209
|
+
const value = '' + (Array.isArray(id) ? id[0] : Utils.isPlainObject(id) ? id[options.key] : id);
|
|
210
|
+
const exists = this.unitOfWork.getByKey(entityName, options.key, value, schema, options.convertCustomTypes);
|
|
211
|
+
if (exists) {
|
|
212
|
+
return exists;
|
|
213
|
+
}
|
|
214
|
+
// Create entity stub - storeByKey will set the alternate key property and store in identity map
|
|
215
|
+
const entity = this.create(entityName, {}, { ...options, initialized: false });
|
|
216
|
+
this.unitOfWork.storeByKey(entity, options.key, value, schema, options.convertCustomTypes);
|
|
217
|
+
return entity;
|
|
218
|
+
}
|
|
219
|
+
if (meta.simplePK) {
|
|
220
|
+
const exists = this.unitOfWork.getById(entityName, id, schema);
|
|
221
|
+
if (exists) {
|
|
222
|
+
return exists;
|
|
223
|
+
}
|
|
224
|
+
const data = Utils.isPlainObject(id) ? id : { [meta.primaryKeys[0]]: Array.isArray(id) ? id[0] : id };
|
|
225
|
+
return this.create(entityName, data, { ...options, initialized: false });
|
|
226
|
+
}
|
|
227
|
+
if (Array.isArray(id)) {
|
|
228
|
+
id = Utils.getPrimaryKeyCondFromArray(id, meta);
|
|
229
|
+
}
|
|
230
|
+
const pks = Utils.getOrderedPrimaryKeys(id, meta, this.#platform);
|
|
231
|
+
const exists = this.unitOfWork.getById(entityName, pks, schema, options.convertCustomTypes);
|
|
232
|
+
if (exists) {
|
|
233
|
+
return exists;
|
|
234
|
+
}
|
|
235
|
+
if (Utils.isPrimaryKey(id)) {
|
|
236
|
+
id = { [meta.primaryKeys[0]]: id };
|
|
237
|
+
}
|
|
238
|
+
return this.create(entityName, id, { ...options, initialized: false });
|
|
239
|
+
}
|
|
240
|
+
/** Creates an embeddable entity instance from the provided data. */
|
|
241
|
+
createEmbeddable(entityName, data, options = {}) {
|
|
242
|
+
data = { ...data };
|
|
243
|
+
const meta = this.#metadata.get(entityName);
|
|
244
|
+
const meta2 = this.processDiscriminatorColumn(meta, data);
|
|
245
|
+
return this.createEntity(data, meta2, options);
|
|
246
|
+
}
|
|
247
|
+
/** Returns the EntityComparator instance used for diffing entities. */
|
|
248
|
+
getComparator() {
|
|
249
|
+
return this.#comparator;
|
|
250
|
+
}
|
|
251
|
+
createEntity(data, meta, options) {
|
|
252
|
+
const schema = this.#driver.getSchemaName(meta, options);
|
|
253
|
+
if (options.newEntity || meta.forceConstructor || meta.virtual) {
|
|
254
|
+
if (meta.polymorphs) {
|
|
255
|
+
throw new Error(`Cannot create entity ${meta.className}, class prototype is unknown`);
|
|
256
|
+
}
|
|
257
|
+
const params = this.extractConstructorParams(meta, data, options);
|
|
258
|
+
const Entity = meta.class;
|
|
259
|
+
// creates new instance via constructor as this is the new entity
|
|
260
|
+
const entity = new Entity(...params);
|
|
261
|
+
// creating managed entity instance when `forceEntityConstructor` is enabled,
|
|
262
|
+
// we need to wipe all the values as they would cause update queries on next flush
|
|
263
|
+
if (!options.newEntity && (meta.forceConstructor || this.#config.get('forceEntityConstructor'))) {
|
|
264
|
+
meta.props
|
|
265
|
+
.filter(prop => prop.persist !== false && !prop.primary && data[prop.name] === undefined)
|
|
266
|
+
.forEach(prop => delete entity[prop.name]);
|
|
267
|
+
}
|
|
268
|
+
if (meta.virtual) {
|
|
275
269
|
return entity;
|
|
270
|
+
}
|
|
271
|
+
helper(entity).__schema = schema;
|
|
272
|
+
if (options.initialized) {
|
|
273
|
+
EntityHelper.ensurePropagation(entity);
|
|
274
|
+
}
|
|
275
|
+
return entity;
|
|
276
276
|
}
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
}
|
|
294
|
-
}
|
|
277
|
+
// creates new entity instance, bypassing constructor call as its already persisted entity
|
|
278
|
+
const entity = Object.create(meta.class.prototype);
|
|
279
|
+
helper(entity).__managed = true;
|
|
280
|
+
helper(entity).__processing = !meta.embeddable && !meta.virtual;
|
|
281
|
+
helper(entity).__schema = schema;
|
|
282
|
+
if (options.merge && !options.newEntity) {
|
|
283
|
+
this.#hydrator.hydrateReference(
|
|
284
|
+
entity,
|
|
285
|
+
meta,
|
|
286
|
+
data,
|
|
287
|
+
this,
|
|
288
|
+
options.convertCustomTypes,
|
|
289
|
+
options.schema,
|
|
290
|
+
options.parentSchema,
|
|
291
|
+
);
|
|
292
|
+
this.unitOfWork.register(entity);
|
|
295
293
|
}
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
this.#hydrator.hydrate(entity, meta, data, this, 'full', options.newEntity, options.convertCustomTypes, options.schema, this.#driver.getSchemaName(meta, options), options.normalizeAccessors);
|
|
299
|
-
}
|
|
300
|
-
else {
|
|
301
|
-
this.#hydrator.hydrateReference(entity, meta, data, this, options.convertCustomTypes, options.schema, this.#driver.getSchemaName(meta, options), options.normalizeAccessors);
|
|
302
|
-
}
|
|
303
|
-
Utils.keys(data).forEach(key => {
|
|
304
|
-
helper(entity)?.__loadedProperties.add(key);
|
|
305
|
-
helper(entity)?.__serializationContext.fields?.add(key);
|
|
306
|
-
});
|
|
307
|
-
const processOnCreateHooksEarly = options.processOnCreateHooksEarly ?? this.#config.get('processOnCreateHooksEarly');
|
|
308
|
-
if (options.newEntity && processOnCreateHooksEarly) {
|
|
309
|
-
this.assignDefaultValues(entity, meta);
|
|
310
|
-
}
|
|
294
|
+
if (options.initialized) {
|
|
295
|
+
EntityHelper.ensurePropagation(entity);
|
|
311
296
|
}
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
297
|
+
return entity;
|
|
298
|
+
}
|
|
299
|
+
assignDefaultValues(entity, meta) {
|
|
300
|
+
for (const prop of meta.props) {
|
|
301
|
+
if (prop.embedded || [ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind)) {
|
|
302
|
+
continue;
|
|
303
|
+
}
|
|
304
|
+
if (prop.onCreate) {
|
|
305
|
+
entity[prop.name] ??= prop.onCreate(entity, this.#em);
|
|
306
|
+
} else if (prop.default != null && !isRaw(prop.default) && entity[prop.name] === undefined) {
|
|
307
|
+
entity[prop.name] = prop.default;
|
|
308
|
+
}
|
|
309
|
+
if (prop.kind === ReferenceKind.EMBEDDED && entity[prop.name]) {
|
|
310
|
+
const items = prop.array ? entity[prop.name] : [entity[prop.name]];
|
|
311
|
+
for (const item of items) {
|
|
312
|
+
this.assignDefaultValues(item, prop.targetMeta);
|
|
316
313
|
}
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
hydrate(entity, meta, data, options) {
|
|
318
|
+
if (options.initialized) {
|
|
319
|
+
this.#hydrator.hydrate(
|
|
320
|
+
entity,
|
|
321
|
+
meta,
|
|
322
|
+
data,
|
|
323
|
+
this,
|
|
324
|
+
'full',
|
|
325
|
+
options.newEntity,
|
|
326
|
+
options.convertCustomTypes,
|
|
327
|
+
options.schema,
|
|
328
|
+
this.#driver.getSchemaName(meta, options),
|
|
329
|
+
options.normalizeAccessors,
|
|
330
|
+
);
|
|
331
|
+
} else {
|
|
332
|
+
this.#hydrator.hydrateReference(
|
|
333
|
+
entity,
|
|
334
|
+
meta,
|
|
335
|
+
data,
|
|
336
|
+
this,
|
|
337
|
+
options.convertCustomTypes,
|
|
338
|
+
options.schema,
|
|
339
|
+
this.#driver.getSchemaName(meta, options),
|
|
340
|
+
options.normalizeAccessors,
|
|
341
|
+
);
|
|
342
|
+
}
|
|
343
|
+
Utils.keys(data).forEach(key => {
|
|
344
|
+
helper(entity)?.__loadedProperties.add(key);
|
|
345
|
+
helper(entity)?.__serializationContext.fields?.add(key);
|
|
346
|
+
});
|
|
347
|
+
const processOnCreateHooksEarly =
|
|
348
|
+
options.processOnCreateHooksEarly ?? this.#config.get('processOnCreateHooksEarly');
|
|
349
|
+
if (options.newEntity && processOnCreateHooksEarly) {
|
|
350
|
+
this.assignDefaultValues(entity, meta);
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
findEntity(data, meta, options) {
|
|
354
|
+
const schema = this.#driver.getSchemaName(meta, options);
|
|
355
|
+
if (meta.simplePK) {
|
|
356
|
+
return this.unitOfWork.getById(meta.class, data[meta.primaryKeys[0]], schema);
|
|
322
357
|
}
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
358
|
+
if (!Array.isArray(data) && meta.primaryKeys.some(pk => data[pk] == null)) {
|
|
359
|
+
return undefined;
|
|
360
|
+
}
|
|
361
|
+
const pks = Utils.getOrderedPrimaryKeys(data, meta, this.#platform, options.convertCustomTypes);
|
|
362
|
+
return this.unitOfWork.getById(meta.class, pks, schema);
|
|
363
|
+
}
|
|
364
|
+
processDiscriminatorColumn(meta, data) {
|
|
365
|
+
// Handle STI discriminator (persisted column)
|
|
366
|
+
if (meta.root.inheritanceType === 'sti') {
|
|
367
|
+
const prop = meta.properties[meta.root.discriminatorColumn];
|
|
368
|
+
const value = data[prop.name];
|
|
369
|
+
const type = meta.root.discriminatorMap[value];
|
|
370
|
+
meta = type ? this.#metadata.get(type) : meta;
|
|
371
|
+
return meta;
|
|
372
|
+
}
|
|
373
|
+
// Handle TPT discriminator (computed at query time)
|
|
374
|
+
if (meta.root.inheritanceType === 'tpt' && meta.root.discriminatorMap) {
|
|
375
|
+
const value = data[meta.root.tptDiscriminatorColumn];
|
|
376
|
+
if (value) {
|
|
377
|
+
const type = meta.root.discriminatorMap[value];
|
|
378
|
+
meta = type ? this.#metadata.get(type) : meta;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
return meta;
|
|
382
|
+
}
|
|
383
|
+
/**
|
|
384
|
+
* denormalize PK to value required by driver (e.g. ObjectId)
|
|
385
|
+
*/
|
|
386
|
+
denormalizePrimaryKey(meta, data) {
|
|
387
|
+
const pk = meta.getPrimaryProp();
|
|
388
|
+
const spk = meta.properties[meta.serializedPrimaryKey];
|
|
389
|
+
if (!spk?.serializedPrimaryKey) {
|
|
390
|
+
return;
|
|
391
|
+
}
|
|
392
|
+
if (pk.type === 'ObjectId' && (data[pk.name] != null || data[spk.name] != null)) {
|
|
393
|
+
data[pk.name] = this.#platform.denormalizePrimaryKey(data[spk.name] || data[pk.name]);
|
|
394
|
+
delete data[spk.name];
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* returns parameters for entity constructor, creating references from plain ids
|
|
399
|
+
*/
|
|
400
|
+
extractConstructorParams(meta, data, options) {
|
|
401
|
+
if (!meta.constructorParams) {
|
|
402
|
+
return [data];
|
|
403
|
+
}
|
|
404
|
+
return meta.constructorParams.map(k => {
|
|
405
|
+
const prop = meta.properties[k];
|
|
406
|
+
const value = data[k];
|
|
407
|
+
if (prop && [ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) && value) {
|
|
408
|
+
const pk = Reference.unwrapReference(value);
|
|
409
|
+
const entity = this.unitOfWork.getById(prop.targetMeta.class, pk, options.schema, true);
|
|
410
|
+
if (entity) {
|
|
411
|
+
return entity;
|
|
331
412
|
}
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
const value = data[meta.root.tptDiscriminatorColumn];
|
|
335
|
-
if (value) {
|
|
336
|
-
const type = meta.root.discriminatorMap[value];
|
|
337
|
-
meta = type ? this.#metadata.get(type) : meta;
|
|
338
|
-
}
|
|
413
|
+
if (Utils.isEntity(value)) {
|
|
414
|
+
return value;
|
|
339
415
|
}
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
* denormalize PK to value required by driver (e.g. ObjectId)
|
|
344
|
-
*/
|
|
345
|
-
denormalizePrimaryKey(meta, data) {
|
|
346
|
-
const pk = meta.getPrimaryProp();
|
|
347
|
-
const spk = meta.properties[meta.serializedPrimaryKey];
|
|
348
|
-
if (!spk?.serializedPrimaryKey) {
|
|
349
|
-
return;
|
|
416
|
+
const nakedPk = Utils.extractPK(value, prop.targetMeta, true);
|
|
417
|
+
if (Utils.isObject(value) && !nakedPk) {
|
|
418
|
+
return this.create(prop.targetMeta.class, value, options);
|
|
350
419
|
}
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
420
|
+
const { newEntity, initialized, ...rest } = options;
|
|
421
|
+
const target = this.createReference(prop.targetMeta.class, nakedPk, rest);
|
|
422
|
+
return Reference.wrapReference(target, prop);
|
|
423
|
+
}
|
|
424
|
+
if (prop?.kind === ReferenceKind.EMBEDDED && value) {
|
|
425
|
+
/* v8 ignore next */
|
|
426
|
+
if (Utils.isEntity(value)) {
|
|
427
|
+
return value;
|
|
354
428
|
}
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
429
|
+
return this.createEmbeddable(prop.targetMeta.class, value, options);
|
|
430
|
+
}
|
|
431
|
+
if (!prop) {
|
|
432
|
+
const tmp = { ...data };
|
|
433
|
+
for (const prop of meta.props) {
|
|
434
|
+
if (!options.convertCustomTypes || !prop.customType || tmp[prop.name] == null) {
|
|
435
|
+
continue;
|
|
436
|
+
}
|
|
437
|
+
if (
|
|
438
|
+
[ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) &&
|
|
439
|
+
Utils.isPlainObject(tmp[prop.name]) &&
|
|
440
|
+
!Utils.extractPK(tmp[prop.name], prop.targetMeta, true)
|
|
441
|
+
) {
|
|
442
|
+
tmp[prop.name] = Reference.wrapReference(this.create(prop.targetMeta.class, tmp[prop.name], options), prop);
|
|
443
|
+
} else if (prop.kind === ReferenceKind.SCALAR) {
|
|
444
|
+
tmp[prop.name] = prop.customType.convertToJSValue(tmp[prop.name], this.#platform);
|
|
445
|
+
}
|
|
362
446
|
}
|
|
363
|
-
return
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
}
|
|
375
|
-
const nakedPk = Utils.extractPK(value, prop.targetMeta, true);
|
|
376
|
-
if (Utils.isObject(value) && !nakedPk) {
|
|
377
|
-
return this.create(prop.targetMeta.class, value, options);
|
|
378
|
-
}
|
|
379
|
-
const { newEntity, initialized, ...rest } = options;
|
|
380
|
-
const target = this.createReference(prop.targetMeta.class, nakedPk, rest);
|
|
381
|
-
return Reference.wrapReference(target, prop);
|
|
382
|
-
}
|
|
383
|
-
if (prop?.kind === ReferenceKind.EMBEDDED && value) {
|
|
384
|
-
/* v8 ignore next */
|
|
385
|
-
if (Utils.isEntity(value)) {
|
|
386
|
-
return value;
|
|
387
|
-
}
|
|
388
|
-
return this.createEmbeddable(prop.targetMeta.class, value, options);
|
|
389
|
-
}
|
|
390
|
-
if (!prop) {
|
|
391
|
-
const tmp = { ...data };
|
|
392
|
-
for (const prop of meta.props) {
|
|
393
|
-
if (!options.convertCustomTypes || !prop.customType || tmp[prop.name] == null) {
|
|
394
|
-
continue;
|
|
395
|
-
}
|
|
396
|
-
if ([ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) &&
|
|
397
|
-
Utils.isPlainObject(tmp[prop.name]) &&
|
|
398
|
-
!Utils.extractPK(tmp[prop.name], prop.targetMeta, true)) {
|
|
399
|
-
tmp[prop.name] = Reference.wrapReference(this.create(prop.targetMeta.class, tmp[prop.name], options), prop);
|
|
400
|
-
}
|
|
401
|
-
else if (prop.kind === ReferenceKind.SCALAR) {
|
|
402
|
-
tmp[prop.name] = prop.customType.convertToJSValue(tmp[prop.name], this.#platform);
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
return tmp;
|
|
406
|
-
}
|
|
407
|
-
if (options.convertCustomTypes && prop.customType && value != null) {
|
|
408
|
-
return prop.customType.convertToJSValue(value, this.#platform);
|
|
409
|
-
}
|
|
410
|
-
return value;
|
|
411
|
-
});
|
|
412
|
-
}
|
|
413
|
-
get unitOfWork() {
|
|
414
|
-
return this.#em.getUnitOfWork(false);
|
|
415
|
-
}
|
|
447
|
+
return tmp;
|
|
448
|
+
}
|
|
449
|
+
if (options.convertCustomTypes && prop.customType && value != null) {
|
|
450
|
+
return prop.customType.convertToJSValue(value, this.#platform);
|
|
451
|
+
}
|
|
452
|
+
return value;
|
|
453
|
+
});
|
|
454
|
+
}
|
|
455
|
+
get unitOfWork() {
|
|
456
|
+
return this.#em.getUnitOfWork(false);
|
|
457
|
+
}
|
|
416
458
|
}
|