@mikro-orm/core 7.0.7 → 7.0.8-dev.0

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