@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.
Files changed (206) hide show
  1. package/EntityManager.d.ts +884 -583
  2. package/EntityManager.js +1922 -1895
  3. package/MikroORM.d.ts +103 -74
  4. package/MikroORM.js +178 -179
  5. package/README.md +1 -1
  6. package/cache/CacheAdapter.d.ts +36 -36
  7. package/cache/FileCacheAdapter.d.ts +30 -24
  8. package/cache/FileCacheAdapter.js +80 -78
  9. package/cache/GeneratedCacheAdapter.d.ts +18 -20
  10. package/cache/GeneratedCacheAdapter.js +30 -30
  11. package/cache/MemoryCacheAdapter.d.ts +18 -20
  12. package/cache/MemoryCacheAdapter.js +35 -36
  13. package/cache/NullCacheAdapter.d.ts +16 -16
  14. package/cache/NullCacheAdapter.js +24 -24
  15. package/connections/Connection.d.ts +95 -84
  16. package/connections/Connection.js +165 -168
  17. package/drivers/DatabaseDriver.d.ts +186 -80
  18. package/drivers/DatabaseDriver.js +450 -443
  19. package/drivers/IDatabaseDriver.d.ts +440 -301
  20. package/entity/BaseEntity.d.ts +120 -83
  21. package/entity/BaseEntity.js +43 -43
  22. package/entity/Collection.d.ts +212 -179
  23. package/entity/Collection.js +727 -721
  24. package/entity/EntityAssigner.d.ts +88 -77
  25. package/entity/EntityAssigner.js +231 -230
  26. package/entity/EntityFactory.d.ts +66 -54
  27. package/entity/EntityFactory.js +425 -383
  28. package/entity/EntityHelper.d.ts +34 -22
  29. package/entity/EntityHelper.js +280 -267
  30. package/entity/EntityIdentifier.d.ts +4 -4
  31. package/entity/EntityIdentifier.js +10 -10
  32. package/entity/EntityLoader.d.ts +98 -72
  33. package/entity/EntityLoader.js +753 -723
  34. package/entity/EntityRepository.d.ts +316 -201
  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 +126 -82
  39. package/entity/Reference.js +278 -274
  40. package/entity/WrappedEntity.d.ts +115 -72
  41. package/entity/WrappedEntity.js +168 -166
  42. package/entity/defineEntity.d.ts +1315 -636
  43. package/entity/defineEntity.js +527 -518
  44. package/entity/utils.d.ts +13 -3
  45. package/entity/utils.js +71 -73
  46. package/entity/validators.js +43 -43
  47. package/entity/wrap.js +8 -8
  48. package/enums.d.ts +258 -253
  49. package/enums.js +251 -252
  50. package/errors.d.ts +114 -72
  51. package/errors.js +350 -253
  52. package/events/EventManager.d.ts +26 -14
  53. package/events/EventManager.js +79 -77
  54. package/events/EventSubscriber.d.ts +29 -29
  55. package/events/TransactionEventBroadcaster.d.ts +15 -8
  56. package/events/TransactionEventBroadcaster.js +14 -14
  57. package/exceptions.d.ts +23 -40
  58. package/exceptions.js +35 -52
  59. package/hydration/Hydrator.d.ts +42 -17
  60. package/hydration/Hydrator.js +43 -43
  61. package/hydration/ObjectHydrator.d.ts +50 -17
  62. package/hydration/ObjectHydrator.js +481 -416
  63. package/index.d.ts +116 -2
  64. package/index.js +10 -1
  65. package/logging/DefaultLogger.d.ts +34 -32
  66. package/logging/DefaultLogger.js +86 -86
  67. package/logging/Logger.d.ts +41 -41
  68. package/logging/SimpleLogger.d.ts +13 -11
  69. package/logging/SimpleLogger.js +22 -22
  70. package/logging/colors.d.ts +6 -6
  71. package/logging/colors.js +11 -10
  72. package/logging/inspect.js +7 -7
  73. package/metadata/EntitySchema.d.ts +211 -127
  74. package/metadata/EntitySchema.js +397 -398
  75. package/metadata/MetadataDiscovery.d.ts +114 -114
  76. package/metadata/MetadataDiscovery.js +1951 -1863
  77. package/metadata/MetadataProvider.d.ts +24 -21
  78. package/metadata/MetadataProvider.js +82 -84
  79. package/metadata/MetadataStorage.d.ts +38 -32
  80. package/metadata/MetadataStorage.js +118 -118
  81. package/metadata/MetadataValidator.d.ts +39 -39
  82. package/metadata/MetadataValidator.js +381 -338
  83. package/metadata/discover-entities.d.ts +5 -2
  84. package/metadata/discover-entities.js +35 -27
  85. package/metadata/types.d.ts +615 -531
  86. package/naming-strategy/AbstractNamingStrategy.d.ts +54 -39
  87. package/naming-strategy/AbstractNamingStrategy.js +90 -85
  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 +109 -99
  93. package/naming-strategy/UnderscoreNamingStrategy.d.ts +7 -7
  94. package/naming-strategy/UnderscoreNamingStrategy.js +21 -21
  95. package/not-supported.js +7 -4
  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 +310 -299
  100. package/platforms/Platform.js +663 -636
  101. package/serialization/EntitySerializer.d.ts +49 -26
  102. package/serialization/EntitySerializer.js +224 -218
  103. package/serialization/EntityTransformer.d.ts +10 -6
  104. package/serialization/EntityTransformer.js +219 -217
  105. package/serialization/SerializationContext.d.ts +27 -23
  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 +17 -10
  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 +83 -79
  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 +75 -49
  158. package/types/index.js +52 -26
  159. package/typings.d.ts +1250 -737
  160. package/typings.js +244 -231
  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 +178 -170
  165. package/unit-of-work/ChangeSetPersister.d.ts +63 -44
  166. package/unit-of-work/ChangeSetPersister.js +442 -421
  167. package/unit-of-work/CommitOrderCalculator.d.ts +40 -40
  168. package/unit-of-work/CommitOrderCalculator.js +89 -88
  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 +181 -141
  172. package/unit-of-work/UnitOfWork.js +1200 -1183
  173. package/utils/AbstractMigrator.d.ts +111 -91
  174. package/utils/AbstractMigrator.js +275 -275
  175. package/utils/AbstractSchemaGenerator.d.ts +43 -34
  176. package/utils/AbstractSchemaGenerator.js +121 -122
  177. package/utils/AsyncContext.d.ts +3 -3
  178. package/utils/AsyncContext.js +34 -35
  179. package/utils/Configuration.d.ts +852 -808
  180. package/utils/Configuration.js +359 -344
  181. package/utils/Cursor.d.ts +40 -22
  182. package/utils/Cursor.js +135 -127
  183. package/utils/DataloaderUtils.d.ts +58 -43
  184. package/utils/DataloaderUtils.js +203 -198
  185. package/utils/EntityComparator.d.ts +98 -81
  186. package/utils/EntityComparator.js +828 -728
  187. package/utils/NullHighlighter.d.ts +1 -1
  188. package/utils/NullHighlighter.js +3 -3
  189. package/utils/QueryHelper.d.ts +79 -51
  190. package/utils/QueryHelper.js +372 -361
  191. package/utils/RawQueryFragment.d.ts +50 -34
  192. package/utils/RawQueryFragment.js +107 -105
  193. package/utils/RequestContext.d.ts +32 -32
  194. package/utils/RequestContext.js +52 -53
  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 +199 -197
  199. package/utils/Utils.d.ts +204 -145
  200. package/utils/Utils.js +812 -810
  201. package/utils/clone.js +104 -113
  202. package/utils/env-vars.js +90 -88
  203. package/utils/fs-utils.d.ts +15 -15
  204. package/utils/fs-utils.js +180 -181
  205. package/utils/upsert-utils.d.ts +20 -5
  206. package/utils/upsert-utils.js +114 -116
@@ -1,4 +1,4 @@
1
- import { EntityMetadata, } from '../typings.js';
1
+ import { EntityMetadata } from '../typings.js';
2
2
  import { compareArrays, Utils } from '../utils/Utils.js';
3
3
  import { QueryHelper } from '../utils/QueryHelper.js';
4
4
  import { MetadataValidator } from './MetadataValidator.js';
@@ -13,1877 +13,1965 @@ import { raw, Raw } from '../utils/RawQueryFragment.js';
13
13
  import { BaseEntity } from '../entity/BaseEntity.js';
14
14
  /** Discovers, validates, and processes entity metadata from configured sources. */
15
15
  export class MetadataDiscovery {
16
- #namingStrategy;
17
- #metadataProvider;
18
- #logger;
19
- #schemaHelper;
20
- #validator = new MetadataValidator();
21
- #discovered = [];
22
- #metadata;
23
- #platform;
24
- #config;
25
- constructor(metadata, platform, config) {
26
- this.#metadata = metadata;
27
- this.#platform = platform;
28
- this.#config = config;
29
- this.#namingStrategy = this.#config.getNamingStrategy();
30
- this.#metadataProvider = this.#config.getMetadataProvider();
31
- this.#logger = this.#config.getLogger();
32
- this.#schemaHelper = this.#platform.getSchemaHelper();
33
- }
34
- /** Discovers all entities asynchronously and returns the populated MetadataStorage. */
35
- async discover(preferTs = true) {
36
- this.#discovered.length = 0;
37
- const startTime = Date.now();
38
- const suffix = this.#metadataProvider.constructor === MetadataProvider
39
- ? ''
40
- : `, using ${colors.cyan(this.#metadataProvider.constructor.name)}`;
41
- this.#logger.log('discovery', `ORM entity discovery started${suffix}`);
42
- await this.findEntities(preferTs);
43
- for (const meta of this.#discovered) {
44
- /* v8 ignore next */
45
- await this.#config.get('discovery').onMetadata?.(meta, this.#platform);
46
- }
47
- this.processDiscoveredEntities(this.#discovered);
48
- const diff = Date.now() - startTime;
49
- this.#logger.log('discovery', `- entity discovery finished, found ${colors.green('' + this.#discovered.length)} entities, took ${colors.green(`${diff} ms`)}`);
50
- const storage = this.mapDiscoveredEntities();
51
- /* v8 ignore next */
52
- await this.#config.get('discovery').afterDiscovered?.(storage, this.#platform);
53
- return storage;
54
- }
55
- /** Discovers all entities synchronously and returns the populated MetadataStorage. */
56
- discoverSync() {
57
- this.#discovered.length = 0;
58
- const startTime = Date.now();
59
- const suffix = this.#metadataProvider.constructor === MetadataProvider
60
- ? ''
61
- : `, using ${colors.cyan(this.#metadataProvider.constructor.name)}`;
62
- this.#logger.log('discovery', `ORM entity discovery started${suffix} in sync mode`);
63
- const refs = this.#config.get('entities');
64
- this.discoverReferences(refs);
65
- for (const meta of this.#discovered) {
66
- /* v8 ignore next */
67
- void this.#config.get('discovery').onMetadata?.(meta, this.#platform);
68
- }
69
- this.processDiscoveredEntities(this.#discovered);
70
- const diff = Date.now() - startTime;
71
- this.#logger.log('discovery', `- entity discovery finished, found ${colors.green('' + this.#discovered.length)} entities, took ${colors.green(`${diff} ms`)}`);
72
- const storage = this.mapDiscoveredEntities();
73
- /* v8 ignore next */
74
- void this.#config.get('discovery').afterDiscovered?.(storage, this.#platform);
75
- return storage;
76
- }
77
- mapDiscoveredEntities() {
78
- const discovered = new MetadataStorage();
79
- this.#discovered
80
- .filter(meta => meta.root.name)
81
- .sort((a, b) => b.root.name.localeCompare(a.root.name))
82
- .forEach(meta => {
83
- this.#platform.validateMetadata(meta);
84
- discovered.set(meta.class, meta);
85
- });
86
- for (const meta of discovered) {
87
- meta.root = discovered.get(meta.root.class);
88
- if (meta.inheritanceType === 'tpt') {
89
- this.computeTPTOwnProps(meta);
90
- }
91
- }
92
- return discovered;
93
- }
94
- initAccessors(meta) {
95
- for (const prop of Object.values(meta.properties)) {
96
- if (!prop.accessor || meta.properties[prop.accessor]) {
97
- continue;
98
- }
99
- const desc = Object.getOwnPropertyDescriptor(meta.prototype, prop.name);
100
- if (desc?.get || desc?.set) {
101
- this.initRelation(prop);
102
- this.initFieldName(prop);
103
- const accessor = prop.name;
104
- prop.name = typeof prop.accessor === 'string' ? prop.accessor : prop.name;
105
- if (prop.accessor === true) {
106
- prop.getter = prop.setter = true;
107
- }
108
- else {
109
- prop.getter = prop.setter = false;
110
- }
111
- prop.accessor = accessor;
112
- prop.serializedName ??= accessor;
113
- Utils.renameKey(meta.properties, accessor, prop.name);
114
- }
115
- else {
116
- const name = prop.name;
117
- if (prop.kind === ReferenceKind.SCALAR || prop.kind === ReferenceKind.EMBEDDED) {
118
- prop.name = prop.accessor;
119
- }
120
- this.initRelation(prop);
121
- this.initFieldName(prop);
122
- prop.serializedName ??= prop.accessor;
123
- prop.name = name;
124
- }
125
- }
126
- }
127
- /** Processes discovered entities: initializes relations, embeddables, indexes, and inheritance. */
128
- processDiscoveredEntities(discovered) {
129
- for (const meta of discovered) {
130
- let i = 1;
131
- Object.values(meta.properties).forEach(prop => meta.propertyOrder.set(prop.name, i++));
132
- Object.values(meta.properties).forEach(prop => this.initPolyEmbeddables(prop, discovered));
133
- this.initAccessors(meta);
134
- }
135
- // ignore base entities (not annotated with @Entity)
136
- const filtered = discovered.filter(meta => meta.root.name);
137
- // sort so we discover entities first to get around issues with nested embeddables
138
- filtered.sort((a, b) => (!a.embeddable === !b.embeddable ? 0 : a.embeddable ? 1 : -1));
139
- filtered.forEach(meta => this.initSingleTableInheritance(meta, filtered));
140
- filtered.forEach(meta => this.initTPTRelationships(meta, filtered));
141
- filtered.forEach(meta => this.defineBaseEntityProperties(meta));
142
- filtered.forEach(meta => {
143
- const newMeta = EntitySchema.fromMetadata(meta).init().meta;
144
- return this.#metadata.set(newMeta.class, newMeta);
145
- });
146
- filtered.forEach(meta => this.initAutoincrement(meta));
147
- const forEachProp = (cb) => {
148
- filtered.forEach(meta => Object.values(meta.properties).forEach(prop => cb(meta, prop)));
149
- };
150
- forEachProp((m, p) => this.initFactoryField(m, p));
151
- forEachProp((m, p) => this.initPolymorphicRelation(m, p, filtered));
152
- forEachProp((_m, p) => this.initRelation(p));
153
- forEachProp((m, p) => this.initEmbeddables(m, p));
154
- forEachProp((_m, p) => this.initFieldName(p));
155
- filtered.forEach(meta => this.finalizeTPTInheritance(meta, filtered));
156
- filtered.forEach(meta => this.computeTPTOwnProps(meta));
157
- forEachProp((m, p) => this.initVersionProperty(m, p));
158
- forEachProp((m, p) => this.initCustomType(m, p));
159
- forEachProp((m, p) => this.initGeneratedColumn(m, p));
160
- filtered.forEach(meta => this.initAutoincrement(meta)); // once again after we init custom types
161
- filtered.forEach(meta => this.initCheckConstraints(meta));
162
- forEachProp((_m, p) => {
163
- this.initDefaultValue(p);
164
- this.inferTypeFromDefault(p);
165
- this.initRelation(p);
166
- this.initColumnType(p);
167
- });
168
- forEachProp((m, p) => this.initIndexes(m, p));
169
- filtered.forEach(meta => this.autoWireBidirectionalProperties(meta));
170
- for (const meta of filtered) {
171
- discovered.push(...this.processEntity(meta));
172
- }
173
- discovered.forEach(meta => meta.sync(true));
174
- this.#metadataProvider.combineCache();
175
- return discovered.map(meta => {
176
- meta = this.#metadata.get(meta.class);
177
- meta.sync(true);
178
- this.findReferencingProperties(meta, filtered);
179
- if (meta.inheritanceType === 'tpt') {
180
- this.computeTPTOwnProps(meta);
181
- }
182
- return meta;
183
- });
184
- }
185
- async findEntities(preferTs) {
186
- const { entities, entitiesTs, baseDir } = this.#config.getAll();
187
- const targets = preferTs && entitiesTs.length > 0 ? entitiesTs : entities;
188
- const processed = [];
189
- const paths = [];
190
- for (const entity of targets) {
191
- if (typeof entity === 'string') {
192
- paths.push(entity);
193
- }
194
- else {
195
- processed.push(entity);
196
- }
197
- }
198
- if (paths.length > 0) {
199
- const { discoverEntities } = await import('@mikro-orm/core/file-discovery');
200
- processed.push(...(await discoverEntities(paths, { baseDir })));
201
- }
202
- return this.discoverReferences(processed);
203
- }
204
- discoverMissingTargets() {
205
- const unwrap = (type) => type
206
- .replace(/Array<(.*)>/, '$1') // unwrap array
207
- .replace(/\[]$/, '') // remove array suffix
208
- .replace(/\((.*)\)/, '$1'); // unwrap union types
209
- const missing = [];
210
- this.#discovered.forEach(meta => Object.values(meta.properties).forEach(prop => {
211
- if (prop.kind === ReferenceKind.MANY_TO_MANY && prop.pivotEntity) {
212
- const pivotEntity = prop.pivotEntity;
213
- const target = typeof pivotEntity === 'function' && !pivotEntity.prototype
214
- ? pivotEntity()
215
- : pivotEntity;
216
- if (!this.#discovered.find(m => m.className === Utils.className(target))) {
217
- missing.push(target);
218
- }
219
- }
220
- if (prop.kind !== ReferenceKind.SCALAR) {
221
- const target = typeof prop.entity === 'function' && !prop.entity.prototype ? prop.entity() : prop.type;
222
- if (!unwrap(prop.type)
223
- .split(/ ?\| ?/)
224
- .every(type => this.#discovered.find(m => m.className === type))) {
225
- missing.push(...Utils.asArray(target));
226
- }
227
- }
228
- }));
229
- if (missing.length > 0) {
230
- this.tryDiscoverTargets(missing);
231
- }
232
- }
233
- tryDiscoverTargets(targets) {
234
- for (const target of targets) {
235
- const schema = EntitySchema.is(target) ? target : undefined;
236
- const isDiscoverable = typeof target === 'function' || schema;
237
- if (isDiscoverable && target.name) {
238
- // Get the actual class for EntitySchema, or use target directly for classes
239
- const targetClass = schema ? schema.meta.class : target;
240
- if (!this.#metadata.has(targetClass)) {
241
- this.discoverReferences([target], false);
242
- this.discoverMissingTargets();
243
- }
244
- }
245
- }
246
- }
247
- discoverReferences(refs, validate = true) {
248
- const found = [];
249
- for (const entity of refs) {
250
- if (typeof entity === 'string') {
251
- throw new Error('Folder based discovery requires the async `MikroORM.init()` method.');
252
- }
253
- const schema = this.getSchema(entity);
254
- const meta = schema.init().meta;
255
- this.#metadata.set(meta.class, meta);
256
- found.push(schema);
257
- }
258
- // discover parents (base entities) automatically
259
- for (const meta of this.#metadata) {
260
- let parent = meta.extends;
261
- if (EntitySchema.is(parent) && !this.#metadata.has(parent.init().meta.class)) {
262
- this.discoverReferences([parent], false);
263
- }
264
- if (typeof parent === 'function' && parent.name && !this.#metadata.has(parent)) {
265
- this.discoverReferences([parent], false);
266
- }
267
- /* v8 ignore next */
268
- if (!meta.class) {
269
- continue;
270
- }
271
- parent = Object.getPrototypeOf(meta.class);
272
- // Skip if parent is the auto-generated base class for the same entity (from setClass usage)
273
- if (parent.name !== '' &&
274
- parent.name !== meta.className &&
275
- !this.#metadata.has(parent) &&
276
- parent !== BaseEntity) {
277
- this.discoverReferences([parent], false);
278
- }
279
- }
280
- for (const schema of found) {
281
- this.discoverEntity(schema);
282
- }
283
- this.discoverMissingTargets();
284
- if (validate) {
285
- this.#validator.validateDiscovered(this.#discovered, this.#config.get('discovery'));
286
- }
287
- return this.#discovered.filter(meta => found.find(m => m.name === meta.className));
288
- }
289
- reset(entityName) {
290
- const exists = this.#discovered.findIndex(m => m.class === entityName || m.className === Utils.className(entityName));
291
- if (exists !== -1) {
292
- this.#metadata.reset(this.#discovered[exists].class);
293
- this.#discovered.splice(exists, 1);
294
- }
295
- }
296
- getSchema(entity) {
297
- if (EntitySchema.REGISTRY.has(entity)) {
298
- entity = EntitySchema.REGISTRY.get(entity);
299
- }
300
- if (EntitySchema.is(entity)) {
301
- const meta = Utils.copy(entity.meta, false);
302
- return EntitySchema.fromMetadata(meta);
303
- }
304
- // After the EntitySchema check, entity must be an EntityClass
305
- const cls = entity;
306
- const path = cls[MetadataStorage.PATH_SYMBOL];
307
- if (path) {
308
- const meta = Utils.copy(MetadataStorage.getMetadata(cls.name, path), false);
309
- meta.path = path;
310
- this.#metadata.set(cls, meta);
311
- }
312
- const exists = this.#metadata.has(cls);
313
- const meta = this.#metadata.get(cls, true);
314
- meta.abstract ??= !(exists && meta.name);
315
- const schema = EntitySchema.fromMetadata(meta);
316
- schema.setClass(cls);
317
- return schema;
318
- }
319
- getRootEntity(meta) {
320
- const base = meta.extends && this.#metadata.find(meta.extends);
321
- if (!base || base === meta) {
322
- // make sure we do not fall into infinite loop
323
- return meta;
324
- }
325
- const root = this.getRootEntity(base);
326
- // For STI or TPT, use the root entity.
327
- // Check both `inheritanceType` (set during discovery) and raw `inheritance` option (set before discovery).
328
- if (root.discriminatorColumn || root.inheritanceType || root.inheritance === 'tpt') {
329
- return root;
330
- }
331
- return meta;
332
- }
333
- discoverEntity(schema) {
334
- const meta = schema.meta;
335
- const path = meta.path;
336
- this.#logger.log('discovery', `- processing entity ${colors.cyan(meta.className)}${colors.grey(path ? ` (${path})` : '')}`);
337
- const root = this.getRootEntity(meta);
338
- schema.meta.path = meta.path;
339
- const cache = this.#metadataProvider.getCachedMetadata(meta, root);
340
- if (cache) {
341
- this.#logger.log('discovery', `- using cached metadata for entity ${colors.cyan(meta.className)}`);
342
- this.#discovered.push(meta);
343
- return;
344
- }
345
- // infer default value from property initializer early, as the metadata provider might use some defaults, e.g. string for reflect-metadata
346
- for (const prop of meta.props) {
347
- this.inferDefaultValue(meta, prop);
348
- }
349
- // if the definition is using EntitySchema we still want it to go through the metadata provider to validate no types are missing
350
- this.#metadataProvider.loadEntityMetadata(meta);
351
- if (!meta.tableName && meta.name) {
352
- const entityName = root.discriminatorColumn ? root.name : meta.name;
353
- meta.tableName = this.#namingStrategy.classToTableName(entityName);
354
- }
355
- this.#metadataProvider.saveToCache(meta);
356
- meta.root = root;
357
- this.#discovered.push(meta);
358
- }
359
- initNullability(prop) {
360
- if (prop.kind === ReferenceKind.ONE_TO_ONE) {
361
- return Utils.defaultValue(prop, 'nullable', prop.optional || !prop.owner);
362
- }
363
- return Utils.defaultValue(prop, 'nullable', prop.optional);
364
- }
365
- applyNamingStrategy(meta, prop) {
366
- if (!prop.fieldNames) {
367
- this.initFieldName(prop);
368
- }
369
- if (prop.kind === ReferenceKind.MANY_TO_MANY) {
370
- this.initManyToManyFields(meta, prop);
371
- }
372
- if ([ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind)) {
373
- this.initManyToOneFields(prop);
374
- }
375
- if (prop.kind === ReferenceKind.ONE_TO_MANY) {
376
- this.initOneToManyFields(prop);
377
- }
378
- }
379
- initOwnColumns(meta) {
380
- meta.sync();
381
- for (const prop of meta.props) {
382
- if (!prop.joinColumns ||
383
- !prop.columnTypes ||
384
- prop.ownColumns ||
385
- ![ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind)) {
386
- continue;
387
- }
388
- // For polymorphic relations, ownColumns should include all fieldNames
389
- // (discriminator + ID columns) since they are all owned by this relation
390
- if (prop.polymorphic) {
391
- prop.ownColumns = prop.fieldNames;
392
- continue;
393
- }
394
- if (prop.joinColumns.length > 1) {
395
- prop.ownColumns = prop.joinColumns.filter(col => {
396
- return !meta.props.find(p => p.name !== prop.name && (!p.fieldNames || p.fieldNames.includes(col)));
397
- });
398
- }
399
- if (!prop.ownColumns || prop.ownColumns.length === 0) {
400
- prop.ownColumns = prop.joinColumns;
401
- }
402
- if (prop.joinColumns.length !== prop.columnTypes.length) {
403
- prop.columnTypes = prop.joinColumns.flatMap(field => {
404
- const matched = meta.props.find(p => p.fieldNames?.includes(field));
405
- /* v8 ignore next */
406
- if (!matched) {
407
- throw MetadataError.fromWrongForeignKey(meta, prop, 'columnTypes');
408
- }
409
- return matched.columnTypes;
410
- });
411
- }
412
- if (prop.joinColumns.length !== prop.referencedColumnNames.length) {
413
- throw MetadataError.fromWrongForeignKey(meta, prop, 'referencedColumnNames');
414
- }
415
- }
416
- }
417
- initFieldName(prop, object = false) {
418
- if (prop.fieldNames && prop.fieldNames.length > 0) {
419
- return;
420
- }
16
+ #namingStrategy;
17
+ #metadataProvider;
18
+ #logger;
19
+ #schemaHelper;
20
+ #validator = new MetadataValidator();
21
+ #discovered = [];
22
+ #metadata;
23
+ #platform;
24
+ #config;
25
+ constructor(metadata, platform, config) {
26
+ this.#metadata = metadata;
27
+ this.#platform = platform;
28
+ this.#config = config;
29
+ this.#namingStrategy = this.#config.getNamingStrategy();
30
+ this.#metadataProvider = this.#config.getMetadataProvider();
31
+ this.#logger = this.#config.getLogger();
32
+ this.#schemaHelper = this.#platform.getSchemaHelper();
33
+ }
34
+ /** Discovers all entities asynchronously and returns the populated MetadataStorage. */
35
+ async discover(preferTs = true) {
36
+ this.#discovered.length = 0;
37
+ const startTime = Date.now();
38
+ const suffix =
39
+ this.#metadataProvider.constructor === MetadataProvider
40
+ ? ''
41
+ : `, using ${colors.cyan(this.#metadataProvider.constructor.name)}`;
42
+ this.#logger.log('discovery', `ORM entity discovery started${suffix}`);
43
+ await this.findEntities(preferTs);
44
+ for (const meta of this.#discovered) {
45
+ /* v8 ignore next */
46
+ await this.#config.get('discovery').onMetadata?.(meta, this.#platform);
47
+ }
48
+ this.processDiscoveredEntities(this.#discovered);
49
+ const diff = Date.now() - startTime;
50
+ this.#logger.log(
51
+ 'discovery',
52
+ `- entity discovery finished, found ${colors.green('' + this.#discovered.length)} entities, took ${colors.green(`${diff} ms`)}`,
53
+ );
54
+ const storage = this.mapDiscoveredEntities();
55
+ /* v8 ignore next */
56
+ await this.#config.get('discovery').afterDiscovered?.(storage, this.#platform);
57
+ return storage;
58
+ }
59
+ /** Discovers all entities synchronously and returns the populated MetadataStorage. */
60
+ discoverSync() {
61
+ this.#discovered.length = 0;
62
+ const startTime = Date.now();
63
+ const suffix =
64
+ this.#metadataProvider.constructor === MetadataProvider
65
+ ? ''
66
+ : `, using ${colors.cyan(this.#metadataProvider.constructor.name)}`;
67
+ this.#logger.log('discovery', `ORM entity discovery started${suffix} in sync mode`);
68
+ const refs = this.#config.get('entities');
69
+ this.discoverReferences(refs);
70
+ for (const meta of this.#discovered) {
71
+ /* v8 ignore next */
72
+ void this.#config.get('discovery').onMetadata?.(meta, this.#platform);
73
+ }
74
+ this.processDiscoveredEntities(this.#discovered);
75
+ const diff = Date.now() - startTime;
76
+ this.#logger.log(
77
+ 'discovery',
78
+ `- entity discovery finished, found ${colors.green('' + this.#discovered.length)} entities, took ${colors.green(`${diff} ms`)}`,
79
+ );
80
+ const storage = this.mapDiscoveredEntities();
81
+ /* v8 ignore next */
82
+ void this.#config.get('discovery').afterDiscovered?.(storage, this.#platform);
83
+ return storage;
84
+ }
85
+ mapDiscoveredEntities() {
86
+ const discovered = new MetadataStorage();
87
+ this.#discovered
88
+ .filter(meta => meta.root.name)
89
+ .sort((a, b) => b.root.name.localeCompare(a.root.name))
90
+ .forEach(meta => {
91
+ this.#platform.validateMetadata(meta);
92
+ discovered.set(meta.class, meta);
93
+ });
94
+ for (const meta of discovered) {
95
+ meta.root = discovered.get(meta.root.class);
96
+ if (meta.inheritanceType === 'tpt') {
97
+ this.computeTPTOwnProps(meta);
98
+ }
99
+ }
100
+ return discovered;
101
+ }
102
+ initAccessors(meta) {
103
+ for (const prop of Object.values(meta.properties)) {
104
+ if (!prop.accessor || meta.properties[prop.accessor]) {
105
+ continue;
106
+ }
107
+ const desc = Object.getOwnPropertyDescriptor(meta.prototype, prop.name);
108
+ if (desc?.get || desc?.set) {
109
+ this.initRelation(prop);
110
+ this.initFieldName(prop);
111
+ const accessor = prop.name;
112
+ prop.name = typeof prop.accessor === 'string' ? prop.accessor : prop.name;
113
+ if (prop.accessor === true) {
114
+ prop.getter = prop.setter = true;
115
+ } else {
116
+ prop.getter = prop.setter = false;
117
+ }
118
+ prop.accessor = accessor;
119
+ prop.serializedName ??= accessor;
120
+ Utils.renameKey(meta.properties, accessor, prop.name);
121
+ } else {
122
+ const name = prop.name;
421
123
  if (prop.kind === ReferenceKind.SCALAR || prop.kind === ReferenceKind.EMBEDDED) {
422
- prop.fieldNames = [this.#namingStrategy.propertyToColumnName(prop.name, object)];
423
- }
424
- else if ([ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) && !prop.polymorphic) {
425
- prop.fieldNames = this.initManyToOneFieldName(prop, prop.name);
426
- }
427
- else if (prop.kind === ReferenceKind.MANY_TO_MANY && prop.owner) {
428
- prop.fieldNames = this.initManyToManyFieldName(prop, prop.name);
429
- }
430
- }
431
- initManyToOneFieldName(prop, name, tableName) {
432
- const meta2 = prop.targetMeta;
433
- const ret = [];
434
- for (const primaryKey of meta2.primaryKeys) {
435
- this.initFieldName(meta2.properties[primaryKey]);
436
- for (const fieldName of meta2.properties[primaryKey].fieldNames) {
437
- ret.push(this.#namingStrategy.joinKeyColumnName(name, fieldName, meta2.compositePK, tableName));
438
- }
439
- }
440
- return ret;
441
- }
442
- initManyToManyFieldName(prop, name) {
443
- const meta2 = prop.targetMeta;
444
- return meta2.primaryKeys.map(() => this.#namingStrategy.propertyToColumnName(name));
445
- }
446
- initManyToManyFields(meta, prop) {
447
- const meta2 = prop.targetMeta;
448
- Utils.defaultValue(prop, 'fixedOrder', !!prop.fixedOrderColumn);
449
- const pivotMeta = this.#metadata.find(prop.pivotEntity);
450
- const props = Object.values(pivotMeta?.properties ?? {});
451
- const pks = props.filter(p => p.primary);
452
- const fks = props.filter(p => p.kind === ReferenceKind.MANY_TO_ONE);
453
- if (pivotMeta) {
454
- pivotMeta.pivotTable = true;
455
- prop.pivotTable = pivotMeta.tableName;
456
- if (pks.length === 1) {
457
- prop.fixedOrder = true;
458
- prop.fixedOrderColumn = pks[0].name;
459
- }
460
- }
461
- if (pivotMeta && (pks.length === 2 || fks.length >= 2)) {
462
- const owner = prop.mappedBy ? meta2.properties[prop.mappedBy] : prop;
463
- const [first, second] = this.ensureCorrectFKOrderInPivotEntity(pivotMeta, owner);
464
- prop.joinColumns ??= first.fieldNames;
465
- prop.inverseJoinColumns ??= second.fieldNames;
466
- }
467
- if (!prop.pivotTable && prop.owner && this.#platform.usesPivotTable()) {
468
- prop.pivotTable = this.#namingStrategy.joinTableName(meta.className, meta2.tableName, prop.name, meta.tableName);
469
- }
470
- if (prop.mappedBy) {
471
- const prop2 = meta2.properties[prop.mappedBy];
472
- this.initManyToManyFields(meta2, prop2);
473
- prop.pivotTable = prop2.pivotTable;
474
- prop.pivotEntity = prop2.pivotEntity;
475
- prop.fixedOrder = prop2.fixedOrder;
476
- prop.fixedOrderColumn = prop2.fixedOrderColumn;
477
- prop.joinColumns = prop2.inverseJoinColumns;
478
- prop.inverseJoinColumns = prop2.joinColumns;
479
- prop.polymorphic = prop2.polymorphic;
480
- prop.discriminator = prop2.discriminator;
481
- prop.discriminatorColumn = prop2.discriminatorColumn;
482
- prop.discriminatorValue = prop2.discriminatorValue;
483
- }
484
- prop.referencedColumnNames ??= Utils.flatten(meta.primaryKeys.map(primaryKey => meta.properties[primaryKey].fieldNames));
485
- // For polymorphic M:N, use discriminator base name for FK column (e.g., taggable_id instead of post_id)
486
- if (prop.polymorphic && prop.discriminator) {
487
- prop.joinColumns ??= prop.referencedColumnNames.map(referencedColumnName => this.#namingStrategy.joinKeyColumnName(prop.discriminator, referencedColumnName, prop.referencedColumnNames.length > 1));
488
- }
489
- else {
490
- const ownerTableName = this.isExplicitTableName(meta.root) ? meta.root.tableName : undefined;
491
- prop.joinColumns ??= prop.referencedColumnNames.map(referencedColumnName => this.#namingStrategy.joinKeyColumnName(meta.root.className, referencedColumnName, meta.compositePK, ownerTableName));
492
- }
493
- const inverseTableName = this.isExplicitTableName(meta2.root) ? meta2.root.tableName : undefined;
494
- prop.inverseJoinColumns ??= this.initManyToOneFieldName(prop, meta2.root.className, inverseTableName);
495
- }
496
- isExplicitTableName(meta) {
497
- return meta.tableName !== this.#namingStrategy.classToTableName(meta.className);
498
- }
499
- initManyToOneFields(prop) {
500
- if (prop.polymorphic && prop.polymorphTargets) {
501
- const fieldNames1 = prop.targetMeta.getPrimaryProps().flatMap(pk => pk.fieldNames);
502
- const idColumns = fieldNames1.map(fieldName => this.#namingStrategy.joinKeyColumnName(prop.discriminator, fieldName, fieldNames1.length > 1));
503
- prop.fieldNames ??= [prop.discriminatorColumn, ...idColumns];
504
- prop.joinColumns ??= idColumns;
505
- prop.referencedColumnNames ??= fieldNames1;
506
- prop.referencedTableName ??= prop.targetMeta.tableName;
507
- return;
508
- }
509
- const meta2 = prop.targetMeta;
510
- let fieldNames;
511
- // If targetKey is specified, use that property's field names instead of PKs
512
- if (prop.targetKey) {
513
- const targetProp = meta2.properties[prop.targetKey];
514
- fieldNames = targetProp.fieldNames;
515
- }
516
- else {
517
- fieldNames = Utils.flatten(meta2.primaryKeys.map(primaryKey => meta2.properties[primaryKey].fieldNames));
518
- }
519
- Utils.defaultValue(prop, 'referencedTableName', meta2.tableName);
520
- if (!prop.joinColumns) {
521
- prop.joinColumns = fieldNames.map(fieldName => this.#namingStrategy.joinKeyColumnName(prop.name, fieldName, fieldNames.length > 1));
522
- }
523
- if (!prop.referencedColumnNames) {
524
- prop.referencedColumnNames = fieldNames;
525
- }
526
- // Relations to composite PK targets need cascade update by default,
527
- // since composite PKs are more likely to have mutable components
528
- if (meta2.compositePK) {
529
- prop.updateRule ??= 'cascade';
530
- }
531
- // Nullable relations default to 'set null' on delete - when the referenced
532
- // entity is deleted, set the FK to null rather than failing
533
- if (prop.nullable) {
534
- prop.deleteRule ??= 'set null';
535
- }
536
- }
537
- initOneToManyFields(prop) {
538
- const meta2 = prop.targetMeta;
539
- if (!prop.joinColumns) {
540
- prop.joinColumns = [this.#namingStrategy.joinColumnName(prop.name)];
541
- }
542
- if (!prop.referencedColumnNames) {
543
- meta2.getPrimaryProps().forEach(pk => this.applyNamingStrategy(meta2, pk));
544
- prop.referencedColumnNames = Utils.flatten(meta2.getPrimaryProps().map(pk => pk.fieldNames));
545
- }
546
- }
547
- processEntity(meta) {
548
- const pks = Object.values(meta.properties).filter(prop => prop.primary);
549
- meta.primaryKeys = pks.map(prop => prop.name);
550
- meta.compositePK = pks.length > 1;
551
- // FK used as PK, we need to cascade - applies to both single FK-as-PK
552
- // and composite PKs where all PKs are FKs (e.g., pivot-like entities)
553
- const fkPks = pks.filter(pk => pk.kind !== ReferenceKind.SCALAR);
554
- if (fkPks.length > 0 && fkPks.length === pks.length) {
555
- for (const pk of fkPks) {
556
- pk.deleteRule ??= 'cascade';
557
- pk.updateRule ??= 'cascade';
558
- }
559
- }
560
- meta.forceConstructor ??= this.shouldForceConstructorUsage(meta);
561
- this.#validator.validateEntityDefinition(this.#metadata, meta.class, this.#config.get('discovery'));
562
- for (const prop of Object.values(meta.properties)) {
563
- this.initNullability(prop);
564
- this.applyNamingStrategy(meta, prop);
565
- this.initDefaultValue(prop);
566
- this.inferTypeFromDefault(prop);
567
- this.initVersionProperty(meta, prop);
568
- this.initCustomType(meta, prop);
569
- this.initColumnType(prop);
570
- this.initRelation(prop);
571
- }
572
- this.initOwnColumns(meta);
573
- meta.simplePK =
574
- pks.length === 1 && pks[0].kind === ReferenceKind.SCALAR && !pks[0].customType && pks[0].runtimeType !== 'Date';
575
- meta.serializedPrimaryKey ??= meta.props.find(prop => prop.serializedPrimaryKey)?.name;
576
- if (meta.serializedPrimaryKey && meta.serializedPrimaryKey !== meta.primaryKeys[0]) {
577
- meta.properties[meta.serializedPrimaryKey].persist ??= false;
578
- }
579
- if (this.#platform.usesPivotTable()) {
580
- return Object.values(meta.properties)
581
- .filter(prop => prop.kind === ReferenceKind.MANY_TO_MANY && prop.owner && prop.pivotTable)
582
- .map(prop => {
583
- const pivotMeta = this.definePivotTableEntity(meta, prop);
584
- prop.pivotEntity = pivotMeta.class;
585
- if (prop.inversedBy) {
586
- prop.targetMeta.properties[prop.inversedBy].pivotEntity = pivotMeta.class;
587
- }
588
- return pivotMeta;
589
- });
590
- }
591
- return [];
592
- }
593
- findReferencingProperties(meta, metadata) {
594
- for (const meta2 of metadata) {
595
- for (const prop2 of meta2.relations) {
596
- if (prop2.kind !== ReferenceKind.SCALAR && prop2.type === meta.className) {
597
- meta.referencingProperties.push({ meta: meta2, prop: prop2 });
598
- }
599
- }
600
- }
601
- }
602
- initFactoryField(meta, prop) {
603
- ['mappedBy', 'inversedBy', 'pivotEntity'].forEach(type => {
604
- const value = prop[type];
605
- if (value instanceof Function) {
606
- const meta2 = prop.targetMeta ?? this.#metadata.get(prop.target);
607
- prop[type] = value(meta2.properties)?.name;
608
- if (type === 'pivotEntity' && value) {
609
- prop[type] = value(meta2.properties);
610
- }
611
- if (prop[type] == null) {
612
- throw MetadataError.fromWrongReference(meta, prop, type);
613
- }
614
- }
124
+ prop.name = prop.accessor;
125
+ }
126
+ this.initRelation(prop);
127
+ this.initFieldName(prop);
128
+ prop.serializedName ??= prop.accessor;
129
+ prop.name = name;
130
+ }
131
+ }
132
+ }
133
+ /** Processes discovered entities: initializes relations, embeddables, indexes, and inheritance. */
134
+ processDiscoveredEntities(discovered) {
135
+ for (const meta of discovered) {
136
+ let i = 1;
137
+ Object.values(meta.properties).forEach(prop => meta.propertyOrder.set(prop.name, i++));
138
+ Object.values(meta.properties).forEach(prop => this.initPolyEmbeddables(prop, discovered));
139
+ this.initAccessors(meta);
140
+ }
141
+ // ignore base entities (not annotated with @Entity)
142
+ const filtered = discovered.filter(meta => meta.root.name);
143
+ // sort so we discover entities first to get around issues with nested embeddables
144
+ filtered.sort((a, b) => (!a.embeddable === !b.embeddable ? 0 : a.embeddable ? 1 : -1));
145
+ filtered.forEach(meta => this.initSingleTableInheritance(meta, filtered));
146
+ filtered.forEach(meta => this.initTPTRelationships(meta, filtered));
147
+ filtered.forEach(meta => this.defineBaseEntityProperties(meta));
148
+ filtered.forEach(meta => {
149
+ const newMeta = EntitySchema.fromMetadata(meta).init().meta;
150
+ return this.#metadata.set(newMeta.class, newMeta);
151
+ });
152
+ filtered.forEach(meta => this.initAutoincrement(meta));
153
+ const forEachProp = cb => {
154
+ filtered.forEach(meta => Object.values(meta.properties).forEach(prop => cb(meta, prop)));
155
+ };
156
+ forEachProp((m, p) => this.initFactoryField(m, p));
157
+ forEachProp((m, p) => this.initPolymorphicRelation(m, p, filtered));
158
+ forEachProp((_m, p) => this.initRelation(p));
159
+ forEachProp((m, p) => this.initEmbeddables(m, p));
160
+ forEachProp((_m, p) => this.initFieldName(p));
161
+ filtered.forEach(meta => this.finalizeTPTInheritance(meta, filtered));
162
+ filtered.forEach(meta => this.computeTPTOwnProps(meta));
163
+ forEachProp((m, p) => this.initVersionProperty(m, p));
164
+ forEachProp((m, p) => this.initCustomType(m, p));
165
+ forEachProp((m, p) => this.initGeneratedColumn(m, p));
166
+ filtered.forEach(meta => this.initAutoincrement(meta)); // once again after we init custom types
167
+ filtered.forEach(meta => this.initCheckConstraints(meta));
168
+ forEachProp((_m, p) => {
169
+ this.initDefaultValue(p);
170
+ this.inferTypeFromDefault(p);
171
+ this.initRelation(p);
172
+ this.initColumnType(p);
173
+ });
174
+ forEachProp((m, p) => this.initIndexes(m, p));
175
+ filtered.forEach(meta => this.autoWireBidirectionalProperties(meta));
176
+ for (const meta of filtered) {
177
+ discovered.push(...this.processEntity(meta));
178
+ }
179
+ discovered.forEach(meta => meta.sync(true));
180
+ this.#metadataProvider.combineCache();
181
+ return discovered.map(meta => {
182
+ meta = this.#metadata.get(meta.class);
183
+ meta.sync(true);
184
+ this.findReferencingProperties(meta, filtered);
185
+ if (meta.inheritanceType === 'tpt') {
186
+ this.computeTPTOwnProps(meta);
187
+ }
188
+ return meta;
189
+ });
190
+ }
191
+ async findEntities(preferTs) {
192
+ const { entities, entitiesTs, baseDir } = this.#config.getAll();
193
+ const targets = preferTs && entitiesTs.length > 0 ? entitiesTs : entities;
194
+ const processed = [];
195
+ const paths = [];
196
+ for (const entity of targets) {
197
+ if (typeof entity === 'string') {
198
+ paths.push(entity);
199
+ } else {
200
+ processed.push(entity);
201
+ }
202
+ }
203
+ if (paths.length > 0) {
204
+ const { discoverEntities } = await import('@mikro-orm/core/file-discovery');
205
+ processed.push(...(await discoverEntities(paths, { baseDir })));
206
+ }
207
+ return this.discoverReferences(processed);
208
+ }
209
+ discoverMissingTargets() {
210
+ const unwrap = type =>
211
+ type
212
+ .replace(/Array<(.*)>/, '$1') // unwrap array
213
+ .replace(/\[]$/, '') // remove array suffix
214
+ .replace(/\((.*)\)/, '$1'); // unwrap union types
215
+ const missing = [];
216
+ this.#discovered.forEach(meta =>
217
+ Object.values(meta.properties).forEach(prop => {
218
+ if (prop.kind === ReferenceKind.MANY_TO_MANY && prop.pivotEntity) {
219
+ const pivotEntity = prop.pivotEntity;
220
+ const target = typeof pivotEntity === 'function' && !pivotEntity.prototype ? pivotEntity() : pivotEntity;
221
+ if (!this.#discovered.find(m => m.className === Utils.className(target))) {
222
+ missing.push(target);
223
+ }
224
+ }
225
+ if (prop.kind !== ReferenceKind.SCALAR) {
226
+ const target = typeof prop.entity === 'function' && !prop.entity.prototype ? prop.entity() : prop.type;
227
+ if (
228
+ !unwrap(prop.type)
229
+ .split(/ ?\| ?/)
230
+ .every(type => this.#discovered.find(m => m.className === type))
231
+ ) {
232
+ missing.push(...Utils.asArray(target));
233
+ }
234
+ }
235
+ }),
236
+ );
237
+ if (missing.length > 0) {
238
+ this.tryDiscoverTargets(missing);
239
+ }
240
+ }
241
+ tryDiscoverTargets(targets) {
242
+ for (const target of targets) {
243
+ const schema = EntitySchema.is(target) ? target : undefined;
244
+ const isDiscoverable = typeof target === 'function' || schema;
245
+ if (isDiscoverable && target.name) {
246
+ // Get the actual class for EntitySchema, or use target directly for classes
247
+ const targetClass = schema ? schema.meta.class : target;
248
+ if (!this.#metadata.has(targetClass)) {
249
+ this.discoverReferences([target], false);
250
+ this.discoverMissingTargets();
251
+ }
252
+ }
253
+ }
254
+ }
255
+ discoverReferences(refs, validate = true) {
256
+ const found = [];
257
+ for (const entity of refs) {
258
+ if (typeof entity === 'string') {
259
+ throw new Error('Folder based discovery requires the async `MikroORM.init()` method.');
260
+ }
261
+ const schema = this.getSchema(entity);
262
+ const meta = schema.init().meta;
263
+ this.#metadata.set(meta.class, meta);
264
+ found.push(schema);
265
+ }
266
+ // discover parents (base entities) automatically
267
+ for (const meta of this.#metadata) {
268
+ let parent = meta.extends;
269
+ if (EntitySchema.is(parent) && !this.#metadata.has(parent.init().meta.class)) {
270
+ this.discoverReferences([parent], false);
271
+ }
272
+ if (typeof parent === 'function' && parent.name && !this.#metadata.has(parent)) {
273
+ this.discoverReferences([parent], false);
274
+ }
275
+ /* v8 ignore next */
276
+ if (!meta.class) {
277
+ continue;
278
+ }
279
+ parent = Object.getPrototypeOf(meta.class);
280
+ // Skip if parent is the auto-generated base class for the same entity (from setClass usage)
281
+ if (
282
+ parent.name !== '' &&
283
+ parent.name !== meta.className &&
284
+ !this.#metadata.has(parent) &&
285
+ parent !== BaseEntity
286
+ ) {
287
+ this.discoverReferences([parent], false);
288
+ }
289
+ }
290
+ for (const schema of found) {
291
+ this.discoverEntity(schema);
292
+ }
293
+ this.discoverMissingTargets();
294
+ if (validate) {
295
+ this.#validator.validateDiscovered(this.#discovered, this.#config.get('discovery'));
296
+ }
297
+ return this.#discovered.filter(meta => found.find(m => m.name === meta.className));
298
+ }
299
+ reset(entityName) {
300
+ const exists = this.#discovered.findIndex(
301
+ m => m.class === entityName || m.className === Utils.className(entityName),
302
+ );
303
+ if (exists !== -1) {
304
+ this.#metadata.reset(this.#discovered[exists].class);
305
+ this.#discovered.splice(exists, 1);
306
+ }
307
+ }
308
+ getSchema(entity) {
309
+ if (EntitySchema.REGISTRY.has(entity)) {
310
+ entity = EntitySchema.REGISTRY.get(entity);
311
+ }
312
+ if (EntitySchema.is(entity)) {
313
+ const meta = Utils.copy(entity.meta, false);
314
+ return EntitySchema.fromMetadata(meta);
315
+ }
316
+ // After the EntitySchema check, entity must be an EntityClass
317
+ const cls = entity;
318
+ const path = cls[MetadataStorage.PATH_SYMBOL];
319
+ if (path) {
320
+ const meta = Utils.copy(MetadataStorage.getMetadata(cls.name, path), false);
321
+ meta.path = path;
322
+ this.#metadata.set(cls, meta);
323
+ }
324
+ const exists = this.#metadata.has(cls);
325
+ const meta = this.#metadata.get(cls, true);
326
+ meta.abstract ??= !(exists && meta.name);
327
+ const schema = EntitySchema.fromMetadata(meta);
328
+ schema.setClass(cls);
329
+ return schema;
330
+ }
331
+ getRootEntity(meta) {
332
+ const base = meta.extends && this.#metadata.find(meta.extends);
333
+ if (!base || base === meta) {
334
+ // make sure we do not fall into infinite loop
335
+ return meta;
336
+ }
337
+ const root = this.getRootEntity(base);
338
+ // For STI or TPT, use the root entity.
339
+ // Check both `inheritanceType` (set during discovery) and raw `inheritance` option (set before discovery).
340
+ if (root.discriminatorColumn || root.inheritanceType || root.inheritance === 'tpt') {
341
+ return root;
342
+ }
343
+ return meta;
344
+ }
345
+ discoverEntity(schema) {
346
+ const meta = schema.meta;
347
+ const path = meta.path;
348
+ this.#logger.log(
349
+ 'discovery',
350
+ `- processing entity ${colors.cyan(meta.className)}${colors.grey(path ? ` (${path})` : '')}`,
351
+ );
352
+ const root = this.getRootEntity(meta);
353
+ schema.meta.path = meta.path;
354
+ const cache = this.#metadataProvider.getCachedMetadata(meta, root);
355
+ if (cache) {
356
+ this.#logger.log('discovery', `- using cached metadata for entity ${colors.cyan(meta.className)}`);
357
+ this.#discovered.push(meta);
358
+ return;
359
+ }
360
+ // infer default value from property initializer early, as the metadata provider might use some defaults, e.g. string for reflect-metadata
361
+ for (const prop of meta.props) {
362
+ this.inferDefaultValue(meta, prop);
363
+ }
364
+ // if the definition is using EntitySchema we still want it to go through the metadata provider to validate no types are missing
365
+ this.#metadataProvider.loadEntityMetadata(meta);
366
+ if (!meta.tableName && meta.name) {
367
+ const entityName = root.discriminatorColumn ? root.name : meta.name;
368
+ meta.tableName = this.#namingStrategy.classToTableName(entityName);
369
+ }
370
+ this.#metadataProvider.saveToCache(meta);
371
+ meta.root = root;
372
+ this.#discovered.push(meta);
373
+ }
374
+ initNullability(prop) {
375
+ if (prop.kind === ReferenceKind.ONE_TO_ONE) {
376
+ return Utils.defaultValue(prop, 'nullable', prop.optional || !prop.owner);
377
+ }
378
+ return Utils.defaultValue(prop, 'nullable', prop.optional);
379
+ }
380
+ applyNamingStrategy(meta, prop) {
381
+ if (!prop.fieldNames) {
382
+ this.initFieldName(prop);
383
+ }
384
+ if (prop.kind === ReferenceKind.MANY_TO_MANY) {
385
+ this.initManyToManyFields(meta, prop);
386
+ }
387
+ if ([ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind)) {
388
+ this.initManyToOneFields(prop);
389
+ }
390
+ if (prop.kind === ReferenceKind.ONE_TO_MANY) {
391
+ this.initOneToManyFields(prop);
392
+ }
393
+ }
394
+ initOwnColumns(meta) {
395
+ meta.sync();
396
+ for (const prop of meta.props) {
397
+ if (
398
+ !prop.joinColumns ||
399
+ !prop.columnTypes ||
400
+ prop.ownColumns ||
401
+ ![ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind)
402
+ ) {
403
+ continue;
404
+ }
405
+ // For polymorphic relations, ownColumns should include all fieldNames
406
+ // (discriminator + ID columns) since they are all owned by this relation
407
+ if (prop.polymorphic) {
408
+ prop.ownColumns = prop.fieldNames;
409
+ continue;
410
+ }
411
+ if (prop.joinColumns.length > 1) {
412
+ prop.ownColumns = prop.joinColumns.filter(col => {
413
+ return !meta.props.find(p => p.name !== prop.name && (!p.fieldNames || p.fieldNames.includes(col)));
615
414
  });
616
- }
617
- ensureCorrectFKOrderInPivotEntity(meta, owner) {
618
- const pks = Object.values(meta.properties).filter(p => p.primary);
619
- const fks = Object.values(meta.properties).filter(p => p.kind === ReferenceKind.MANY_TO_ONE);
620
- let first, second;
621
- if (pks.length === 2) {
622
- [first, second] = pks;
623
- }
624
- else if (fks.length >= 2) {
625
- [first, second] = fks;
626
- }
627
- else {
628
- /* v8 ignore next */
629
- return [];
630
- }
631
- // wrong FK order, first FK needs to point to the owning side
632
- // (note that we can detect this only if the FKs target different types)
633
- if (owner.type === first.type && first.type !== second.type) {
634
- delete meta.properties[first.name];
635
- meta.removeProperty(first.name, false);
636
- meta.addProperty(first);
637
- [first, second] = [second, first];
638
- }
639
- return [first, second];
640
- }
641
- definePivotTableEntity(meta, prop) {
642
- const pivotMeta = prop.pivotEntity
643
- ? this.#metadata.find(prop.pivotEntity)
644
- : this.#metadata.getByClassName(prop.pivotTable, false);
645
- // ensure inverse side exists so we can join it when populating via pivot tables
646
- if (!prop.inversedBy && prop.targetMeta) {
647
- const inverseName = `${meta.className}_${prop.name}__inverse`;
648
- prop.inversedBy = inverseName;
649
- const inverseProp = {
650
- name: inverseName,
651
- kind: ReferenceKind.MANY_TO_MANY,
652
- type: meta.className,
653
- target: meta.class,
654
- targetMeta: meta,
655
- mappedBy: prop.name,
656
- pivotEntity: prop.pivotEntity,
657
- pivotTable: prop.pivotTable,
658
- persist: false,
659
- hydrate: false,
660
- };
661
- this.applyNamingStrategy(prop.targetMeta, inverseProp);
662
- this.initCustomType(prop.targetMeta, inverseProp);
663
- prop.targetMeta.properties[inverseName] = inverseProp;
664
- }
665
- if (pivotMeta) {
666
- prop.pivotEntity = pivotMeta.class;
667
- this.ensureCorrectFKOrderInPivotEntity(pivotMeta, prop);
668
- if (prop.polymorphic && prop.discriminatorValue) {
669
- pivotMeta.polymorphicDiscriminatorMap ??= {};
670
- pivotMeta.polymorphicDiscriminatorMap[prop.discriminatorValue] = meta.class;
671
- // For composite PK entities sharing a polymorphic pivot table,
672
- // we need to add columns for each entity type's PKs
673
- this.addPolymorphicPivotColumns(pivotMeta, meta, prop);
674
- // Add virtual M:1 relation for this polymorphic owner (for join loading)
675
- const ownerRelationName = `${prop.discriminator}_${meta.tableName}`;
676
- if (!pivotMeta.properties[ownerRelationName]) {
677
- pivotMeta.properties[ownerRelationName] = this.definePolymorphicOwnerRelation(prop, ownerRelationName, meta);
678
- }
679
- }
680
- return pivotMeta;
681
- }
682
- let tableName = prop.pivotTable;
683
- let schemaName;
684
- if (prop.pivotTable.includes('.')) {
685
- [schemaName, tableName] = prop.pivotTable.split('.');
686
- }
687
- schemaName ??= meta.schema;
688
- const targetMeta = prop.targetMeta;
689
- const targetType = targetMeta.className;
690
- const pivotMeta2 = new EntityMetadata({
691
- name: prop.pivotTable,
692
- className: prop.pivotTable,
693
- collection: tableName,
694
- schema: schemaName,
695
- pivotTable: true,
415
+ }
416
+ if (!prop.ownColumns || prop.ownColumns.length === 0) {
417
+ prop.ownColumns = prop.joinColumns;
418
+ }
419
+ if (prop.joinColumns.length !== prop.columnTypes.length) {
420
+ prop.columnTypes = prop.joinColumns.flatMap(field => {
421
+ const matched = meta.props.find(p => p.fieldNames?.includes(field));
422
+ /* v8 ignore next */
423
+ if (!matched) {
424
+ throw MetadataError.fromWrongForeignKey(meta, prop, 'columnTypes');
425
+ }
426
+ return matched.columnTypes;
427
+ });
428
+ }
429
+ if (prop.joinColumns.length !== prop.referencedColumnNames.length) {
430
+ throw MetadataError.fromWrongForeignKey(meta, prop, 'referencedColumnNames');
431
+ }
432
+ }
433
+ }
434
+ initFieldName(prop, object = false) {
435
+ if (prop.fieldNames && prop.fieldNames.length > 0) {
436
+ return;
437
+ }
438
+ if (prop.kind === ReferenceKind.SCALAR || prop.kind === ReferenceKind.EMBEDDED) {
439
+ prop.fieldNames = [this.#namingStrategy.propertyToColumnName(prop.name, object)];
440
+ } else if ([ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) && !prop.polymorphic) {
441
+ prop.fieldNames = this.initManyToOneFieldName(prop, prop.name);
442
+ } else if (prop.kind === ReferenceKind.MANY_TO_MANY && prop.owner) {
443
+ prop.fieldNames = this.initManyToManyFieldName(prop, prop.name);
444
+ }
445
+ }
446
+ initManyToOneFieldName(prop, name, tableName) {
447
+ const meta2 = prop.targetMeta;
448
+ const ret = [];
449
+ for (const primaryKey of meta2.primaryKeys) {
450
+ this.initFieldName(meta2.properties[primaryKey]);
451
+ for (const fieldName of meta2.properties[primaryKey].fieldNames) {
452
+ ret.push(this.#namingStrategy.joinKeyColumnName(name, fieldName, meta2.compositePK, tableName));
453
+ }
454
+ }
455
+ return ret;
456
+ }
457
+ initManyToManyFieldName(prop, name) {
458
+ const meta2 = prop.targetMeta;
459
+ return meta2.primaryKeys.map(() => this.#namingStrategy.propertyToColumnName(name));
460
+ }
461
+ initManyToManyFields(meta, prop) {
462
+ const meta2 = prop.targetMeta;
463
+ Utils.defaultValue(prop, 'fixedOrder', !!prop.fixedOrderColumn);
464
+ const pivotMeta = this.#metadata.find(prop.pivotEntity);
465
+ const props = Object.values(pivotMeta?.properties ?? {});
466
+ const pks = props.filter(p => p.primary);
467
+ const fks = props.filter(p => p.kind === ReferenceKind.MANY_TO_ONE);
468
+ if (pivotMeta) {
469
+ pivotMeta.pivotTable = true;
470
+ prop.pivotTable = pivotMeta.tableName;
471
+ if (pks.length === 1) {
472
+ prop.fixedOrder = true;
473
+ prop.fixedOrderColumn = pks[0].name;
474
+ }
475
+ }
476
+ if (pivotMeta && (pks.length === 2 || fks.length >= 2)) {
477
+ const owner = prop.mappedBy ? meta2.properties[prop.mappedBy] : prop;
478
+ const [first, second] = this.ensureCorrectFKOrderInPivotEntity(pivotMeta, owner);
479
+ prop.joinColumns ??= first.fieldNames;
480
+ prop.inverseJoinColumns ??= second.fieldNames;
481
+ }
482
+ if (!prop.pivotTable && prop.owner && this.#platform.usesPivotTable()) {
483
+ prop.pivotTable = this.#namingStrategy.joinTableName(meta.className, meta2.tableName, prop.name, meta.tableName);
484
+ }
485
+ if (prop.mappedBy) {
486
+ const prop2 = meta2.properties[prop.mappedBy];
487
+ this.initManyToManyFields(meta2, prop2);
488
+ prop.pivotTable = prop2.pivotTable;
489
+ prop.pivotEntity = prop2.pivotEntity;
490
+ prop.fixedOrder = prop2.fixedOrder;
491
+ prop.fixedOrderColumn = prop2.fixedOrderColumn;
492
+ prop.joinColumns = prop2.inverseJoinColumns;
493
+ prop.inverseJoinColumns = prop2.joinColumns;
494
+ prop.polymorphic = prop2.polymorphic;
495
+ prop.discriminator = prop2.discriminator;
496
+ prop.discriminatorColumn = prop2.discriminatorColumn;
497
+ prop.discriminatorValue = prop2.discriminatorValue;
498
+ }
499
+ prop.referencedColumnNames ??= Utils.flatten(
500
+ meta.primaryKeys.map(primaryKey => meta.properties[primaryKey].fieldNames),
501
+ );
502
+ // For polymorphic M:N, use discriminator base name for FK column (e.g., taggable_id instead of post_id)
503
+ if (prop.polymorphic && prop.discriminator) {
504
+ prop.joinColumns ??= prop.referencedColumnNames.map(referencedColumnName =>
505
+ this.#namingStrategy.joinKeyColumnName(
506
+ prop.discriminator,
507
+ referencedColumnName,
508
+ prop.referencedColumnNames.length > 1,
509
+ ),
510
+ );
511
+ } else {
512
+ const ownerTableName = this.isExplicitTableName(meta.root) ? meta.root.tableName : undefined;
513
+ prop.joinColumns ??= prop.referencedColumnNames.map(referencedColumnName =>
514
+ this.#namingStrategy.joinKeyColumnName(
515
+ meta.root.className,
516
+ referencedColumnName,
517
+ meta.compositePK,
518
+ ownerTableName,
519
+ ),
520
+ );
521
+ }
522
+ const inverseTableName = this.isExplicitTableName(meta2.root) ? meta2.root.tableName : undefined;
523
+ prop.inverseJoinColumns ??= this.initManyToOneFieldName(prop, meta2.root.className, inverseTableName);
524
+ }
525
+ isExplicitTableName(meta) {
526
+ return meta.tableName !== this.#namingStrategy.classToTableName(meta.className);
527
+ }
528
+ initManyToOneFields(prop) {
529
+ if (prop.polymorphic && prop.polymorphTargets) {
530
+ const fieldNames1 = prop.targetMeta.getPrimaryProps().flatMap(pk => pk.fieldNames);
531
+ const idColumns = fieldNames1.map(fieldName =>
532
+ this.#namingStrategy.joinKeyColumnName(prop.discriminator, fieldName, fieldNames1.length > 1),
533
+ );
534
+ prop.fieldNames ??= [prop.discriminatorColumn, ...idColumns];
535
+ prop.joinColumns ??= idColumns;
536
+ prop.referencedColumnNames ??= fieldNames1;
537
+ prop.referencedTableName ??= prop.targetMeta.tableName;
538
+ return;
539
+ }
540
+ const meta2 = prop.targetMeta;
541
+ let fieldNames;
542
+ // If targetKey is specified, use that property's field names instead of PKs
543
+ if (prop.targetKey) {
544
+ const targetProp = meta2.properties[prop.targetKey];
545
+ fieldNames = targetProp.fieldNames;
546
+ } else {
547
+ fieldNames = Utils.flatten(meta2.primaryKeys.map(primaryKey => meta2.properties[primaryKey].fieldNames));
548
+ }
549
+ Utils.defaultValue(prop, 'referencedTableName', meta2.tableName);
550
+ if (!prop.joinColumns) {
551
+ prop.joinColumns = fieldNames.map(fieldName =>
552
+ this.#namingStrategy.joinKeyColumnName(prop.name, fieldName, fieldNames.length > 1),
553
+ );
554
+ }
555
+ if (!prop.referencedColumnNames) {
556
+ prop.referencedColumnNames = fieldNames;
557
+ }
558
+ // Relations to composite PK targets need cascade update by default,
559
+ // since composite PKs are more likely to have mutable components
560
+ if (meta2.compositePK) {
561
+ prop.updateRule ??= 'cascade';
562
+ }
563
+ // Nullable relations default to 'set null' on delete - when the referenced
564
+ // entity is deleted, set the FK to null rather than failing
565
+ if (prop.nullable) {
566
+ prop.deleteRule ??= 'set null';
567
+ }
568
+ }
569
+ initOneToManyFields(prop) {
570
+ const meta2 = prop.targetMeta;
571
+ if (!prop.joinColumns) {
572
+ prop.joinColumns = [this.#namingStrategy.joinColumnName(prop.name)];
573
+ }
574
+ if (!prop.referencedColumnNames) {
575
+ meta2.getPrimaryProps().forEach(pk => this.applyNamingStrategy(meta2, pk));
576
+ prop.referencedColumnNames = Utils.flatten(meta2.getPrimaryProps().map(pk => pk.fieldNames));
577
+ }
578
+ }
579
+ processEntity(meta) {
580
+ const pks = Object.values(meta.properties).filter(prop => prop.primary);
581
+ meta.primaryKeys = pks.map(prop => prop.name);
582
+ meta.compositePK = pks.length > 1;
583
+ // FK used as PK, we need to cascade - applies to both single FK-as-PK
584
+ // and composite PKs where all PKs are FKs (e.g., pivot-like entities)
585
+ const fkPks = pks.filter(pk => pk.kind !== ReferenceKind.SCALAR);
586
+ if (fkPks.length > 0 && fkPks.length === pks.length) {
587
+ for (const pk of fkPks) {
588
+ pk.deleteRule ??= 'cascade';
589
+ pk.updateRule ??= 'cascade';
590
+ }
591
+ }
592
+ meta.forceConstructor ??= this.shouldForceConstructorUsage(meta);
593
+ this.#validator.validateEntityDefinition(this.#metadata, meta.class, this.#config.get('discovery'));
594
+ for (const prop of Object.values(meta.properties)) {
595
+ this.initNullability(prop);
596
+ this.applyNamingStrategy(meta, prop);
597
+ this.initDefaultValue(prop);
598
+ this.inferTypeFromDefault(prop);
599
+ this.initVersionProperty(meta, prop);
600
+ this.initCustomType(meta, prop);
601
+ this.initColumnType(prop);
602
+ this.initRelation(prop);
603
+ }
604
+ this.initOwnColumns(meta);
605
+ meta.simplePK =
606
+ pks.length === 1 && pks[0].kind === ReferenceKind.SCALAR && !pks[0].customType && pks[0].runtimeType !== 'Date';
607
+ meta.serializedPrimaryKey ??= meta.props.find(prop => prop.serializedPrimaryKey)?.name;
608
+ if (meta.serializedPrimaryKey && meta.serializedPrimaryKey !== meta.primaryKeys[0]) {
609
+ meta.properties[meta.serializedPrimaryKey].persist ??= false;
610
+ }
611
+ if (this.#platform.usesPivotTable()) {
612
+ return Object.values(meta.properties)
613
+ .filter(prop => prop.kind === ReferenceKind.MANY_TO_MANY && prop.owner && prop.pivotTable)
614
+ .map(prop => {
615
+ const pivotMeta = this.definePivotTableEntity(meta, prop);
616
+ prop.pivotEntity = pivotMeta.class;
617
+ if (prop.inversedBy) {
618
+ prop.targetMeta.properties[prop.inversedBy].pivotEntity = pivotMeta.class;
619
+ }
620
+ return pivotMeta;
696
621
  });
697
- prop.pivotEntity = pivotMeta2.class;
698
- if (prop.fixedOrder) {
699
- const primaryProp = this.defineFixedOrderProperty(prop, targetMeta);
700
- pivotMeta2.properties[primaryProp.name] = primaryProp;
701
- }
702
- else {
703
- pivotMeta2.compositePK = true;
704
- }
705
- // handle self-referenced m:n with same default field names
706
- if (meta.className === targetType &&
707
- prop.joinColumns.every((joinColumn, idx) => joinColumn === prop.inverseJoinColumns[idx])) {
708
- // use tableName only when explicitly provided by user, otherwise use className for backwards compatibility
709
- const baseName = this.isExplicitTableName(meta) ? meta.tableName : meta.className;
710
- prop.joinColumns = prop.referencedColumnNames.map(name => this.#namingStrategy.joinKeyColumnName(baseName + '_1', name, meta.compositePK));
711
- prop.inverseJoinColumns = prop.referencedColumnNames.map(name => this.#namingStrategy.joinKeyColumnName(baseName + '_2', name, meta.compositePK));
712
- if (prop.inversedBy) {
713
- const prop2 = targetMeta.properties[prop.inversedBy];
714
- prop2.inverseJoinColumns = prop.joinColumns;
715
- prop2.joinColumns = prop.inverseJoinColumns;
716
- }
717
- // propagate updated joinColumns to all child entities that inherit this property (STI)
718
- for (const childMeta of this.#discovered.filter(m => m.root === meta && m !== meta)) {
719
- const childProp = childMeta.properties[prop.name];
720
- if (childProp) {
721
- childProp.joinColumns = prop.joinColumns;
722
- childProp.inverseJoinColumns = prop.inverseJoinColumns;
723
- }
724
- }
725
- }
726
- // For polymorphic M:N, create discriminator column and polymorphic FK
727
- if (prop.polymorphic && prop.discriminatorColumn) {
728
- this.definePolymorphicPivotProperties(pivotMeta2, meta, prop, targetMeta);
729
- }
730
- else {
731
- pivotMeta2.properties[meta.name + '_owner'] = this.definePivotProperty(prop, meta.name + '_owner', meta.class, targetType + '_inverse', true, meta.className === targetType);
732
- pivotMeta2.properties[targetType + '_inverse'] = this.definePivotProperty(prop, targetType + '_inverse', targetMeta.class, meta.name + '_owner', false, meta.className === targetType);
733
- }
734
- return this.#metadata.set(pivotMeta2.class, EntitySchema.fromMetadata(pivotMeta2).init().meta);
735
- }
736
- /**
737
- * Create a scalar property for a pivot table column.
738
- */
739
- createPivotScalarProperty(name, columnTypes, fieldNames = [name], options = {}) {
740
- return {
741
- name,
742
- fieldNames,
743
- columnTypes,
744
- type: options.type ?? 'number',
745
- kind: ReferenceKind.SCALAR,
746
- primary: options.primary ?? false,
747
- nullable: options.nullable ?? true,
748
- ...(options.persist !== undefined && { persist: options.persist }),
749
- };
750
- }
751
- /**
752
- * Get column types for an entity's primary keys, initializing them if needed.
753
- */
754
- getPrimaryKeyColumnTypes(meta) {
755
- const columnTypes = [];
756
- for (const pk of meta.primaryKeys) {
757
- const pkProp = meta.properties[pk];
758
- this.initCustomType(meta, pkProp);
759
- this.initColumnType(pkProp);
760
- columnTypes.push(...pkProp.columnTypes);
761
- }
762
- return columnTypes;
763
- }
764
- /**
765
- * Add missing FK columns for a polymorphic entity to an existing pivot table.
766
- */
767
- addPolymorphicPivotColumns(pivotMeta, meta, prop) {
768
- const existingFieldNames = new Set(Object.values(pivotMeta.properties).flatMap(p => p.fieldNames ?? []));
769
- const columnTypes = this.getPrimaryKeyColumnTypes(meta);
770
- for (let i = 0; i < prop.joinColumns.length; i++) {
771
- const joinColumn = prop.joinColumns[i];
772
- if (!existingFieldNames.has(joinColumn)) {
773
- pivotMeta.properties[joinColumn] = this.createPivotScalarProperty(joinColumn, [columnTypes[i]]);
774
- }
775
- }
776
622
  }
777
- /**
778
- * Define properties for a polymorphic pivot table.
779
- */
780
- definePolymorphicPivotProperties(pivotMeta, meta, prop, targetMeta) {
781
- const discriminatorColumn = prop.discriminatorColumn;
782
- const isCompositePK = meta.compositePK;
783
- // For composite PK polymorphic M:N, we need fixedOrder (auto-increment PK)
784
- if (isCompositePK && !prop.fixedOrder) {
785
- prop.fixedOrder = true;
786
- const primaryProp = this.defineFixedOrderProperty(prop, targetMeta);
787
- pivotMeta.properties[primaryProp.name] = primaryProp;
788
- pivotMeta.compositePK = false;
789
- }
790
- const discriminatorProp = this.createPivotScalarProperty(discriminatorColumn, [this.#platform.getVarcharTypeDeclarationSQL(prop)], [discriminatorColumn], { type: 'string', primary: !isCompositePK, nullable: false });
791
- this.initFieldName(discriminatorProp);
792
- pivotMeta.properties[discriminatorColumn] = discriminatorProp;
793
- const columnTypes = this.getPrimaryKeyColumnTypes(meta);
794
- if (isCompositePK) {
795
- // Create separate properties for each PK column (nullable for other entity types)
796
- for (let i = 0; i < prop.joinColumns.length; i++) {
797
- pivotMeta.properties[prop.joinColumns[i]] = this.createPivotScalarProperty(prop.joinColumns[i], [
798
- columnTypes[i],
799
- ]);
800
- }
801
- // Virtual property combining all columns (for compatibility)
802
- pivotMeta.properties[prop.discriminator] = this.createPivotScalarProperty(prop.discriminator, columnTypes, [...prop.joinColumns], { type: meta.className, persist: false });
803
- }
804
- else {
805
- pivotMeta.properties[prop.discriminator] = this.createPivotScalarProperty(prop.discriminator, columnTypes, [...prop.joinColumns], { type: meta.className, primary: true, nullable: false });
806
- }
807
- pivotMeta.properties[targetMeta.className + '_inverse'] = this.definePivotProperty(prop, targetMeta.className + '_inverse', targetMeta.class, prop.discriminator, false, false);
808
- // Create virtual M:1 relation to the polymorphic owner for single-query join loading
809
- const ownerRelationName = `${prop.discriminator}_${meta.tableName}`;
810
- pivotMeta.properties[ownerRelationName] = this.definePolymorphicOwnerRelation(prop, ownerRelationName, meta);
623
+ return [];
624
+ }
625
+ findReferencingProperties(meta, metadata) {
626
+ for (const meta2 of metadata) {
627
+ for (const prop2 of meta2.relations) {
628
+ if (prop2.kind !== ReferenceKind.SCALAR && prop2.type === meta.className) {
629
+ meta.referencingProperties.push({ meta: meta2, prop: prop2 });
630
+ }
631
+ }
632
+ }
633
+ }
634
+ initFactoryField(meta, prop) {
635
+ ['mappedBy', 'inversedBy', 'pivotEntity'].forEach(type => {
636
+ const value = prop[type];
637
+ if (value instanceof Function) {
638
+ const meta2 = prop.targetMeta ?? this.#metadata.get(prop.target);
639
+ prop[type] = value(meta2.properties)?.name;
640
+ if (type === 'pivotEntity' && value) {
641
+ prop[type] = value(meta2.properties);
642
+ }
643
+ if (prop[type] == null) {
644
+ throw MetadataError.fromWrongReference(meta, prop, type);
645
+ }
646
+ }
647
+ });
648
+ }
649
+ ensureCorrectFKOrderInPivotEntity(meta, owner) {
650
+ const pks = Object.values(meta.properties).filter(p => p.primary);
651
+ const fks = Object.values(meta.properties).filter(p => p.kind === ReferenceKind.MANY_TO_ONE);
652
+ let first, second;
653
+ if (pks.length === 2) {
654
+ [first, second] = pks;
655
+ } else if (fks.length >= 2) {
656
+ [first, second] = fks;
657
+ } else {
658
+ /* v8 ignore next */
659
+ return [];
660
+ }
661
+ // wrong FK order, first FK needs to point to the owning side
662
+ // (note that we can detect this only if the FKs target different types)
663
+ if (owner.type === first.type && first.type !== second.type) {
664
+ delete meta.properties[first.name];
665
+ meta.removeProperty(first.name, false);
666
+ meta.addProperty(first);
667
+ [first, second] = [second, first];
668
+ }
669
+ return [first, second];
670
+ }
671
+ definePivotTableEntity(meta, prop) {
672
+ const pivotMeta = prop.pivotEntity
673
+ ? this.#metadata.find(prop.pivotEntity)
674
+ : this.#metadata.getByClassName(prop.pivotTable, false);
675
+ // ensure inverse side exists so we can join it when populating via pivot tables
676
+ if (!prop.inversedBy && prop.targetMeta) {
677
+ const inverseName = `${meta.className}_${prop.name}__inverse`;
678
+ prop.inversedBy = inverseName;
679
+ const inverseProp = {
680
+ name: inverseName,
681
+ kind: ReferenceKind.MANY_TO_MANY,
682
+ type: meta.className,
683
+ target: meta.class,
684
+ targetMeta: meta,
685
+ mappedBy: prop.name,
686
+ pivotEntity: prop.pivotEntity,
687
+ pivotTable: prop.pivotTable,
688
+ persist: false,
689
+ hydrate: false,
690
+ };
691
+ this.applyNamingStrategy(prop.targetMeta, inverseProp);
692
+ this.initCustomType(prop.targetMeta, inverseProp);
693
+ prop.targetMeta.properties[inverseName] = inverseProp;
694
+ }
695
+ if (pivotMeta) {
696
+ prop.pivotEntity = pivotMeta.class;
697
+ this.ensureCorrectFKOrderInPivotEntity(pivotMeta, prop);
698
+ if (prop.polymorphic && prop.discriminatorValue) {
811
699
  pivotMeta.polymorphicDiscriminatorMap ??= {};
812
700
  pivotMeta.polymorphicDiscriminatorMap[prop.discriminatorValue] = meta.class;
813
- }
814
- /**
815
- * Create a virtual M:1 relation from pivot to a polymorphic owner entity.
816
- * This enables single-query join loading for inverse-side polymorphic M:N.
817
- */
818
- definePolymorphicOwnerRelation(prop, name, targetMeta) {
819
- const ret = {
820
- name,
821
- type: targetMeta.className,
822
- target: targetMeta.class,
823
- kind: ReferenceKind.MANY_TO_ONE,
824
- nullable: true,
825
- owner: true,
826
- primary: false,
827
- createForeignKeyConstraint: false,
828
- persist: false,
829
- index: false,
830
- };
831
- ret.targetMeta = targetMeta;
832
- ret.fieldNames = ret.joinColumns = ret.ownColumns = [...prop.joinColumns];
833
- ret.referencedColumnNames = [];
834
- ret.inverseJoinColumns = [];
835
- for (const primaryKey of targetMeta.primaryKeys) {
836
- const pkProp = targetMeta.properties[primaryKey];
837
- ret.referencedColumnNames.push(...pkProp.fieldNames);
838
- ret.inverseJoinColumns.push(...pkProp.fieldNames);
839
- ret.length = pkProp.length;
840
- ret.precision = pkProp.precision;
841
- ret.scale = pkProp.scale;
842
- }
843
- const schema = targetMeta.schema ?? this.#config.get('schema') ?? this.#platform.getDefaultSchemaName();
844
- ret.referencedTableName = schema && schema !== '*' ? schema + '.' + targetMeta.tableName : targetMeta.tableName;
845
- this.initColumnType(ret);
846
- this.initRelation(ret);
847
- return ret;
848
- }
849
- defineFixedOrderProperty(prop, targetMeta) {
850
- const pk = prop.fixedOrderColumn || this.#namingStrategy.referenceColumnName();
851
- const primaryProp = {
852
- name: pk,
853
- type: 'number',
854
- runtimeType: 'number',
855
- kind: ReferenceKind.SCALAR,
856
- primary: true,
857
- autoincrement: true,
858
- unsigned: this.#platform.supportsUnsigned(),
859
- };
860
- this.initFieldName(primaryProp);
861
- this.initColumnType(primaryProp);
862
- prop.fixedOrderColumn = pk;
863
- if (prop.inversedBy) {
864
- const prop2 = targetMeta.properties[prop.inversedBy];
865
- prop2.fixedOrder = true;
866
- prop2.fixedOrderColumn = pk;
867
- }
868
- return primaryProp;
869
- }
870
- definePivotProperty(prop, name, type, inverse, owner, selfReferencing) {
871
- const ret = {
872
- name,
873
- type: Utils.className(type),
874
- target: type,
875
- kind: ReferenceKind.MANY_TO_ONE,
876
- cascade: [Cascade.ALL],
877
- fixedOrder: prop.fixedOrder,
878
- fixedOrderColumn: prop.fixedOrderColumn,
879
- index: this.#platform.indexForeignKeys(),
880
- primary: !prop.fixedOrder,
881
- autoincrement: false,
882
- updateRule: prop.updateRule,
883
- deleteRule: prop.deleteRule,
884
- createForeignKeyConstraint: prop.createForeignKeyConstraint,
885
- };
886
- const defaultRule = selfReferencing && !this.#platform.supportsMultipleCascadePaths() ? 'no action' : 'cascade';
887
- ret.updateRule ??= defaultRule;
888
- ret.deleteRule ??= defaultRule;
889
- const meta = this.#metadata.get(type);
890
- ret.targetMeta = meta;
891
- ret.joinColumns = [];
892
- ret.inverseJoinColumns = [];
893
- const schema = meta.schema ?? this.#config.get('schema') ?? this.#platform.getDefaultSchemaName();
894
- ret.referencedTableName = schema && schema !== '*' ? schema + '.' + meta.tableName : meta.tableName;
895
- if (owner) {
896
- ret.owner = true;
897
- ret.inversedBy = inverse;
898
- ret.referencedColumnNames = prop.referencedColumnNames;
899
- ret.fieldNames = ret.joinColumns = prop.joinColumns;
900
- ret.inverseJoinColumns = prop.referencedColumnNames;
901
- meta.primaryKeys.forEach(primaryKey => {
902
- const prop2 = meta.properties[primaryKey];
903
- ret.length = prop2.length;
904
- ret.precision = prop2.precision;
905
- ret.scale = prop2.scale;
906
- });
907
- }
908
- else {
909
- ret.owner = false;
910
- ret.mappedBy = inverse;
911
- ret.fieldNames = ret.joinColumns = prop.inverseJoinColumns;
912
- ret.referencedColumnNames = [];
913
- ret.inverseJoinColumns = [];
914
- meta.primaryKeys.forEach(primaryKey => {
915
- const prop2 = meta.properties[primaryKey];
916
- ret.referencedColumnNames.push(...prop2.fieldNames);
917
- ret.inverseJoinColumns.push(...prop2.fieldNames);
918
- ret.length = prop2.length;
919
- ret.precision = prop2.precision;
920
- ret.scale = prop2.scale;
921
- });
922
- }
923
- this.initColumnType(ret);
924
- this.initRelation(ret);
925
- return ret;
926
- }
927
- autoWireBidirectionalProperties(meta) {
928
- Object.values(meta.properties)
929
- .filter(prop => prop.kind !== ReferenceKind.SCALAR && !prop.owner && prop.mappedBy)
930
- .forEach(prop => {
931
- const meta2 = prop.targetMeta;
932
- const prop2 = meta2.properties[prop.mappedBy];
933
- if (prop2 && !prop2.inversedBy) {
934
- prop2.inversedBy = prop.name;
935
- }
936
- });
937
- }
938
- defineBaseEntityProperties(meta) {
939
- const base = meta.extends && this.#metadata.get(meta.extends);
940
- if (!base || base === meta) {
941
- // make sure we do not fall into infinite loop
942
- return 0;
943
- }
944
- let order = this.defineBaseEntityProperties(base);
945
- const ownProps = Object.values(meta.properties);
946
- const old = ownProps.map(x => x.name);
947
- meta.properties = {};
948
- Object.values(base.properties).forEach(prop => {
949
- if (!prop.inherited) {
950
- meta.properties[prop.name] = prop;
951
- }
952
- });
953
- ownProps.forEach(prop => (meta.properties[prop.name] = prop));
954
- meta.filters = { ...base.filters, ...meta.filters };
955
- if (!meta.discriminatorValue) {
956
- Object.values(base.properties)
957
- .filter(prop => !old.includes(prop.name))
958
- .forEach(prop => {
959
- meta.properties[prop.name] = { ...prop };
960
- meta.propertyOrder.set(prop.name, (order += 0.01));
961
- });
962
- }
963
- meta.indexes = Utils.unique([...base.indexes, ...meta.indexes]);
964
- meta.uniques = Utils.unique([...base.uniques, ...meta.uniques]);
965
- meta.checks = Utils.unique([...base.checks, ...meta.checks]);
966
- const pks = Object.values(meta.properties)
967
- .filter(p => p.primary)
968
- .map(p => p.name);
969
- if (pks.length > 0 && meta.primaryKeys.length === 0) {
970
- meta.primaryKeys = pks;
971
- }
972
- Utils.keys(base.hooks).forEach(type => {
973
- meta.hooks[type] = Utils.unique([...base.hooks[type], ...(meta.hooks[type] || [])]);
701
+ // For composite PK entities sharing a polymorphic pivot table,
702
+ // we need to add columns for each entity type's PKs
703
+ this.addPolymorphicPivotColumns(pivotMeta, meta, prop);
704
+ // Add virtual M:1 relation for this polymorphic owner (for join loading)
705
+ const ownerRelationName = `${prop.discriminator}_${meta.tableName}`;
706
+ if (!pivotMeta.properties[ownerRelationName]) {
707
+ pivotMeta.properties[ownerRelationName] = this.definePolymorphicOwnerRelation(prop, ownerRelationName, meta);
708
+ }
709
+ }
710
+ return pivotMeta;
711
+ }
712
+ let tableName = prop.pivotTable;
713
+ let schemaName;
714
+ if (prop.pivotTable.includes('.')) {
715
+ [schemaName, tableName] = prop.pivotTable.split('.');
716
+ }
717
+ schemaName ??= meta.schema;
718
+ const targetMeta = prop.targetMeta;
719
+ const targetType = targetMeta.className;
720
+ const pivotMeta2 = new EntityMetadata({
721
+ name: prop.pivotTable,
722
+ className: prop.pivotTable,
723
+ collection: tableName,
724
+ schema: schemaName,
725
+ pivotTable: true,
726
+ });
727
+ prop.pivotEntity = pivotMeta2.class;
728
+ if (prop.fixedOrder) {
729
+ const primaryProp = this.defineFixedOrderProperty(prop, targetMeta);
730
+ pivotMeta2.properties[primaryProp.name] = primaryProp;
731
+ } else {
732
+ pivotMeta2.compositePK = true;
733
+ }
734
+ // handle self-referenced m:n with same default field names
735
+ if (
736
+ meta.className === targetType &&
737
+ prop.joinColumns.every((joinColumn, idx) => joinColumn === prop.inverseJoinColumns[idx])
738
+ ) {
739
+ // use tableName only when explicitly provided by user, otherwise use className for backwards compatibility
740
+ const baseName = this.isExplicitTableName(meta) ? meta.tableName : meta.className;
741
+ prop.joinColumns = prop.referencedColumnNames.map(name =>
742
+ this.#namingStrategy.joinKeyColumnName(baseName + '_1', name, meta.compositePK),
743
+ );
744
+ prop.inverseJoinColumns = prop.referencedColumnNames.map(name =>
745
+ this.#namingStrategy.joinKeyColumnName(baseName + '_2', name, meta.compositePK),
746
+ );
747
+ if (prop.inversedBy) {
748
+ const prop2 = targetMeta.properties[prop.inversedBy];
749
+ prop2.inverseJoinColumns = prop.joinColumns;
750
+ prop2.joinColumns = prop.inverseJoinColumns;
751
+ }
752
+ // propagate updated joinColumns to all child entities that inherit this property (STI)
753
+ for (const childMeta of this.#discovered.filter(m => m.root === meta && m !== meta)) {
754
+ const childProp = childMeta.properties[prop.name];
755
+ if (childProp) {
756
+ childProp.joinColumns = prop.joinColumns;
757
+ childProp.inverseJoinColumns = prop.inverseJoinColumns;
758
+ }
759
+ }
760
+ }
761
+ // For polymorphic M:N, create discriminator column and polymorphic FK
762
+ if (prop.polymorphic && prop.discriminatorColumn) {
763
+ this.definePolymorphicPivotProperties(pivotMeta2, meta, prop, targetMeta);
764
+ } else {
765
+ pivotMeta2.properties[meta.name + '_owner'] = this.definePivotProperty(
766
+ prop,
767
+ meta.name + '_owner',
768
+ meta.class,
769
+ targetType + '_inverse',
770
+ true,
771
+ meta.className === targetType,
772
+ );
773
+ pivotMeta2.properties[targetType + '_inverse'] = this.definePivotProperty(
774
+ prop,
775
+ targetType + '_inverse',
776
+ targetMeta.class,
777
+ meta.name + '_owner',
778
+ false,
779
+ meta.className === targetType,
780
+ );
781
+ }
782
+ return this.#metadata.set(pivotMeta2.class, EntitySchema.fromMetadata(pivotMeta2).init().meta);
783
+ }
784
+ /**
785
+ * Create a scalar property for a pivot table column.
786
+ */
787
+ createPivotScalarProperty(name, columnTypes, fieldNames = [name], options = {}) {
788
+ return {
789
+ name,
790
+ fieldNames,
791
+ columnTypes,
792
+ type: options.type ?? 'number',
793
+ kind: ReferenceKind.SCALAR,
794
+ primary: options.primary ?? false,
795
+ nullable: options.nullable ?? true,
796
+ ...(options.persist !== undefined && { persist: options.persist }),
797
+ };
798
+ }
799
+ /**
800
+ * Get column types for an entity's primary keys, initializing them if needed.
801
+ */
802
+ getPrimaryKeyColumnTypes(meta) {
803
+ const columnTypes = [];
804
+ for (const pk of meta.primaryKeys) {
805
+ const pkProp = meta.properties[pk];
806
+ this.initCustomType(meta, pkProp);
807
+ this.initColumnType(pkProp);
808
+ columnTypes.push(...pkProp.columnTypes);
809
+ }
810
+ return columnTypes;
811
+ }
812
+ /**
813
+ * Add missing FK columns for a polymorphic entity to an existing pivot table.
814
+ */
815
+ addPolymorphicPivotColumns(pivotMeta, meta, prop) {
816
+ const existingFieldNames = new Set(Object.values(pivotMeta.properties).flatMap(p => p.fieldNames ?? []));
817
+ const columnTypes = this.getPrimaryKeyColumnTypes(meta);
818
+ for (let i = 0; i < prop.joinColumns.length; i++) {
819
+ const joinColumn = prop.joinColumns[i];
820
+ if (!existingFieldNames.has(joinColumn)) {
821
+ pivotMeta.properties[joinColumn] = this.createPivotScalarProperty(joinColumn, [columnTypes[i]]);
822
+ }
823
+ }
824
+ }
825
+ /**
826
+ * Define properties for a polymorphic pivot table.
827
+ */
828
+ definePolymorphicPivotProperties(pivotMeta, meta, prop, targetMeta) {
829
+ const discriminatorColumn = prop.discriminatorColumn;
830
+ const isCompositePK = meta.compositePK;
831
+ // For composite PK polymorphic M:N, we need fixedOrder (auto-increment PK)
832
+ if (isCompositePK && !prop.fixedOrder) {
833
+ prop.fixedOrder = true;
834
+ const primaryProp = this.defineFixedOrderProperty(prop, targetMeta);
835
+ pivotMeta.properties[primaryProp.name] = primaryProp;
836
+ pivotMeta.compositePK = false;
837
+ }
838
+ const discriminatorProp = this.createPivotScalarProperty(
839
+ discriminatorColumn,
840
+ [this.#platform.getVarcharTypeDeclarationSQL(prop)],
841
+ [discriminatorColumn],
842
+ { type: 'string', primary: !isCompositePK, nullable: false },
843
+ );
844
+ this.initFieldName(discriminatorProp);
845
+ pivotMeta.properties[discriminatorColumn] = discriminatorProp;
846
+ const columnTypes = this.getPrimaryKeyColumnTypes(meta);
847
+ if (isCompositePK) {
848
+ // Create separate properties for each PK column (nullable for other entity types)
849
+ for (let i = 0; i < prop.joinColumns.length; i++) {
850
+ pivotMeta.properties[prop.joinColumns[i]] = this.createPivotScalarProperty(prop.joinColumns[i], [
851
+ columnTypes[i],
852
+ ]);
853
+ }
854
+ // Virtual property combining all columns (for compatibility)
855
+ pivotMeta.properties[prop.discriminator] = this.createPivotScalarProperty(
856
+ prop.discriminator,
857
+ columnTypes,
858
+ [...prop.joinColumns],
859
+ { type: meta.className, persist: false },
860
+ );
861
+ } else {
862
+ pivotMeta.properties[prop.discriminator] = this.createPivotScalarProperty(
863
+ prop.discriminator,
864
+ columnTypes,
865
+ [...prop.joinColumns],
866
+ { type: meta.className, primary: true, nullable: false },
867
+ );
868
+ }
869
+ pivotMeta.properties[targetMeta.className + '_inverse'] = this.definePivotProperty(
870
+ prop,
871
+ targetMeta.className + '_inverse',
872
+ targetMeta.class,
873
+ prop.discriminator,
874
+ false,
875
+ false,
876
+ );
877
+ // Create virtual M:1 relation to the polymorphic owner for single-query join loading
878
+ const ownerRelationName = `${prop.discriminator}_${meta.tableName}`;
879
+ pivotMeta.properties[ownerRelationName] = this.definePolymorphicOwnerRelation(prop, ownerRelationName, meta);
880
+ pivotMeta.polymorphicDiscriminatorMap ??= {};
881
+ pivotMeta.polymorphicDiscriminatorMap[prop.discriminatorValue] = meta.class;
882
+ }
883
+ /**
884
+ * Create a virtual M:1 relation from pivot to a polymorphic owner entity.
885
+ * This enables single-query join loading for inverse-side polymorphic M:N.
886
+ */
887
+ definePolymorphicOwnerRelation(prop, name, targetMeta) {
888
+ const ret = {
889
+ name,
890
+ type: targetMeta.className,
891
+ target: targetMeta.class,
892
+ kind: ReferenceKind.MANY_TO_ONE,
893
+ nullable: true,
894
+ owner: true,
895
+ primary: false,
896
+ createForeignKeyConstraint: false,
897
+ persist: false,
898
+ index: false,
899
+ };
900
+ ret.targetMeta = targetMeta;
901
+ ret.fieldNames = ret.joinColumns = ret.ownColumns = [...prop.joinColumns];
902
+ ret.referencedColumnNames = [];
903
+ ret.inverseJoinColumns = [];
904
+ for (const primaryKey of targetMeta.primaryKeys) {
905
+ const pkProp = targetMeta.properties[primaryKey];
906
+ ret.referencedColumnNames.push(...pkProp.fieldNames);
907
+ ret.inverseJoinColumns.push(...pkProp.fieldNames);
908
+ ret.length = pkProp.length;
909
+ ret.precision = pkProp.precision;
910
+ ret.scale = pkProp.scale;
911
+ }
912
+ const schema = targetMeta.schema ?? this.#config.get('schema') ?? this.#platform.getDefaultSchemaName();
913
+ ret.referencedTableName = schema && schema !== '*' ? schema + '.' + targetMeta.tableName : targetMeta.tableName;
914
+ this.initColumnType(ret);
915
+ this.initRelation(ret);
916
+ return ret;
917
+ }
918
+ defineFixedOrderProperty(prop, targetMeta) {
919
+ const pk = prop.fixedOrderColumn || this.#namingStrategy.referenceColumnName();
920
+ const primaryProp = {
921
+ name: pk,
922
+ type: 'number',
923
+ runtimeType: 'number',
924
+ kind: ReferenceKind.SCALAR,
925
+ primary: true,
926
+ autoincrement: true,
927
+ unsigned: this.#platform.supportsUnsigned(),
928
+ };
929
+ this.initFieldName(primaryProp);
930
+ this.initColumnType(primaryProp);
931
+ prop.fixedOrderColumn = pk;
932
+ if (prop.inversedBy) {
933
+ const prop2 = targetMeta.properties[prop.inversedBy];
934
+ prop2.fixedOrder = true;
935
+ prop2.fixedOrderColumn = pk;
936
+ }
937
+ return primaryProp;
938
+ }
939
+ definePivotProperty(prop, name, type, inverse, owner, selfReferencing) {
940
+ const ret = {
941
+ name,
942
+ type: Utils.className(type),
943
+ target: type,
944
+ kind: ReferenceKind.MANY_TO_ONE,
945
+ cascade: [Cascade.ALL],
946
+ fixedOrder: prop.fixedOrder,
947
+ fixedOrderColumn: prop.fixedOrderColumn,
948
+ index: this.#platform.indexForeignKeys(),
949
+ primary: !prop.fixedOrder,
950
+ autoincrement: false,
951
+ updateRule: prop.updateRule,
952
+ deleteRule: prop.deleteRule,
953
+ createForeignKeyConstraint: prop.createForeignKeyConstraint,
954
+ };
955
+ const defaultRule = selfReferencing && !this.#platform.supportsMultipleCascadePaths() ? 'no action' : 'cascade';
956
+ ret.updateRule ??= defaultRule;
957
+ ret.deleteRule ??= defaultRule;
958
+ const meta = this.#metadata.get(type);
959
+ ret.targetMeta = meta;
960
+ ret.joinColumns = [];
961
+ ret.inverseJoinColumns = [];
962
+ const schema = meta.schema ?? this.#config.get('schema') ?? this.#platform.getDefaultSchemaName();
963
+ ret.referencedTableName = schema && schema !== '*' ? schema + '.' + meta.tableName : meta.tableName;
964
+ if (owner) {
965
+ ret.owner = true;
966
+ ret.inversedBy = inverse;
967
+ ret.referencedColumnNames = prop.referencedColumnNames;
968
+ ret.fieldNames = ret.joinColumns = prop.joinColumns;
969
+ ret.inverseJoinColumns = prop.referencedColumnNames;
970
+ meta.primaryKeys.forEach(primaryKey => {
971
+ const prop2 = meta.properties[primaryKey];
972
+ ret.length = prop2.length;
973
+ ret.precision = prop2.precision;
974
+ ret.scale = prop2.scale;
975
+ });
976
+ } else {
977
+ ret.owner = false;
978
+ ret.mappedBy = inverse;
979
+ ret.fieldNames = ret.joinColumns = prop.inverseJoinColumns;
980
+ ret.referencedColumnNames = [];
981
+ ret.inverseJoinColumns = [];
982
+ meta.primaryKeys.forEach(primaryKey => {
983
+ const prop2 = meta.properties[primaryKey];
984
+ ret.referencedColumnNames.push(...prop2.fieldNames);
985
+ ret.inverseJoinColumns.push(...prop2.fieldNames);
986
+ ret.length = prop2.length;
987
+ ret.precision = prop2.precision;
988
+ ret.scale = prop2.scale;
989
+ });
990
+ }
991
+ this.initColumnType(ret);
992
+ this.initRelation(ret);
993
+ return ret;
994
+ }
995
+ autoWireBidirectionalProperties(meta) {
996
+ Object.values(meta.properties)
997
+ .filter(prop => prop.kind !== ReferenceKind.SCALAR && !prop.owner && prop.mappedBy)
998
+ .forEach(prop => {
999
+ const meta2 = prop.targetMeta;
1000
+ const prop2 = meta2.properties[prop.mappedBy];
1001
+ if (prop2 && !prop2.inversedBy) {
1002
+ prop2.inversedBy = prop.name;
1003
+ }
1004
+ });
1005
+ }
1006
+ defineBaseEntityProperties(meta) {
1007
+ const base = meta.extends && this.#metadata.get(meta.extends);
1008
+ if (!base || base === meta) {
1009
+ // make sure we do not fall into infinite loop
1010
+ return 0;
1011
+ }
1012
+ let order = this.defineBaseEntityProperties(base);
1013
+ const ownProps = Object.values(meta.properties);
1014
+ const old = ownProps.map(x => x.name);
1015
+ meta.properties = {};
1016
+ Object.values(base.properties).forEach(prop => {
1017
+ if (!prop.inherited) {
1018
+ meta.properties[prop.name] = prop;
1019
+ }
1020
+ });
1021
+ ownProps.forEach(prop => (meta.properties[prop.name] = prop));
1022
+ meta.filters = { ...base.filters, ...meta.filters };
1023
+ if (!meta.discriminatorValue) {
1024
+ Object.values(base.properties)
1025
+ .filter(prop => !old.includes(prop.name))
1026
+ .forEach(prop => {
1027
+ meta.properties[prop.name] = { ...prop };
1028
+ meta.propertyOrder.set(prop.name, (order += 0.01));
974
1029
  });
975
- if ((meta.constructorParams?.length ?? 0) === 0 && (base.constructorParams?.length ?? 0) > 0) {
976
- meta.constructorParams = [...base.constructorParams];
977
- }
978
- return order;
979
- }
980
- initPolyEmbeddables(embeddedProp, discovered, visited = new Set()) {
981
- if (embeddedProp.kind !== ReferenceKind.EMBEDDED || visited.has(embeddedProp)) {
982
- return;
983
- }
984
- visited.add(embeddedProp);
985
- const types = embeddedProp.type.split(/ ?\| ?/);
986
- let embeddable = this.#discovered.find(m => m.name === embeddedProp.type);
987
- const polymorphs = this.#discovered.filter(m => types.includes(m.name));
988
- // create virtual polymorphic entity
989
- if (!embeddable && polymorphs.length > 0) {
990
- const properties = {};
991
- let discriminatorColumn;
992
- const inlineProperties = (meta) => {
993
- Object.values(meta.properties).forEach(prop => {
994
- // defaults on db level would mess up with change tracking
995
- delete prop.default;
996
- if (properties[prop.name] && properties[prop.name].type !== prop.type) {
997
- properties[prop.name].type = `${properties[prop.name].type} | ${prop.type}`;
998
- properties[prop.name].runtimeType = 'any';
999
- properties[prop.name].stiMerged = true;
1000
- return properties[prop.name];
1001
- }
1002
- // Deep copy to prevent mutating the original entity's property —
1003
- // both from the merge path above (GH #6522/#6523) and from
1004
- // downstream code that mutates nested arrays like fieldNames.
1005
- return (properties[prop.name] = Utils.copy(prop));
1006
- });
1007
- };
1008
- const processExtensions = (meta) => {
1009
- const parent = this.#discovered.find(m => {
1010
- return meta.extends && Utils.className(meta.extends) === m.className;
1011
- });
1012
- if (!parent) {
1013
- return;
1014
- }
1015
- discriminatorColumn ??= parent.discriminatorColumn;
1016
- inlineProperties(parent);
1017
- processExtensions(parent);
1018
- };
1019
- polymorphs.forEach(meta => {
1020
- inlineProperties(meta);
1021
- processExtensions(meta);
1022
- });
1023
- const name = polymorphs
1024
- .map(t => t.className)
1025
- .sort()
1026
- .join(' | ');
1027
- embeddable = new EntityMetadata({
1028
- name,
1029
- className: name,
1030
- embeddable: true,
1031
- abstract: true,
1032
- properties,
1033
- polymorphs,
1034
- discriminatorColumn,
1035
- });
1036
- embeddable.sync();
1037
- discovered.push(embeddable);
1038
- polymorphs.forEach(meta => (meta.root = embeddable));
1039
- }
1040
- }
1041
- initPolymorphicRelation(meta, prop, discovered) {
1042
- if (!prop.discriminator && !prop.discriminatorColumn && !prop.discriminatorMap && !Array.isArray(prop.target)) {
1043
- return;
1044
- }
1045
- prop.polymorphic = true;
1046
- prop.discriminator ??= prop.name;
1047
- prop.discriminatorColumn ??= this.#namingStrategy.discriminatorColumnName(prop.discriminator);
1048
- prop.createForeignKeyConstraint = false;
1049
- const isToOne = [ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind);
1050
- if (isToOne) {
1051
- const types = prop.type.split(/ ?\| ?/);
1052
- prop.polymorphTargets = discovered.filter(m => types.includes(m.className) && !m.embeddable);
1053
- prop.targetMeta = prop.polymorphTargets[0];
1054
- prop.referencedPKs = prop.targetMeta?.primaryKeys;
1055
- }
1056
- if (prop.discriminatorMap) {
1057
- const normalizedMap = {};
1058
- for (const [key, value] of Object.entries(prop.discriminatorMap)) {
1059
- const targetMeta = this.#metadata.getByClassName(value, false);
1060
- if (!targetMeta) {
1061
- throw MetadataError.fromUnknownEntity(value, `${meta.className}.${prop.name} discriminatorMap`);
1062
- }
1063
- normalizedMap[key] = targetMeta.class;
1064
- if (targetMeta.class === meta.class) {
1065
- prop.discriminatorValue = key;
1066
- }
1067
- }
1068
- prop.discriminatorMap = normalizedMap;
1069
- }
1070
- else if (isToOne) {
1071
- prop.discriminatorMap = {};
1072
- const tableNameToTarget = new Map();
1073
- for (const target of prop.polymorphTargets) {
1074
- const existing = tableNameToTarget.get(target.tableName);
1075
- if (existing) {
1076
- throw MetadataError.incompatiblePolymorphicTargets(meta, prop, existing, target, `both use table '${target.tableName}'. Use separate properties instead of a single polymorphic relation.`);
1077
- }
1078
- tableNameToTarget.set(target.tableName, target);
1079
- prop.discriminatorMap[target.tableName] = target.class;
1080
- }
1081
- }
1082
- else {
1083
- prop.discriminatorValue ??= meta.tableName;
1084
- if (!prop.discriminatorMap) {
1085
- prop.discriminatorMap = { [prop.discriminatorValue]: meta.class };
1086
- }
1087
- }
1088
- }
1089
- initEmbeddables(meta, embeddedProp, visited = new Set()) {
1090
- if (embeddedProp.kind !== ReferenceKind.EMBEDDED || visited.has(embeddedProp)) {
1091
- return;
1092
- }
1093
- visited.add(embeddedProp);
1094
- const embeddable = this.#discovered.find(m => m.name === embeddedProp.type);
1095
- if (!embeddable) {
1096
- throw MetadataError.fromUnknownEntity(embeddedProp.type, `${meta.className}.${embeddedProp.name}`);
1097
- }
1098
- embeddedProp.embeddable = embeddable.class;
1099
- embeddedProp.embeddedProps = {};
1100
- let order = meta.propertyOrder.get(embeddedProp.name);
1101
- const getRootProperty = (prop) => prop.embedded ? getRootProperty(meta.properties[prop.embedded[0]]) : prop;
1102
- const isParentObject = (prop) => {
1103
- if (prop.object || prop.array) {
1104
- return true;
1105
- }
1106
- return prop.embedded ? isParentObject(meta.properties[prop.embedded[0]]) : false;
1107
- };
1108
- const isParentArray = (prop) => {
1109
- if (prop.array) {
1110
- return true;
1111
- }
1112
- return prop.embedded ? isParentArray(meta.properties[prop.embedded[0]]) : false;
1113
- };
1114
- const rootProperty = getRootProperty(embeddedProp);
1115
- const parentProperty = meta.properties[embeddedProp.embedded?.[0] ?? ''];
1116
- const object = isParentObject(embeddedProp);
1117
- const array = isParentArray(embeddedProp);
1118
- this.initFieldName(embeddedProp, rootProperty !== embeddedProp && object);
1119
- // the prefix of the parent cannot be a boolean; it already passed here
1120
- const prefix = this.getPrefix(embeddedProp, parentProperty);
1121
- const glue = object ? '~' : '_';
1122
- for (const prop of Object.values(embeddable.properties)) {
1123
- const name = (embeddedProp.embeddedPath?.join(glue) ?? embeddedProp.fieldNames[0] + glue) + prop.name;
1124
- meta.properties[name] = Utils.copy(prop);
1125
- meta.properties[name].name = name;
1126
- meta.properties[name].embedded = [embeddedProp.name, prop.name];
1127
- meta.propertyOrder.set(name, (order += 0.01));
1128
- embeddedProp.embeddedProps[prop.name] = meta.properties[name];
1129
- meta.properties[name].persist ??= embeddedProp.persist;
1130
- const refInArray = array && [ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) && prop.owner;
1131
- if (embeddedProp.nullable || refInArray) {
1132
- meta.properties[name].nullable = true;
1133
- }
1134
- if (meta.properties[name].fieldNames) {
1135
- meta.properties[name].fieldNames[0] = prefix + meta.properties[name].fieldNames[0];
1136
- }
1137
- else {
1138
- const name2 = meta.properties[name].name;
1139
- meta.properties[name].name = prefix + prop.name;
1140
- this.initFieldName(meta.properties[name]);
1141
- meta.properties[name].name = name2;
1142
- }
1143
- if (object) {
1144
- embeddedProp.object = true;
1145
- let path = [];
1146
- let tmp = embeddedProp;
1147
- while (tmp.embedded && tmp.object) {
1148
- path.unshift(tmp.embedded[1]);
1149
- tmp = meta.properties[tmp.embedded[0]];
1150
- }
1151
- if (tmp === rootProperty) {
1152
- path.unshift(rootProperty.fieldNames[0]);
1153
- }
1154
- else if (embeddedProp.embeddedPath) {
1155
- path = [...embeddedProp.embeddedPath];
1156
- }
1157
- else {
1158
- path = [embeddedProp.fieldNames[0]];
1159
- }
1160
- this.initFieldName(prop, true);
1161
- this.initRelation(prop);
1162
- path.push(prop.fieldNames[0]);
1163
- meta.properties[name].fieldNames = prop.fieldNames;
1164
- meta.properties[name].embeddedPath = path;
1165
- const targetProp = prop.targetMeta?.getPrimaryProp() ?? prop;
1166
- const fieldName = raw(this.#platform.getSearchJsonPropertySQL(path.join('->'), targetProp.runtimeType ?? targetProp.type, true));
1167
- meta.properties[name].fieldNameRaw = fieldName.sql; // for querying in SQL drivers
1168
- meta.properties[name].persist = false; // only virtual as we store the whole object
1169
- meta.properties[name].userDefined = false; // mark this as a generated/internal property, so we can distinguish from user-defined non-persist properties
1170
- meta.properties[name].object = true;
1171
- this.initCustomType(meta, meta.properties[name], false, true);
1172
- }
1173
- this.initEmbeddables(meta, meta.properties[name], visited);
1174
- }
1175
- for (const index of embeddable.indexes) {
1176
- meta.indexes.push({
1177
- ...index,
1178
- properties: Utils.asArray(index.properties).map(p => {
1179
- return embeddedProp.embeddedProps[p].name;
1180
- }),
1181
- });
1182
- }
1183
- for (const unique of embeddable.uniques) {
1184
- meta.uniques.push({
1185
- ...unique,
1186
- properties: Utils.asArray(unique.properties).map(p => {
1187
- return embeddedProp.embeddedProps[p].name;
1188
- }),
1189
- });
1190
- }
1191
1030
  }
1192
- initSingleTableInheritance(meta, metadata) {
1193
- if (meta.root !== meta && !meta.__processed) {
1194
- meta.root = metadata.find(m => m.class === meta.root.class);
1195
- meta.root.__processed = true;
1196
- }
1197
- else {
1198
- delete meta.root.__processed;
1199
- }
1200
- if (!meta.root.discriminatorColumn) {
1201
- return;
1202
- }
1203
- meta.root.inheritanceType = 'sti';
1204
- if (meta.root.discriminatorMap) {
1205
- const map = meta.root.discriminatorMap;
1206
- Object.keys(map)
1207
- .filter(key => typeof map[key] === 'string')
1208
- .forEach(key => (map[key] = this.#metadata.getByClassName(map[key]).class));
1209
- }
1210
- else {
1211
- meta.root.discriminatorMap = {};
1212
- const children = metadata
1213
- .filter(m => m.root.class === meta.root.class && !m.abstract)
1214
- .sort((a, b) => a.className.localeCompare(b.className));
1215
- for (const m of children) {
1216
- const name = m.discriminatorValue ?? this.#namingStrategy.classToTableName(m.className);
1217
- meta.root.discriminatorMap[name] = m.class;
1218
- }
1219
- }
1220
- meta.discriminatorValue = QueryHelper.findDiscriminatorValue(meta.root.discriminatorMap, meta.class);
1221
- if (!meta.root.properties[meta.root.discriminatorColumn]) {
1222
- this.createDiscriminatorProperty(meta.root);
1223
- }
1224
- Utils.defaultValue(meta.root.properties[meta.root.discriminatorColumn], 'items', Object.keys(meta.root.discriminatorMap));
1225
- Utils.defaultValue(meta.root.properties[meta.root.discriminatorColumn], 'index', true);
1226
- if (meta.root === meta) {
1227
- return;
1228
- }
1031
+ meta.indexes = Utils.unique([...base.indexes, ...meta.indexes]);
1032
+ meta.uniques = Utils.unique([...base.uniques, ...meta.uniques]);
1033
+ meta.checks = Utils.unique([...base.checks, ...meta.checks]);
1034
+ const pks = Object.values(meta.properties)
1035
+ .filter(p => p.primary)
1036
+ .map(p => p.name);
1037
+ if (pks.length > 0 && meta.primaryKeys.length === 0) {
1038
+ meta.primaryKeys = pks;
1039
+ }
1040
+ Utils.keys(base.hooks).forEach(type => {
1041
+ meta.hooks[type] = Utils.unique([...base.hooks[type], ...(meta.hooks[type] || [])]);
1042
+ });
1043
+ if ((meta.constructorParams?.length ?? 0) === 0 && (base.constructorParams?.length ?? 0) > 0) {
1044
+ meta.constructorParams = [...base.constructorParams];
1045
+ }
1046
+ return order;
1047
+ }
1048
+ initPolyEmbeddables(embeddedProp, discovered, visited = new Set()) {
1049
+ if (embeddedProp.kind !== ReferenceKind.EMBEDDED || visited.has(embeddedProp)) {
1050
+ return;
1051
+ }
1052
+ visited.add(embeddedProp);
1053
+ const types = embeddedProp.type.split(/ ?\| ?/);
1054
+ let embeddable = this.#discovered.find(m => m.name === embeddedProp.type);
1055
+ const polymorphs = this.#discovered.filter(m => types.includes(m.name));
1056
+ // create virtual polymorphic entity
1057
+ if (!embeddable && polymorphs.length > 0) {
1058
+ const properties = {};
1059
+ let discriminatorColumn;
1060
+ const inlineProperties = meta => {
1229
1061
  Object.values(meta.properties).forEach(prop => {
1230
- const newProp = { ...prop };
1231
- const rootProp = meta.root.properties[prop.name];
1232
- // stiMerged is set during inlineProperties when a property was merged
1233
- // from multiple polymorphic variants with different types. The flag is
1234
- // cleared implicitly when the first child claims the root property via
1235
- // addProperty below, so subsequent children correctly trigger renaming.
1236
- const typesMatch = rootProp?.type === prop.type || rootProp?.stiMerged === true;
1237
- if (rootProp &&
1238
- (!typesMatch ||
1239
- (rootProp.fieldNames && prop.fieldNames && !compareArrays(rootProp.fieldNames, prop.fieldNames)))) {
1240
- const name = newProp.name;
1241
- this.initFieldName(newProp, newProp.object);
1242
- newProp.renamedFrom = name;
1243
- newProp.name = `${name}_${meta._id}`;
1244
- meta.root.addProperty(newProp);
1245
- this.initFieldName(prop, prop.object);
1246
- // Track all field variants and map discriminator values to field names
1247
- if (!rootProp.stiFieldNames) {
1248
- this.initFieldName(rootProp, rootProp.object);
1249
- rootProp.stiFieldNames = [...rootProp.fieldNames];
1250
- rootProp.stiFieldNameMap = {};
1251
- // Find which discriminator owns the original fieldNames
1252
- for (const [discValue, childClass] of Object.entries(meta.root.discriminatorMap)) {
1253
- const childMeta = this.#metadata.find(childClass);
1254
- if (childMeta?.properties[prop.name]?.fieldNames &&
1255
- compareArrays(childMeta.properties[prop.name].fieldNames, rootProp.fieldNames)) {
1256
- rootProp.stiFieldNameMap[discValue] = rootProp.fieldNames[0];
1257
- break;
1258
- }
1259
- }
1260
- }
1261
- rootProp.stiFieldNameMap[meta.discriminatorValue] = prop.fieldNames[0];
1262
- rootProp.stiFieldNames.push(...prop.fieldNames);
1263
- newProp.nullable = true;
1264
- newProp.name = name;
1265
- newProp.hydrate = false;
1266
- newProp.inherited = true;
1267
- return;
1268
- }
1269
- if (prop.enum && prop.items && rootProp?.items) {
1270
- newProp.items = Utils.unique([...rootProp.items, ...prop.items]);
1271
- }
1272
- newProp.nullable = true;
1273
- newProp.inherited = !rootProp;
1274
- meta.root.addProperty(newProp);
1062
+ // defaults on db level would mess up with change tracking
1063
+ delete prop.default;
1064
+ if (properties[prop.name] && properties[prop.name].type !== prop.type) {
1065
+ properties[prop.name].type = `${properties[prop.name].type} | ${prop.type}`;
1066
+ properties[prop.name].runtimeType = 'any';
1067
+ properties[prop.name].stiMerged = true;
1068
+ return properties[prop.name];
1069
+ }
1070
+ // Deep copy to prevent mutating the original entity's property —
1071
+ // both from the merge path above (GH #6522/#6523) and from
1072
+ // downstream code that mutates nested arrays like fieldNames.
1073
+ return (properties[prop.name] = Utils.copy(prop));
1275
1074
  });
1276
- meta.tableName = meta.root.tableName;
1277
- meta.root.indexes = Utils.unique([...meta.root.indexes, ...meta.indexes]);
1278
- meta.root.uniques = Utils.unique([...meta.root.uniques, ...meta.uniques]);
1279
- meta.root.checks = Utils.unique([...meta.root.checks, ...meta.checks]);
1280
- }
1281
- /**
1282
- * First pass of TPT initialization: sets up hierarchy relationships
1283
- * (inheritanceType, tptParent, tptChildren) before properties have fieldNames.
1284
- */
1285
- initTPTRelationships(meta, metadata) {
1286
- if (meta.root !== meta) {
1287
- meta.root = metadata.find(m => m.class === meta.root.class);
1288
- }
1289
- const inheritance = meta.inheritance;
1290
- if (inheritance === 'tpt' && meta.root === meta) {
1291
- meta.inheritanceType = 'tpt';
1292
- meta.tptChildren = [];
1293
- }
1294
- if (meta.root.inheritanceType !== 'tpt') {
1295
- return;
1296
- }
1297
- const parent = this.getTPTParent(meta, metadata);
1298
- if (parent) {
1299
- meta.tptParent = parent;
1300
- meta.inheritanceType = 'tpt';
1301
- parent.tptChildren ??= [];
1302
- if (!parent.tptChildren.includes(meta)) {
1303
- parent.tptChildren.push(meta);
1304
- }
1305
- }
1306
- }
1307
- /**
1308
- * Second pass of TPT initialization: re-resolves metadata references after fieldNames
1309
- * are set, syncs to registry metadata, and sets up discriminators.
1310
- */
1311
- finalizeTPTInheritance(meta, metadata) {
1312
- if (meta.inheritanceType !== 'tpt') {
1313
- return;
1314
- }
1315
- if (meta.tptParent) {
1316
- meta.tptParent = metadata.find(m => m.class === meta.tptParent.class) ?? meta.tptParent;
1317
- }
1318
- if (meta.tptChildren) {
1319
- meta.tptChildren = meta.tptChildren.map(child => metadata.find(m => m.class === child.class) ?? child);
1320
- }
1321
- const registryMeta = this.#metadata.get(meta.class);
1322
- if (registryMeta && registryMeta !== meta) {
1323
- registryMeta.inheritanceType = meta.inheritanceType;
1324
- registryMeta.tptParent = meta.tptParent ? this.#metadata.get(meta.tptParent.class) : undefined;
1325
- registryMeta.tptChildren = meta.tptChildren?.map(child => this.#metadata.get(child.class));
1326
- }
1327
- this.initTPTDiscriminator(meta, metadata);
1328
- }
1329
- /**
1330
- * Initialize TPT discriminator map and virtual discriminator property.
1331
- * Unlike STI where the discriminator is a persisted column, TPT discriminator is computed
1332
- * at query time using CASE WHEN expressions based on which child table has data.
1333
- */
1334
- initTPTDiscriminator(meta, metadata) {
1335
- const allDescendants = this.collectAllTPTDescendants(meta, metadata);
1336
- allDescendants.sort((a, b) => this.getTPTDepth(b) - this.getTPTDepth(a));
1337
- meta.allTPTDescendants = allDescendants;
1338
- if (meta.root !== meta) {
1339
- return;
1340
- }
1341
- meta.root.discriminatorMap = {};
1342
- for (const m of allDescendants) {
1343
- const name = this.#namingStrategy.classToTableName(m.className);
1344
- meta.root.discriminatorMap[name] = m.class;
1345
- m.discriminatorValue = name;
1346
- }
1347
- if (!meta.abstract) {
1348
- const name = this.#namingStrategy.classToTableName(meta.className);
1349
- meta.root.discriminatorMap[name] = meta.class;
1350
- meta.discriminatorValue = name;
1351
- }
1352
- // Virtual discriminator property - computed at query time via CASE WHEN, not persisted
1353
- const discriminatorColumn = '__tpt_type';
1354
- if (!meta.root.properties[discriminatorColumn]) {
1355
- meta.root.addProperty({
1356
- name: discriminatorColumn,
1357
- type: 'string',
1358
- kind: ReferenceKind.SCALAR,
1359
- persist: false,
1360
- userDefined: false,
1361
- hidden: true,
1362
- });
1363
- }
1364
- meta.root.tptDiscriminatorColumn = discriminatorColumn;
1365
- }
1366
- /**
1367
- * Recursively collect all TPT descendants (children, grandchildren, etc.)
1368
- */
1369
- collectAllTPTDescendants(meta, metadata) {
1370
- const descendants = [];
1371
- const collect = (parent) => {
1372
- for (const child of parent.tptChildren ?? []) {
1373
- const resolved = metadata.find(m => m.class === child.class) ?? child;
1374
- if (!resolved.abstract) {
1375
- descendants.push(resolved);
1376
- }
1377
- collect(resolved);
1378
- }
1379
- };
1380
- collect(meta);
1381
- return descendants;
1382
- }
1383
- /**
1384
- * Computes ownProps for TPT entities - only properties defined in THIS entity,
1385
- * not inherited from parent. Also creates synthetic join properties for parent/child relationships.
1386
- *
1387
- * Called multiple times during discovery as metadata is progressively built.
1388
- * Each pass overwrites earlier results to reflect the final state of properties.
1389
- */
1390
- computeTPTOwnProps(meta) {
1391
- if (meta.inheritanceType !== 'tpt') {
1392
- return;
1393
- }
1394
- const belongsToTable = (prop) => prop.persist !== false || prop.primary;
1395
- // Use meta.properties (object) since meta.props (array) may not be populated yet
1396
- const allProps = Object.values(meta.properties);
1397
- if (!meta.tptParent) {
1398
- meta.ownProps = allProps.filter(belongsToTable);
1399
- return;
1400
- }
1401
- const parentPropNames = new Set(Object.values(meta.tptParent.properties).map(p => p.name));
1402
- meta.ownProps = allProps.filter(prop => !parentPropNames.has(prop.name) && belongsToTable(prop));
1403
- // Create synthetic join properties for the parent-child relationship
1404
- const childFieldNames = meta.getPrimaryProps().flatMap(p => p.fieldNames);
1405
- const parentFieldNames = meta.tptParent.getPrimaryProps().flatMap(p => p.fieldNames);
1406
- meta.tptParentProp = {
1407
- name: '[tpt:parent]',
1408
- kind: ReferenceKind.MANY_TO_ONE,
1409
- targetMeta: meta.tptParent,
1410
- fieldNames: childFieldNames,
1411
- referencedColumnNames: parentFieldNames,
1412
- persist: false,
1413
- };
1414
- meta.tptInverseProp = {
1415
- name: '[tpt:child]',
1416
- kind: ReferenceKind.ONE_TO_ONE,
1417
- owner: true,
1418
- targetMeta: meta,
1419
- fieldNames: parentFieldNames,
1420
- joinColumns: parentFieldNames,
1421
- referencedColumnNames: childFieldNames,
1422
- persist: false,
1423
- };
1424
- }
1425
- /** Returns the depth of a TPT entity in its hierarchy (0 for root). */
1426
- getTPTDepth(meta) {
1427
- let depth = 0;
1428
- let current = meta;
1429
- while (current.tptParent) {
1430
- depth++;
1431
- current = current.tptParent;
1432
- }
1433
- return depth;
1434
- }
1435
- /**
1436
- * Find the direct TPT parent entity for the given entity.
1437
- */
1438
- getTPTParent(meta, metadata) {
1439
- if (meta.root === meta) {
1440
- return undefined;
1441
- }
1442
- return metadata.find(m => {
1443
- const ext = meta.extends;
1444
- if (EntitySchema.is(ext)) {
1445
- return m.class === ext.meta.class || m.className === ext.meta.className;
1446
- }
1447
- return m.class === ext || m.className === Utils.className(ext);
1075
+ };
1076
+ const processExtensions = meta => {
1077
+ const parent = this.#discovered.find(m => {
1078
+ return meta.extends && Utils.className(meta.extends) === m.className;
1448
1079
  });
1449
- }
1450
- createDiscriminatorProperty(meta) {
1451
- meta.addProperty({
1452
- name: meta.discriminatorColumn,
1453
- type: 'string',
1454
- enum: true,
1455
- kind: ReferenceKind.SCALAR,
1456
- userDefined: false,
1457
- });
1458
- }
1459
- initAutoincrement(meta) {
1460
- const pks = meta.getPrimaryProps();
1461
- if (pks.length === 1 && this.#platform.isNumericProperty(pks[0])) {
1462
- /* v8 ignore next */
1463
- pks[0].autoincrement ??= true;
1464
- }
1465
- }
1466
- createSchemaTable(meta) {
1467
- const qualifiedName = meta.schema ? `${meta.schema}.${meta.tableName}` : meta.tableName;
1468
- return {
1469
- name: meta.tableName,
1470
- schema: meta.schema,
1471
- qualifiedName,
1472
- toString: () => qualifiedName,
1473
- };
1474
- }
1475
- initCheckConstraints(meta) {
1476
- const columns = meta.createSchemaColumnMappingObject();
1477
- const table = this.createSchemaTable(meta);
1478
- for (const check of meta.checks) {
1479
- const fieldNames = check.property ? meta.properties[check.property].fieldNames : [];
1480
- check.name ??= this.#namingStrategy.indexName(meta.tableName, fieldNames, 'check');
1481
- if (check.expression instanceof Function) {
1482
- check.expression = check.expression(columns, table);
1483
- }
1484
- }
1485
- if (this.#platform.usesEnumCheckConstraints() && !meta.embeddable) {
1486
- for (const prop of meta.props) {
1487
- if (prop.enum &&
1488
- prop.persist !== false &&
1489
- !prop.nativeEnumName &&
1490
- prop.items?.every(item => typeof item === 'string')) {
1491
- this.initFieldName(prop);
1492
- meta.checks.push({
1493
- name: this.#namingStrategy.indexName(meta.tableName, prop.fieldNames, 'check'),
1494
- property: prop.name,
1495
- expression: `${this.#platform.quoteIdentifier(prop.fieldNames[0])} in ('${prop.items.join("', '")}')`,
1496
- });
1497
- }
1498
- }
1499
- }
1500
- }
1501
- initGeneratedColumn(meta, prop) {
1502
- if (!prop.generated && prop.columnTypes) {
1503
- const match = /(.*) generated always as (.*)/i.exec(prop.columnTypes[0]);
1504
- if (match) {
1505
- prop.columnTypes[0] = match[1];
1506
- prop.generated = match[2];
1507
- return;
1508
- }
1509
- const match2 = /^as (.*)/i.exec(prop.columnTypes[0]?.trim());
1510
- if (match2) {
1511
- prop.generated = match2[1];
1512
- }
1513
- return;
1514
- }
1515
- if (prop.generated instanceof Function) {
1516
- const columns = meta.createSchemaColumnMappingObject();
1517
- prop.generated = prop.generated(columns, this.createSchemaTable(meta));
1518
- }
1519
- }
1520
- getDefaultVersionValue(meta, prop) {
1521
- if (typeof prop.defaultRaw !== 'undefined') {
1522
- return prop.defaultRaw;
1523
- }
1524
- /* v8 ignore next */
1525
- if (prop.default != null) {
1526
- return '' + this.#platform.convertVersionValue(prop.default, prop);
1527
- }
1528
- this.initCustomType(meta, prop, true);
1529
- const type = prop.customType?.runtimeType ?? prop.runtimeType ?? prop.type;
1530
- if (type === 'Date') {
1531
- prop.length ??= this.#platform.getDefaultVersionLength();
1532
- return this.#platform.getCurrentTimestampSQL(prop.length);
1533
- }
1534
- return '1';
1535
- }
1536
- inferDefaultValue(meta, prop) {
1537
- try {
1538
- // try to create two entity instances to detect the value is stable
1539
- const now = Date.now();
1540
- const entity1 = new meta.class();
1541
- const entity2 = new meta.class();
1542
- // we compare the two values by reference, this will discard things like `new Date()` or `Date.now()`
1543
- if (this.#config.get('discovery').inferDefaultValues &&
1544
- prop.default === undefined &&
1545
- entity1[prop.name] != null &&
1546
- entity1[prop.name] === entity2[prop.name] &&
1547
- entity1[prop.name] !== now) {
1548
- prop.default ??= entity1[prop.name];
1549
- }
1550
- // if the default value is null, infer nullability
1551
- if (entity1[prop.name] === null) {
1552
- prop.nullable ??= true;
1553
- }
1554
- // but still use object values for type inference if not explicitly set, e.g. `createdAt = new Date()`
1555
- if (prop.kind === ReferenceKind.SCALAR && prop.type == null && entity1[prop.name] != null) {
1556
- prop.type = prop.runtimeType = Utils.getObjectType(entity1[prop.name]);
1557
- }
1558
- }
1559
- catch {
1560
- // ignore
1561
- }
1562
- }
1563
- initDefaultValue(prop) {
1564
- if (prop.defaultRaw || !('default' in prop)) {
1565
- return;
1566
- }
1567
- let val = prop.default;
1568
- const raw = Raw.getKnownFragment(val);
1569
- if (raw) {
1570
- prop.defaultRaw = this.#platform.formatQuery(raw.sql, raw.params);
1571
- return;
1572
- }
1573
- if (Array.isArray(prop.default) && prop.customType) {
1574
- val = prop.customType.convertToDatabaseValue(prop.default, this.#platform);
1575
- }
1576
- prop.defaultRaw = typeof val === 'string' ? `'${val}'` : '' + val;
1577
- }
1578
- inferTypeFromDefault(prop) {
1579
- if ((prop.defaultRaw == null && prop.default == null) || prop.type !== 'any') {
1580
- return;
1581
- }
1582
- switch (typeof prop.default) {
1583
- case 'string':
1584
- prop.type = prop.runtimeType = 'string';
1585
- break;
1586
- case 'number':
1587
- prop.type = prop.runtimeType = 'number';
1588
- break;
1589
- case 'boolean':
1590
- prop.type = prop.runtimeType = 'boolean';
1591
- break;
1592
- }
1593
- if (prop.defaultRaw?.startsWith('current_timestamp')) {
1594
- prop.type = prop.runtimeType = 'Date';
1595
- }
1596
- }
1597
- initVersionProperty(meta, prop) {
1598
- if (prop.version) {
1599
- this.initDefaultValue(prop);
1600
- meta.versionProperty = prop.name;
1601
- prop.defaultRaw = this.getDefaultVersionValue(meta, prop);
1602
- }
1603
- if (prop.concurrencyCheck && !prop.primary) {
1604
- meta.concurrencyCheckKeys.add(prop.name);
1605
- }
1606
- }
1607
- initCustomType(meta, prop, simple = false, objectEmbeddable = false) {
1608
- // `prop.type` might be actually instance of custom type class
1609
- if (Type.isMappedType(prop.type) && !prop.customType) {
1610
- prop.customType = prop.type;
1611
- prop.type = prop.customType.constructor.name;
1612
- }
1613
- // `prop.type` might also be custom type class (not instance), so `typeof MyType` will give us `function`, not `object`
1614
- if (typeof prop.type === 'function' &&
1615
- Type.isMappedType(prop.type.prototype) &&
1616
- !prop.customType) {
1617
- // if the type is an ORM defined mapped type without `ensureComparable: true`,
1618
- // we use just the type name, to have more performant hydration code
1619
- const brand = Type.getOrmType(prop.type);
1620
- const type = Utils.keys(t).find(type => {
1621
- return (!Type.getType(t[type]).ensureComparable(meta, prop) && (prop.type === t[type] || brand === type));
1622
- });
1623
- if (type) {
1624
- prop.type = type === 'datetime' ? 'Date' : type;
1625
- }
1626
- else {
1627
- prop.customType = new prop.type();
1628
- prop.type = prop.customType.constructor.name;
1629
- }
1630
- }
1631
- if (simple) {
1632
- return;
1633
- }
1634
- if (!prop.customType && ['json', 'jsonb'].includes(prop.type?.toLowerCase())) {
1635
- prop.customType = new t.json();
1636
- }
1637
- if (prop.kind === ReferenceKind.SCALAR &&
1638
- !prop.customType &&
1639
- prop.columnTypes &&
1640
- ['json', 'jsonb'].includes(prop.columnTypes[0])) {
1641
- prop.customType = new t.json();
1642
- }
1643
- if (prop.kind === ReferenceKind.EMBEDDED && !prop.customType && (prop.object || prop.array)) {
1644
- prop.customType = new t.json();
1645
- }
1646
- if (!prop.customType && prop.array && prop.items) {
1647
- prop.customType = new t.enumArray(`${meta.className}.${prop.name}`, prop.items);
1648
- }
1649
- const isArray = prop.type?.toLowerCase() === 'array' || prop.type?.toString().endsWith('[]');
1650
- if (objectEmbeddable && !prop.customType && isArray) {
1651
- prop.customType = new t.json();
1652
- }
1653
- // for number arrays we make sure to convert the items to numbers
1654
- if (!prop.customType && prop.type === 'number[]') {
1655
- prop.customType = new t.array(i => +i);
1656
- }
1657
- // `string[]` can be returned via ts-morph, while reflect metadata will give us just `array`
1658
- if (!prop.customType && isArray) {
1659
- prop.customType = new t.array();
1660
- }
1661
- if (!prop.customType && prop.type?.toLowerCase() === 'buffer') {
1662
- prop.customType = new t.blob();
1663
- }
1664
- if (!prop.customType && prop.type?.toLowerCase() === 'uint8array') {
1665
- prop.customType = new t.uint8array();
1666
- }
1667
- const mappedType = this.getMappedType(prop);
1668
- if (prop.fieldNames?.length === 1 && !prop.customType) {
1669
- [t.bigint, t.double, t.decimal, t.interval, t.date]
1670
- .filter(type => mappedType instanceof type)
1671
- .forEach((type) => (prop.customType = new type()));
1672
- }
1673
- if (prop.customType && !prop.columnTypes) {
1674
- const mappedType = this.getMappedType({
1675
- columnTypes: [prop.customType.getColumnType(prop, this.#platform)],
1676
- });
1677
- if (prop.customType.compareAsType() === 'any' && ![t.json].some(t => prop.customType instanceof t)) {
1678
- prop.runtimeType ??= mappedType.runtimeType;
1679
- }
1680
- else {
1681
- prop.runtimeType ??= prop.customType.runtimeType;
1682
- }
1683
- }
1684
- else if (prop.runtimeType === 'object') {
1685
- prop.runtimeType = mappedType.runtimeType;
1686
- }
1687
- else {
1688
- prop.runtimeType ??= mappedType.runtimeType;
1689
- }
1690
- if (prop.customType) {
1691
- prop.customType.platform = this.#platform;
1692
- prop.customType.meta = meta;
1693
- prop.customType.prop = prop;
1694
- prop.columnTypes ??= [prop.customType.getColumnType(prop, this.#platform)];
1695
- prop.hasConvertToJSValueSQL =
1696
- !!prop.customType.convertToJSValueSQL && prop.customType.convertToJSValueSQL('', this.#platform) !== '';
1697
- prop.hasConvertToDatabaseValueSQL =
1698
- !!prop.customType.convertToDatabaseValueSQL &&
1699
- prop.customType.convertToDatabaseValueSQL('', this.#platform) !== '';
1700
- if (prop.customType instanceof t.bigint &&
1701
- ['string', 'bigint', 'number'].includes(prop.runtimeType.toLowerCase())) {
1702
- prop.customType.mode = prop.runtimeType.toLowerCase();
1703
- }
1704
- }
1705
- if (Type.isMappedType(prop.customType) && prop.kind === ReferenceKind.SCALAR && !isArray) {
1706
- prop.type = prop.customType.name;
1707
- }
1708
- if (!prop.customType &&
1709
- [ReferenceKind.ONE_TO_ONE, ReferenceKind.MANY_TO_ONE].includes(prop.kind) &&
1710
- !prop.polymorphic &&
1711
- prop.targetMeta.compositePK) {
1712
- prop.customTypes = [];
1713
- for (const pk of prop.targetMeta.getPrimaryProps()) {
1714
- if (pk.customType) {
1715
- prop.customTypes.push(pk.customType);
1716
- prop.hasConvertToJSValueSQL ||=
1717
- !!pk.customType.convertToJSValueSQL && pk.customType.convertToJSValueSQL('', this.#platform) !== '';
1718
- /* v8 ignore next */
1719
- prop.hasConvertToDatabaseValueSQL ||=
1720
- !!pk.customType.convertToDatabaseValueSQL &&
1721
- pk.customType.convertToDatabaseValueSQL('', this.#platform) !== '';
1722
- }
1723
- else {
1724
- prop.customTypes.push(undefined);
1725
- }
1726
- }
1727
- }
1728
- if (prop.kind === ReferenceKind.SCALAR && !(mappedType instanceof t.unknown)) {
1729
- if (prop.nativeEnumName &&
1730
- meta.schema !== this.#platform.getDefaultSchemaName() &&
1731
- meta.schema &&
1732
- !prop.nativeEnumName.includes('.')) {
1733
- const suffix = prop.columnTypes?.[0]?.endsWith('[]') ? '[]' : '';
1734
- prop.columnTypes = [`${meta.schema}.${prop.nativeEnumName}${suffix}`];
1735
- }
1736
- else {
1737
- prop.columnTypes ??= [mappedType.getColumnType(prop, this.#platform)];
1738
- }
1739
- // use only custom types provided by user, we don't need to use the ones provided by ORM,
1740
- // with exception for ArrayType and JsonType, those two are handled in
1741
- if (!Object.values(t).some(type => type === mappedType.constructor)) {
1742
- prop.customType ??= mappedType;
1743
- }
1744
- }
1745
- }
1746
- initRelation(prop) {
1747
- if (prop.kind === ReferenceKind.SCALAR || prop.polymorphTargets) {
1748
- return;
1749
- }
1750
- // when the target is a polymorphic embedded entity, `prop.target` is an array of classes, we need to get the metadata by the type name instead
1751
- const meta2 = this.#metadata.find(prop.target) ?? this.#metadata.getByClassName(prop.type);
1752
- // If targetKey is specified, use that property instead of PKs for referencedPKs
1753
- prop.referencedPKs = prop.targetKey ? [prop.targetKey] : meta2.primaryKeys;
1754
- prop.targetMeta = meta2;
1755
- if (meta2.view) {
1756
- prop.createForeignKeyConstraint = false;
1757
- }
1758
- // Auto-generate formula for persist: false relations, but only for single-column FKs
1759
- // Composite FK relations need standard JOIN conditions, not formula-based
1760
- if (!prop.formula &&
1761
- prop.persist === false &&
1762
- [ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) &&
1763
- !prop.embedded) {
1764
- this.initFieldName(prop);
1765
- if (prop.fieldNames?.length === 1) {
1766
- prop.formula = table => `${table}.${this.#platform.quoteIdentifier(prop.fieldNames[0])}`;
1767
- }
1768
- }
1769
- }
1770
- initColumnType(prop) {
1771
- this.initUnsigned(prop);
1772
- // Get the target properties for FK relations - use targetKey property if specified, otherwise PKs
1773
- const targetProps = prop.targetMeta
1774
- ? prop.targetKey
1775
- ? [prop.targetMeta.properties[prop.targetKey]]
1776
- : prop.targetMeta.getPrimaryProps()
1777
- : [];
1778
- targetProps.map(targetProp => {
1779
- prop.length ??= targetProp.length;
1780
- prop.precision ??= targetProp.precision;
1781
- prop.scale ??= targetProp.scale;
1782
- });
1783
- if (prop.kind === ReferenceKind.SCALAR && (prop.type == null || prop.type === 'object') && prop.columnTypes?.[0]) {
1784
- delete prop.type;
1785
- const mappedType = this.getMappedType(prop);
1786
- prop.type = mappedType.compareAsType();
1787
- }
1788
- if (prop.columnTypes || !this.#schemaHelper) {
1789
- return;
1790
- }
1791
- if (prop.kind === ReferenceKind.SCALAR) {
1792
- const mappedType = this.getMappedType(prop);
1793
- const SCALAR_TYPES = ['string', 'number', 'boolean', 'bigint', 'Date', 'Buffer', 'RegExp', 'any', 'unknown'];
1794
- if (mappedType instanceof t.unknown &&
1795
- // it could be a runtime type from reflect-metadata
1796
- !SCALAR_TYPES.includes(prop.type) &&
1797
- // or it might be inferred via ts-morph to some generic type alias
1798
- !/[<>:"';{}]/.exec(prop.type)) {
1799
- const type = prop.length != null && !prop.type.endsWith(`(${prop.length})`) ? `${prop.type}(${prop.length})` : prop.type;
1800
- prop.columnTypes = [type];
1801
- }
1802
- else {
1803
- prop.columnTypes = [mappedType.getColumnType(prop, this.#platform)];
1804
- }
1805
- return;
1806
- }
1807
- /* v8 ignore next */
1808
- if (prop.kind === ReferenceKind.EMBEDDED && prop.object) {
1809
- prop.columnTypes = [this.#platform.getJsonDeclarationSQL()];
1810
- return;
1811
- }
1812
- const targetMeta = prop.targetMeta;
1813
- prop.columnTypes = [];
1814
- // Use targetKey property if specified, otherwise use primary key properties
1815
- const referencedProps = prop.targetKey ? [targetMeta.properties[prop.targetKey]] : targetMeta.getPrimaryProps();
1816
- if (prop.polymorphic && prop.polymorphTargets) {
1817
- prop.columnTypes.push(this.#platform.getVarcharTypeDeclarationSQL(prop));
1818
- }
1819
- for (const referencedProp of referencedProps) {
1820
- this.initCustomType(targetMeta, referencedProp);
1821
- this.initColumnType(referencedProp);
1822
- const mappedType = this.getMappedType(referencedProp);
1823
- let columnTypes = referencedProp.columnTypes;
1824
- if (referencedProp.autoincrement) {
1825
- columnTypes = [mappedType.getColumnType({ ...referencedProp, autoincrement: false }, this.#platform)];
1826
- }
1827
- prop.columnTypes.push(...columnTypes);
1828
- if (!targetMeta.compositePK || prop.targetKey) {
1829
- prop.customType = referencedProp.customType;
1830
- }
1831
- }
1832
- }
1833
- getMappedType(prop) {
1834
- if (prop.customType) {
1835
- return prop.customType;
1836
- }
1837
- /* v8 ignore next */
1838
- let t = prop.columnTypes?.[0] ?? prop.type ?? '';
1839
- if (prop.nativeEnumName) {
1840
- t = 'enum';
1841
- }
1842
- else if (prop.enum) {
1843
- t = prop.items?.every(item => typeof item === 'string') ? 'enum' : 'tinyint';
1844
- }
1845
- if (t === 'Date') {
1846
- t = 'datetime';
1847
- }
1848
- return this.#platform.getMappedType(t);
1849
- }
1850
- getPrefix(prop, parent) {
1851
- const { embeddedPath = [], fieldNames, prefix = true, prefixMode } = prop;
1852
- if (prefix === true) {
1853
- return (embeddedPath.length ? embeddedPath.join('_') : fieldNames[0]) + '_';
1854
- }
1855
- const prefixParent = parent ? this.getPrefix(parent, null) : '';
1856
- if (prefix === false) {
1857
- return prefixParent;
1858
- }
1859
- const mode = prefixMode ?? this.#config.get('embeddables').prefixMode;
1860
- return mode === 'absolute' ? prefix : prefixParent + prefix;
1861
- }
1862
- initUnsigned(prop) {
1863
- if (prop.unsigned != null) {
1864
- return;
1865
- }
1866
- if ([ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind)) {
1867
- prop.unsigned = prop.targetMeta.getPrimaryProps().some(pk => {
1868
- this.initUnsigned(pk);
1869
- return pk.unsigned;
1870
- });
1871
- return;
1872
- }
1873
- prop.unsigned ??=
1874
- (prop.primary || prop.unsigned) && this.#platform.isNumericProperty(prop) && this.#platform.supportsUnsigned();
1875
- }
1876
- initIndexes(meta, prop) {
1877
- const hasIndex = meta.indexes.some(idx => idx.properties?.length === 1 && idx.properties[0] === prop.name);
1878
- if (prop.kind === ReferenceKind.MANY_TO_ONE && this.#platform.indexForeignKeys() && !hasIndex) {
1879
- prop.index ??= true;
1880
- }
1881
- }
1882
- shouldForceConstructorUsage(meta) {
1883
- const forceConstructor = this.#config.get('forceEntityConstructor');
1884
- if (Array.isArray(forceConstructor)) {
1885
- return forceConstructor.some(cls => Utils.className(cls) === meta.className);
1886
- }
1887
- return forceConstructor;
1888
- }
1080
+ if (!parent) {
1081
+ return;
1082
+ }
1083
+ discriminatorColumn ??= parent.discriminatorColumn;
1084
+ inlineProperties(parent);
1085
+ processExtensions(parent);
1086
+ };
1087
+ polymorphs.forEach(meta => {
1088
+ inlineProperties(meta);
1089
+ processExtensions(meta);
1090
+ });
1091
+ const name = polymorphs
1092
+ .map(t => t.className)
1093
+ .sort()
1094
+ .join(' | ');
1095
+ embeddable = new EntityMetadata({
1096
+ name,
1097
+ className: name,
1098
+ embeddable: true,
1099
+ abstract: true,
1100
+ properties,
1101
+ polymorphs,
1102
+ discriminatorColumn,
1103
+ });
1104
+ embeddable.sync();
1105
+ discovered.push(embeddable);
1106
+ polymorphs.forEach(meta => (meta.root = embeddable));
1107
+ }
1108
+ }
1109
+ initPolymorphicRelation(meta, prop, discovered) {
1110
+ if (!prop.discriminator && !prop.discriminatorColumn && !prop.discriminatorMap && !Array.isArray(prop.target)) {
1111
+ return;
1112
+ }
1113
+ prop.polymorphic = true;
1114
+ prop.discriminator ??= prop.name;
1115
+ prop.discriminatorColumn ??= this.#namingStrategy.discriminatorColumnName(prop.discriminator);
1116
+ prop.createForeignKeyConstraint = false;
1117
+ const isToOne = [ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind);
1118
+ if (isToOne) {
1119
+ const types = prop.type.split(/ ?\| ?/);
1120
+ prop.polymorphTargets = discovered.filter(m => types.includes(m.className) && !m.embeddable);
1121
+ prop.targetMeta = prop.polymorphTargets[0];
1122
+ prop.referencedPKs = prop.targetMeta?.primaryKeys;
1123
+ }
1124
+ if (prop.discriminatorMap) {
1125
+ const normalizedMap = {};
1126
+ for (const [key, value] of Object.entries(prop.discriminatorMap)) {
1127
+ const targetMeta = this.#metadata.getByClassName(value, false);
1128
+ if (!targetMeta) {
1129
+ throw MetadataError.fromUnknownEntity(value, `${meta.className}.${prop.name} discriminatorMap`);
1130
+ }
1131
+ normalizedMap[key] = targetMeta.class;
1132
+ if (targetMeta.class === meta.class) {
1133
+ prop.discriminatorValue = key;
1134
+ }
1135
+ }
1136
+ prop.discriminatorMap = normalizedMap;
1137
+ } else if (isToOne) {
1138
+ prop.discriminatorMap = {};
1139
+ const tableNameToTarget = new Map();
1140
+ for (const target of prop.polymorphTargets) {
1141
+ const existing = tableNameToTarget.get(target.tableName);
1142
+ if (existing) {
1143
+ throw MetadataError.incompatiblePolymorphicTargets(
1144
+ meta,
1145
+ prop,
1146
+ existing,
1147
+ target,
1148
+ `both use table '${target.tableName}'. Use separate properties instead of a single polymorphic relation.`,
1149
+ );
1150
+ }
1151
+ tableNameToTarget.set(target.tableName, target);
1152
+ prop.discriminatorMap[target.tableName] = target.class;
1153
+ }
1154
+ } else {
1155
+ prop.discriminatorValue ??= meta.tableName;
1156
+ if (!prop.discriminatorMap) {
1157
+ prop.discriminatorMap = { [prop.discriminatorValue]: meta.class };
1158
+ }
1159
+ }
1160
+ }
1161
+ initEmbeddables(meta, embeddedProp, visited = new Set()) {
1162
+ if (embeddedProp.kind !== ReferenceKind.EMBEDDED || visited.has(embeddedProp)) {
1163
+ return;
1164
+ }
1165
+ visited.add(embeddedProp);
1166
+ const embeddable = this.#discovered.find(m => m.name === embeddedProp.type);
1167
+ if (!embeddable) {
1168
+ throw MetadataError.fromUnknownEntity(embeddedProp.type, `${meta.className}.${embeddedProp.name}`);
1169
+ }
1170
+ embeddedProp.embeddable = embeddable.class;
1171
+ embeddedProp.embeddedProps = {};
1172
+ let order = meta.propertyOrder.get(embeddedProp.name);
1173
+ const getRootProperty = prop => (prop.embedded ? getRootProperty(meta.properties[prop.embedded[0]]) : prop);
1174
+ const isParentObject = prop => {
1175
+ if (prop.object || prop.array) {
1176
+ return true;
1177
+ }
1178
+ return prop.embedded ? isParentObject(meta.properties[prop.embedded[0]]) : false;
1179
+ };
1180
+ const isParentArray = prop => {
1181
+ if (prop.array) {
1182
+ return true;
1183
+ }
1184
+ return prop.embedded ? isParentArray(meta.properties[prop.embedded[0]]) : false;
1185
+ };
1186
+ const rootProperty = getRootProperty(embeddedProp);
1187
+ const parentProperty = meta.properties[embeddedProp.embedded?.[0] ?? ''];
1188
+ const object = isParentObject(embeddedProp);
1189
+ const array = isParentArray(embeddedProp);
1190
+ this.initFieldName(embeddedProp, rootProperty !== embeddedProp && object);
1191
+ // the prefix of the parent cannot be a boolean; it already passed here
1192
+ const prefix = this.getPrefix(embeddedProp, parentProperty);
1193
+ const glue = object ? '~' : '_';
1194
+ for (const prop of Object.values(embeddable.properties)) {
1195
+ const name = (embeddedProp.embeddedPath?.join(glue) ?? embeddedProp.fieldNames[0] + glue) + prop.name;
1196
+ meta.properties[name] = Utils.copy(prop);
1197
+ meta.properties[name].name = name;
1198
+ meta.properties[name].embedded = [embeddedProp.name, prop.name];
1199
+ meta.propertyOrder.set(name, (order += 0.01));
1200
+ embeddedProp.embeddedProps[prop.name] = meta.properties[name];
1201
+ meta.properties[name].persist ??= embeddedProp.persist;
1202
+ const refInArray =
1203
+ array && [ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) && prop.owner;
1204
+ if (embeddedProp.nullable || refInArray) {
1205
+ meta.properties[name].nullable = true;
1206
+ }
1207
+ if (meta.properties[name].fieldNames) {
1208
+ meta.properties[name].fieldNames[0] = prefix + meta.properties[name].fieldNames[0];
1209
+ } else {
1210
+ const name2 = meta.properties[name].name;
1211
+ meta.properties[name].name = prefix + prop.name;
1212
+ this.initFieldName(meta.properties[name]);
1213
+ meta.properties[name].name = name2;
1214
+ }
1215
+ if (object) {
1216
+ embeddedProp.object = true;
1217
+ let path = [];
1218
+ let tmp = embeddedProp;
1219
+ while (tmp.embedded && tmp.object) {
1220
+ path.unshift(tmp.embedded[1]);
1221
+ tmp = meta.properties[tmp.embedded[0]];
1222
+ }
1223
+ if (tmp === rootProperty) {
1224
+ path.unshift(rootProperty.fieldNames[0]);
1225
+ } else if (embeddedProp.embeddedPath) {
1226
+ path = [...embeddedProp.embeddedPath];
1227
+ } else {
1228
+ path = [embeddedProp.fieldNames[0]];
1229
+ }
1230
+ this.initFieldName(prop, true);
1231
+ this.initRelation(prop);
1232
+ path.push(prop.fieldNames[0]);
1233
+ meta.properties[name].fieldNames = prop.fieldNames;
1234
+ meta.properties[name].embeddedPath = path;
1235
+ const targetProp = prop.targetMeta?.getPrimaryProp() ?? prop;
1236
+ const fieldName = raw(
1237
+ this.#platform.getSearchJsonPropertySQL(path.join('->'), targetProp.runtimeType ?? targetProp.type, true),
1238
+ );
1239
+ meta.properties[name].fieldNameRaw = fieldName.sql; // for querying in SQL drivers
1240
+ meta.properties[name].persist = false; // only virtual as we store the whole object
1241
+ meta.properties[name].userDefined = false; // mark this as a generated/internal property, so we can distinguish from user-defined non-persist properties
1242
+ meta.properties[name].object = true;
1243
+ this.initCustomType(meta, meta.properties[name], false, true);
1244
+ }
1245
+ this.initEmbeddables(meta, meta.properties[name], visited);
1246
+ }
1247
+ for (const index of embeddable.indexes) {
1248
+ meta.indexes.push({
1249
+ ...index,
1250
+ properties: Utils.asArray(index.properties).map(p => {
1251
+ return embeddedProp.embeddedProps[p].name;
1252
+ }),
1253
+ });
1254
+ }
1255
+ for (const unique of embeddable.uniques) {
1256
+ meta.uniques.push({
1257
+ ...unique,
1258
+ properties: Utils.asArray(unique.properties).map(p => {
1259
+ return embeddedProp.embeddedProps[p].name;
1260
+ }),
1261
+ });
1262
+ }
1263
+ }
1264
+ initSingleTableInheritance(meta, metadata) {
1265
+ if (meta.root !== meta && !meta.__processed) {
1266
+ meta.root = metadata.find(m => m.class === meta.root.class);
1267
+ meta.root.__processed = true;
1268
+ } else {
1269
+ delete meta.root.__processed;
1270
+ }
1271
+ if (!meta.root.discriminatorColumn) {
1272
+ return;
1273
+ }
1274
+ meta.root.inheritanceType = 'sti';
1275
+ if (meta.root.discriminatorMap) {
1276
+ const map = meta.root.discriminatorMap;
1277
+ Object.keys(map)
1278
+ .filter(key => typeof map[key] === 'string')
1279
+ .forEach(key => (map[key] = this.#metadata.getByClassName(map[key]).class));
1280
+ } else {
1281
+ meta.root.discriminatorMap = {};
1282
+ const children = metadata
1283
+ .filter(m => m.root.class === meta.root.class && !m.abstract)
1284
+ .sort((a, b) => a.className.localeCompare(b.className));
1285
+ for (const m of children) {
1286
+ const name = m.discriminatorValue ?? this.#namingStrategy.classToTableName(m.className);
1287
+ meta.root.discriminatorMap[name] = m.class;
1288
+ }
1289
+ }
1290
+ meta.discriminatorValue = QueryHelper.findDiscriminatorValue(meta.root.discriminatorMap, meta.class);
1291
+ if (!meta.root.properties[meta.root.discriminatorColumn]) {
1292
+ this.createDiscriminatorProperty(meta.root);
1293
+ }
1294
+ Utils.defaultValue(
1295
+ meta.root.properties[meta.root.discriminatorColumn],
1296
+ 'items',
1297
+ Object.keys(meta.root.discriminatorMap),
1298
+ );
1299
+ Utils.defaultValue(meta.root.properties[meta.root.discriminatorColumn], 'index', true);
1300
+ if (meta.root === meta) {
1301
+ return;
1302
+ }
1303
+ Object.values(meta.properties).forEach(prop => {
1304
+ const newProp = { ...prop };
1305
+ const rootProp = meta.root.properties[prop.name];
1306
+ // stiMerged is set during inlineProperties when a property was merged
1307
+ // from multiple polymorphic variants with different types. The flag is
1308
+ // cleared implicitly when the first child claims the root property via
1309
+ // addProperty below, so subsequent children correctly trigger renaming.
1310
+ const typesMatch = rootProp?.type === prop.type || rootProp?.stiMerged === true;
1311
+ if (
1312
+ rootProp &&
1313
+ (!typesMatch ||
1314
+ (rootProp.fieldNames && prop.fieldNames && !compareArrays(rootProp.fieldNames, prop.fieldNames)))
1315
+ ) {
1316
+ const name = newProp.name;
1317
+ this.initFieldName(newProp, newProp.object);
1318
+ newProp.renamedFrom = name;
1319
+ newProp.name = `${name}_${meta._id}`;
1320
+ meta.root.addProperty(newProp);
1321
+ this.initFieldName(prop, prop.object);
1322
+ // Track all field variants and map discriminator values to field names
1323
+ if (!rootProp.stiFieldNames) {
1324
+ this.initFieldName(rootProp, rootProp.object);
1325
+ rootProp.stiFieldNames = [...rootProp.fieldNames];
1326
+ rootProp.stiFieldNameMap = {};
1327
+ // Find which discriminator owns the original fieldNames
1328
+ for (const [discValue, childClass] of Object.entries(meta.root.discriminatorMap)) {
1329
+ const childMeta = this.#metadata.find(childClass);
1330
+ if (
1331
+ childMeta?.properties[prop.name]?.fieldNames &&
1332
+ compareArrays(childMeta.properties[prop.name].fieldNames, rootProp.fieldNames)
1333
+ ) {
1334
+ rootProp.stiFieldNameMap[discValue] = rootProp.fieldNames[0];
1335
+ break;
1336
+ }
1337
+ }
1338
+ }
1339
+ rootProp.stiFieldNameMap[meta.discriminatorValue] = prop.fieldNames[0];
1340
+ rootProp.stiFieldNames.push(...prop.fieldNames);
1341
+ newProp.nullable = true;
1342
+ newProp.name = name;
1343
+ newProp.hydrate = false;
1344
+ newProp.inherited = true;
1345
+ return;
1346
+ }
1347
+ if (prop.enum && prop.items && rootProp?.items) {
1348
+ newProp.items = Utils.unique([...rootProp.items, ...prop.items]);
1349
+ }
1350
+ newProp.nullable = true;
1351
+ newProp.inherited = !rootProp;
1352
+ meta.root.addProperty(newProp);
1353
+ });
1354
+ meta.tableName = meta.root.tableName;
1355
+ meta.root.indexes = Utils.unique([...meta.root.indexes, ...meta.indexes]);
1356
+ meta.root.uniques = Utils.unique([...meta.root.uniques, ...meta.uniques]);
1357
+ meta.root.checks = Utils.unique([...meta.root.checks, ...meta.checks]);
1358
+ }
1359
+ /**
1360
+ * First pass of TPT initialization: sets up hierarchy relationships
1361
+ * (inheritanceType, tptParent, tptChildren) before properties have fieldNames.
1362
+ */
1363
+ initTPTRelationships(meta, metadata) {
1364
+ if (meta.root !== meta) {
1365
+ meta.root = metadata.find(m => m.class === meta.root.class);
1366
+ }
1367
+ const inheritance = meta.inheritance;
1368
+ if (inheritance === 'tpt' && meta.root === meta) {
1369
+ meta.inheritanceType = 'tpt';
1370
+ meta.tptChildren = [];
1371
+ }
1372
+ if (meta.root.inheritanceType !== 'tpt') {
1373
+ return;
1374
+ }
1375
+ const parent = this.getTPTParent(meta, metadata);
1376
+ if (parent) {
1377
+ meta.tptParent = parent;
1378
+ meta.inheritanceType = 'tpt';
1379
+ parent.tptChildren ??= [];
1380
+ if (!parent.tptChildren.includes(meta)) {
1381
+ parent.tptChildren.push(meta);
1382
+ }
1383
+ }
1384
+ }
1385
+ /**
1386
+ * Second pass of TPT initialization: re-resolves metadata references after fieldNames
1387
+ * are set, syncs to registry metadata, and sets up discriminators.
1388
+ */
1389
+ finalizeTPTInheritance(meta, metadata) {
1390
+ if (meta.inheritanceType !== 'tpt') {
1391
+ return;
1392
+ }
1393
+ if (meta.tptParent) {
1394
+ meta.tptParent = metadata.find(m => m.class === meta.tptParent.class) ?? meta.tptParent;
1395
+ }
1396
+ if (meta.tptChildren) {
1397
+ meta.tptChildren = meta.tptChildren.map(child => metadata.find(m => m.class === child.class) ?? child);
1398
+ }
1399
+ const registryMeta = this.#metadata.get(meta.class);
1400
+ if (registryMeta && registryMeta !== meta) {
1401
+ registryMeta.inheritanceType = meta.inheritanceType;
1402
+ registryMeta.tptParent = meta.tptParent ? this.#metadata.get(meta.tptParent.class) : undefined;
1403
+ registryMeta.tptChildren = meta.tptChildren?.map(child => this.#metadata.get(child.class));
1404
+ }
1405
+ this.initTPTDiscriminator(meta, metadata);
1406
+ }
1407
+ /**
1408
+ * Initialize TPT discriminator map and virtual discriminator property.
1409
+ * Unlike STI where the discriminator is a persisted column, TPT discriminator is computed
1410
+ * at query time using CASE WHEN expressions based on which child table has data.
1411
+ */
1412
+ initTPTDiscriminator(meta, metadata) {
1413
+ const allDescendants = this.collectAllTPTDescendants(meta, metadata);
1414
+ allDescendants.sort((a, b) => this.getTPTDepth(b) - this.getTPTDepth(a));
1415
+ meta.allTPTDescendants = allDescendants;
1416
+ if (meta.root !== meta) {
1417
+ return;
1418
+ }
1419
+ meta.root.discriminatorMap = {};
1420
+ for (const m of allDescendants) {
1421
+ const name = this.#namingStrategy.classToTableName(m.className);
1422
+ meta.root.discriminatorMap[name] = m.class;
1423
+ m.discriminatorValue = name;
1424
+ }
1425
+ if (!meta.abstract) {
1426
+ const name = this.#namingStrategy.classToTableName(meta.className);
1427
+ meta.root.discriminatorMap[name] = meta.class;
1428
+ meta.discriminatorValue = name;
1429
+ }
1430
+ // Virtual discriminator property - computed at query time via CASE WHEN, not persisted
1431
+ const discriminatorColumn = '__tpt_type';
1432
+ if (!meta.root.properties[discriminatorColumn]) {
1433
+ meta.root.addProperty({
1434
+ name: discriminatorColumn,
1435
+ type: 'string',
1436
+ kind: ReferenceKind.SCALAR,
1437
+ persist: false,
1438
+ userDefined: false,
1439
+ hidden: true,
1440
+ });
1441
+ }
1442
+ meta.root.tptDiscriminatorColumn = discriminatorColumn;
1443
+ }
1444
+ /**
1445
+ * Recursively collect all TPT descendants (children, grandchildren, etc.)
1446
+ */
1447
+ collectAllTPTDescendants(meta, metadata) {
1448
+ const descendants = [];
1449
+ const collect = parent => {
1450
+ for (const child of parent.tptChildren ?? []) {
1451
+ const resolved = metadata.find(m => m.class === child.class) ?? child;
1452
+ if (!resolved.abstract) {
1453
+ descendants.push(resolved);
1454
+ }
1455
+ collect(resolved);
1456
+ }
1457
+ };
1458
+ collect(meta);
1459
+ return descendants;
1460
+ }
1461
+ /**
1462
+ * Computes ownProps for TPT entities - only properties defined in THIS entity,
1463
+ * not inherited from parent. Also creates synthetic join properties for parent/child relationships.
1464
+ *
1465
+ * Called multiple times during discovery as metadata is progressively built.
1466
+ * Each pass overwrites earlier results to reflect the final state of properties.
1467
+ */
1468
+ computeTPTOwnProps(meta) {
1469
+ if (meta.inheritanceType !== 'tpt') {
1470
+ return;
1471
+ }
1472
+ const belongsToTable = prop => prop.persist !== false || prop.primary;
1473
+ // Use meta.properties (object) since meta.props (array) may not be populated yet
1474
+ const allProps = Object.values(meta.properties);
1475
+ if (!meta.tptParent) {
1476
+ meta.ownProps = allProps.filter(belongsToTable);
1477
+ return;
1478
+ }
1479
+ const parentPropNames = new Set(Object.values(meta.tptParent.properties).map(p => p.name));
1480
+ meta.ownProps = allProps.filter(prop => !parentPropNames.has(prop.name) && belongsToTable(prop));
1481
+ // Create synthetic join properties for the parent-child relationship
1482
+ const childFieldNames = meta.getPrimaryProps().flatMap(p => p.fieldNames);
1483
+ const parentFieldNames = meta.tptParent.getPrimaryProps().flatMap(p => p.fieldNames);
1484
+ meta.tptParentProp = {
1485
+ name: '[tpt:parent]',
1486
+ kind: ReferenceKind.MANY_TO_ONE,
1487
+ targetMeta: meta.tptParent,
1488
+ fieldNames: childFieldNames,
1489
+ referencedColumnNames: parentFieldNames,
1490
+ persist: false,
1491
+ };
1492
+ meta.tptInverseProp = {
1493
+ name: '[tpt:child]',
1494
+ kind: ReferenceKind.ONE_TO_ONE,
1495
+ owner: true,
1496
+ targetMeta: meta,
1497
+ fieldNames: parentFieldNames,
1498
+ joinColumns: parentFieldNames,
1499
+ referencedColumnNames: childFieldNames,
1500
+ persist: false,
1501
+ };
1502
+ }
1503
+ /** Returns the depth of a TPT entity in its hierarchy (0 for root). */
1504
+ getTPTDepth(meta) {
1505
+ let depth = 0;
1506
+ let current = meta;
1507
+ while (current.tptParent) {
1508
+ depth++;
1509
+ current = current.tptParent;
1510
+ }
1511
+ return depth;
1512
+ }
1513
+ /**
1514
+ * Find the direct TPT parent entity for the given entity.
1515
+ */
1516
+ getTPTParent(meta, metadata) {
1517
+ if (meta.root === meta) {
1518
+ return undefined;
1519
+ }
1520
+ return metadata.find(m => {
1521
+ const ext = meta.extends;
1522
+ if (EntitySchema.is(ext)) {
1523
+ return m.class === ext.meta.class || m.className === ext.meta.className;
1524
+ }
1525
+ return m.class === ext || m.className === Utils.className(ext);
1526
+ });
1527
+ }
1528
+ createDiscriminatorProperty(meta) {
1529
+ meta.addProperty({
1530
+ name: meta.discriminatorColumn,
1531
+ type: 'string',
1532
+ enum: true,
1533
+ kind: ReferenceKind.SCALAR,
1534
+ userDefined: false,
1535
+ });
1536
+ }
1537
+ initAutoincrement(meta) {
1538
+ const pks = meta.getPrimaryProps();
1539
+ if (pks.length === 1 && this.#platform.isNumericProperty(pks[0])) {
1540
+ /* v8 ignore next */
1541
+ pks[0].autoincrement ??= true;
1542
+ }
1543
+ }
1544
+ createSchemaTable(meta) {
1545
+ const qualifiedName = meta.schema ? `${meta.schema}.${meta.tableName}` : meta.tableName;
1546
+ return {
1547
+ name: meta.tableName,
1548
+ schema: meta.schema,
1549
+ qualifiedName,
1550
+ toString: () => qualifiedName,
1551
+ };
1552
+ }
1553
+ initCheckConstraints(meta) {
1554
+ const columns = meta.createSchemaColumnMappingObject();
1555
+ const table = this.createSchemaTable(meta);
1556
+ for (const check of meta.checks) {
1557
+ const fieldNames = check.property ? meta.properties[check.property].fieldNames : [];
1558
+ check.name ??= this.#namingStrategy.indexName(meta.tableName, fieldNames, 'check');
1559
+ if (check.expression instanceof Function) {
1560
+ check.expression = check.expression(columns, table);
1561
+ }
1562
+ }
1563
+ if (this.#platform.usesEnumCheckConstraints() && !meta.embeddable) {
1564
+ for (const prop of meta.props) {
1565
+ if (prop.persist === false || prop.nativeEnumName || !prop.items?.every(item => typeof item === 'string')) {
1566
+ continue;
1567
+ }
1568
+ this.initFieldName(prop);
1569
+ let expression = null;
1570
+ if (prop.enum) {
1571
+ expression = `${this.#platform.quoteIdentifier(prop.fieldNames[0])} in ('${prop.items.join("', '")}')`;
1572
+ } else if (prop.array) {
1573
+ expression = this.#platform.getEnumArrayCheckConstraintExpression(prop.fieldNames[0], prop.items);
1574
+ }
1575
+ if (expression) {
1576
+ meta.checks.push({
1577
+ name: this.#namingStrategy.indexName(meta.tableName, prop.fieldNames, 'check'),
1578
+ property: prop.name,
1579
+ expression,
1580
+ });
1581
+ }
1582
+ }
1583
+ }
1584
+ }
1585
+ initGeneratedColumn(meta, prop) {
1586
+ if (!prop.generated && prop.columnTypes) {
1587
+ const match = /(.*) generated always as (.*)/i.exec(prop.columnTypes[0]);
1588
+ if (match) {
1589
+ prop.columnTypes[0] = match[1];
1590
+ prop.generated = match[2];
1591
+ return;
1592
+ }
1593
+ const match2 = /^as (.*)/i.exec(prop.columnTypes[0]?.trim());
1594
+ if (match2) {
1595
+ prop.generated = match2[1];
1596
+ }
1597
+ return;
1598
+ }
1599
+ if (prop.generated instanceof Function) {
1600
+ const columns = meta.createSchemaColumnMappingObject();
1601
+ prop.generated = prop.generated(columns, this.createSchemaTable(meta));
1602
+ }
1603
+ }
1604
+ getDefaultVersionValue(meta, prop) {
1605
+ if (typeof prop.defaultRaw !== 'undefined') {
1606
+ return prop.defaultRaw;
1607
+ }
1608
+ /* v8 ignore next */
1609
+ if (prop.default != null) {
1610
+ return '' + this.#platform.convertVersionValue(prop.default, prop);
1611
+ }
1612
+ this.initCustomType(meta, prop, true);
1613
+ const type = prop.customType?.runtimeType ?? prop.runtimeType ?? prop.type;
1614
+ if (type === 'Date') {
1615
+ prop.length ??= this.#platform.getDefaultVersionLength();
1616
+ return this.#platform.getCurrentTimestampSQL(prop.length);
1617
+ }
1618
+ return '1';
1619
+ }
1620
+ inferDefaultValue(meta, prop) {
1621
+ try {
1622
+ // try to create two entity instances to detect the value is stable
1623
+ const now = Date.now();
1624
+ const entity1 = new meta.class();
1625
+ const entity2 = new meta.class();
1626
+ // we compare the two values by reference, this will discard things like `new Date()` or `Date.now()`
1627
+ if (
1628
+ this.#config.get('discovery').inferDefaultValues &&
1629
+ prop.default === undefined &&
1630
+ entity1[prop.name] != null &&
1631
+ entity1[prop.name] === entity2[prop.name] &&
1632
+ entity1[prop.name] !== now
1633
+ ) {
1634
+ prop.default ??= entity1[prop.name];
1635
+ }
1636
+ // if the default value is null, infer nullability
1637
+ if (entity1[prop.name] === null) {
1638
+ prop.nullable ??= true;
1639
+ }
1640
+ // but still use object values for type inference if not explicitly set, e.g. `createdAt = new Date()`
1641
+ if (prop.kind === ReferenceKind.SCALAR && prop.type == null && entity1[prop.name] != null) {
1642
+ prop.type = prop.runtimeType = Utils.getObjectType(entity1[prop.name]);
1643
+ }
1644
+ } catch {
1645
+ // ignore
1646
+ }
1647
+ }
1648
+ initDefaultValue(prop) {
1649
+ if (prop.defaultRaw || !('default' in prop)) {
1650
+ return;
1651
+ }
1652
+ let val = prop.default;
1653
+ const raw = Raw.getKnownFragment(val);
1654
+ if (raw) {
1655
+ prop.defaultRaw = this.#platform.formatQuery(raw.sql, raw.params);
1656
+ return;
1657
+ }
1658
+ if (Array.isArray(prop.default) && prop.customType) {
1659
+ val = prop.customType.convertToDatabaseValue(prop.default, this.#platform);
1660
+ }
1661
+ prop.defaultRaw = typeof val === 'string' ? `'${val}'` : '' + val;
1662
+ }
1663
+ inferTypeFromDefault(prop) {
1664
+ if ((prop.defaultRaw == null && prop.default == null) || prop.type !== 'any') {
1665
+ return;
1666
+ }
1667
+ switch (typeof prop.default) {
1668
+ case 'string':
1669
+ prop.type = prop.runtimeType = 'string';
1670
+ break;
1671
+ case 'number':
1672
+ prop.type = prop.runtimeType = 'number';
1673
+ break;
1674
+ case 'boolean':
1675
+ prop.type = prop.runtimeType = 'boolean';
1676
+ break;
1677
+ }
1678
+ if (prop.defaultRaw?.startsWith('current_timestamp')) {
1679
+ prop.type = prop.runtimeType = 'Date';
1680
+ }
1681
+ }
1682
+ initVersionProperty(meta, prop) {
1683
+ if (prop.version) {
1684
+ this.initDefaultValue(prop);
1685
+ meta.versionProperty = prop.name;
1686
+ prop.defaultRaw = this.getDefaultVersionValue(meta, prop);
1687
+ }
1688
+ if (prop.concurrencyCheck && !prop.primary) {
1689
+ meta.concurrencyCheckKeys.add(prop.name);
1690
+ }
1691
+ }
1692
+ initCustomType(meta, prop, simple = false, objectEmbeddable = false) {
1693
+ // `prop.type` might be actually instance of custom type class
1694
+ if (Type.isMappedType(prop.type) && !prop.customType) {
1695
+ prop.customType = prop.type;
1696
+ prop.type = prop.customType.constructor.name;
1697
+ }
1698
+ // `prop.type` might also be custom type class (not instance), so `typeof MyType` will give us `function`, not `object`
1699
+ if (typeof prop.type === 'function' && Type.isMappedType(prop.type.prototype) && !prop.customType) {
1700
+ // if the type is an ORM defined mapped type without `ensureComparable: true`,
1701
+ // we use just the type name, to have more performant hydration code
1702
+ const brand = Type.getOrmType(prop.type);
1703
+ const type = Utils.keys(t).find(type => {
1704
+ return !Type.getType(t[type]).ensureComparable(meta, prop) && (prop.type === t[type] || brand === type);
1705
+ });
1706
+ if (type) {
1707
+ prop.type = type === 'datetime' ? 'Date' : type;
1708
+ } else {
1709
+ prop.customType = new prop.type();
1710
+ prop.type = prop.customType.constructor.name;
1711
+ }
1712
+ }
1713
+ if (simple) {
1714
+ return;
1715
+ }
1716
+ if (!prop.customType && ['json', 'jsonb'].includes(prop.type?.toLowerCase())) {
1717
+ prop.customType = new t.json();
1718
+ }
1719
+ if (
1720
+ prop.kind === ReferenceKind.SCALAR &&
1721
+ !prop.customType &&
1722
+ prop.columnTypes &&
1723
+ ['json', 'jsonb'].includes(prop.columnTypes[0])
1724
+ ) {
1725
+ prop.customType = new t.json();
1726
+ }
1727
+ if (prop.kind === ReferenceKind.EMBEDDED && !prop.customType && (prop.object || prop.array)) {
1728
+ prop.customType = new t.json();
1729
+ }
1730
+ if (!prop.customType && prop.array && prop.items) {
1731
+ prop.customType = new t.enumArray(`${meta.className}.${prop.name}`, prop.items);
1732
+ }
1733
+ const isArray = prop.type?.toLowerCase() === 'array' || prop.type?.toString().endsWith('[]');
1734
+ if (objectEmbeddable && !prop.customType && isArray) {
1735
+ prop.customType = new t.json();
1736
+ }
1737
+ // for number arrays we make sure to convert the items to numbers
1738
+ if (!prop.customType && prop.type === 'number[]') {
1739
+ prop.customType = new t.array(i => +i);
1740
+ }
1741
+ // `string[]` can be returned via ts-morph, while reflect metadata will give us just `array`
1742
+ if (!prop.customType && isArray) {
1743
+ prop.customType = new t.array();
1744
+ }
1745
+ if (!prop.customType && prop.type?.toLowerCase() === 'buffer') {
1746
+ prop.customType = new t.blob();
1747
+ }
1748
+ if (!prop.customType && prop.type?.toLowerCase() === 'uint8array') {
1749
+ prop.customType = new t.uint8array();
1750
+ }
1751
+ const mappedType = this.getMappedType(prop);
1752
+ if (prop.fieldNames?.length === 1 && !prop.customType) {
1753
+ [t.bigint, t.double, t.decimal, t.interval, t.date]
1754
+ .filter(type => mappedType instanceof type)
1755
+ .forEach(type => (prop.customType = new type()));
1756
+ }
1757
+ if (prop.customType && !prop.columnTypes) {
1758
+ const mappedType = this.getMappedType({
1759
+ columnTypes: [prop.customType.getColumnType(prop, this.#platform)],
1760
+ });
1761
+ if (prop.customType.compareAsType() === 'any' && ![t.json].some(t => prop.customType instanceof t)) {
1762
+ prop.runtimeType ??= mappedType.runtimeType;
1763
+ } else {
1764
+ prop.runtimeType ??= prop.customType.runtimeType;
1765
+ }
1766
+ } else if (prop.runtimeType === 'object') {
1767
+ prop.runtimeType = mappedType.runtimeType;
1768
+ } else {
1769
+ prop.runtimeType ??= mappedType.runtimeType;
1770
+ }
1771
+ if (prop.customType) {
1772
+ prop.customType.platform = this.#platform;
1773
+ prop.customType.meta = meta;
1774
+ prop.customType.prop = prop;
1775
+ prop.columnTypes ??= [prop.customType.getColumnType(prop, this.#platform)];
1776
+ prop.hasConvertToJSValueSQL =
1777
+ !!prop.customType.convertToJSValueSQL && prop.customType.convertToJSValueSQL('', this.#platform) !== '';
1778
+ prop.hasConvertToDatabaseValueSQL =
1779
+ !!prop.customType.convertToDatabaseValueSQL &&
1780
+ prop.customType.convertToDatabaseValueSQL('', this.#platform) !== '';
1781
+ if (
1782
+ prop.customType instanceof t.bigint &&
1783
+ ['string', 'bigint', 'number'].includes(prop.runtimeType.toLowerCase())
1784
+ ) {
1785
+ prop.customType.mode = prop.runtimeType.toLowerCase();
1786
+ }
1787
+ }
1788
+ if (Type.isMappedType(prop.customType) && prop.kind === ReferenceKind.SCALAR && !isArray) {
1789
+ prop.type = prop.customType.name;
1790
+ }
1791
+ if (
1792
+ !prop.customType &&
1793
+ [ReferenceKind.ONE_TO_ONE, ReferenceKind.MANY_TO_ONE].includes(prop.kind) &&
1794
+ !prop.polymorphic &&
1795
+ prop.targetMeta.compositePK
1796
+ ) {
1797
+ prop.customTypes = [];
1798
+ for (const pk of prop.targetMeta.getPrimaryProps()) {
1799
+ if (pk.customType) {
1800
+ prop.customTypes.push(pk.customType);
1801
+ prop.hasConvertToJSValueSQL ||=
1802
+ !!pk.customType.convertToJSValueSQL && pk.customType.convertToJSValueSQL('', this.#platform) !== '';
1803
+ /* v8 ignore next */
1804
+ prop.hasConvertToDatabaseValueSQL ||=
1805
+ !!pk.customType.convertToDatabaseValueSQL &&
1806
+ pk.customType.convertToDatabaseValueSQL('', this.#platform) !== '';
1807
+ } else {
1808
+ prop.customTypes.push(undefined);
1809
+ }
1810
+ }
1811
+ }
1812
+ if (prop.kind === ReferenceKind.SCALAR && !(mappedType instanceof t.unknown)) {
1813
+ if (
1814
+ prop.nativeEnumName &&
1815
+ meta.schema !== this.#platform.getDefaultSchemaName() &&
1816
+ meta.schema &&
1817
+ !prop.nativeEnumName.includes('.')
1818
+ ) {
1819
+ const suffix = prop.columnTypes?.[0]?.endsWith('[]') ? '[]' : '';
1820
+ prop.columnTypes = [`${meta.schema}.${prop.nativeEnumName}${suffix}`];
1821
+ } else {
1822
+ prop.columnTypes ??= [mappedType.getColumnType(prop, this.#platform)];
1823
+ }
1824
+ // use only custom types provided by user, we don't need to use the ones provided by ORM,
1825
+ // with exception for ArrayType and JsonType, those two are handled in
1826
+ if (!Object.values(t).some(type => type === mappedType.constructor)) {
1827
+ prop.customType ??= mappedType;
1828
+ }
1829
+ }
1830
+ }
1831
+ initRelation(prop) {
1832
+ if (prop.kind === ReferenceKind.SCALAR || prop.polymorphTargets) {
1833
+ return;
1834
+ }
1835
+ // when the target is a polymorphic embedded entity, `prop.target` is an array of classes, we need to get the metadata by the type name instead
1836
+ const meta2 = this.#metadata.find(prop.target) ?? this.#metadata.getByClassName(prop.type);
1837
+ // If targetKey is specified, use that property instead of PKs for referencedPKs
1838
+ prop.referencedPKs = prop.targetKey ? [prop.targetKey] : meta2.primaryKeys;
1839
+ prop.targetMeta = meta2;
1840
+ if (meta2.view) {
1841
+ prop.createForeignKeyConstraint = false;
1842
+ }
1843
+ // Auto-generate formula for persist: false relations, but only for single-column FKs
1844
+ // Composite FK relations need standard JOIN conditions, not formula-based
1845
+ if (
1846
+ !prop.formula &&
1847
+ prop.persist === false &&
1848
+ [ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind) &&
1849
+ !prop.embedded
1850
+ ) {
1851
+ this.initFieldName(prop);
1852
+ if (prop.fieldNames?.length === 1) {
1853
+ prop.formula = table => `${table}.${this.#platform.quoteIdentifier(prop.fieldNames[0])}`;
1854
+ }
1855
+ }
1856
+ }
1857
+ initColumnType(prop) {
1858
+ this.initUnsigned(prop);
1859
+ // Get the target properties for FK relations - use targetKey property if specified, otherwise PKs
1860
+ const targetProps = prop.targetMeta
1861
+ ? prop.targetKey
1862
+ ? [prop.targetMeta.properties[prop.targetKey]]
1863
+ : prop.targetMeta.getPrimaryProps()
1864
+ : [];
1865
+ targetProps.map(targetProp => {
1866
+ prop.length ??= targetProp.length;
1867
+ prop.precision ??= targetProp.precision;
1868
+ prop.scale ??= targetProp.scale;
1869
+ });
1870
+ if (prop.kind === ReferenceKind.SCALAR && (prop.type == null || prop.type === 'object') && prop.columnTypes?.[0]) {
1871
+ delete prop.type;
1872
+ const mappedType = this.getMappedType(prop);
1873
+ prop.type = mappedType.compareAsType();
1874
+ }
1875
+ if (prop.columnTypes || !this.#schemaHelper) {
1876
+ return;
1877
+ }
1878
+ if (prop.kind === ReferenceKind.SCALAR) {
1879
+ const mappedType = this.getMappedType(prop);
1880
+ const SCALAR_TYPES = ['string', 'number', 'boolean', 'bigint', 'Date', 'Buffer', 'RegExp', 'any', 'unknown'];
1881
+ if (
1882
+ mappedType instanceof t.unknown &&
1883
+ // it could be a runtime type from reflect-metadata
1884
+ !SCALAR_TYPES.includes(prop.type) &&
1885
+ // or it might be inferred via ts-morph to some generic type alias
1886
+ !/[<>:"';{}]/.exec(prop.type)
1887
+ ) {
1888
+ const type =
1889
+ prop.length != null && !prop.type.endsWith(`(${prop.length})`) ? `${prop.type}(${prop.length})` : prop.type;
1890
+ prop.columnTypes = [type];
1891
+ } else {
1892
+ prop.columnTypes = [mappedType.getColumnType(prop, this.#platform)];
1893
+ }
1894
+ return;
1895
+ }
1896
+ /* v8 ignore next */
1897
+ if (prop.kind === ReferenceKind.EMBEDDED && prop.object) {
1898
+ prop.columnTypes = [this.#platform.getJsonDeclarationSQL()];
1899
+ return;
1900
+ }
1901
+ const targetMeta = prop.targetMeta;
1902
+ prop.columnTypes = [];
1903
+ // Use targetKey property if specified, otherwise use primary key properties
1904
+ const referencedProps = prop.targetKey ? [targetMeta.properties[prop.targetKey]] : targetMeta.getPrimaryProps();
1905
+ if (prop.polymorphic && prop.polymorphTargets) {
1906
+ prop.columnTypes.push(this.#platform.getVarcharTypeDeclarationSQL(prop));
1907
+ }
1908
+ for (const referencedProp of referencedProps) {
1909
+ this.initCustomType(targetMeta, referencedProp);
1910
+ this.initColumnType(referencedProp);
1911
+ const mappedType = this.getMappedType(referencedProp);
1912
+ let columnTypes = referencedProp.columnTypes;
1913
+ if (referencedProp.autoincrement) {
1914
+ columnTypes = [mappedType.getColumnType({ ...referencedProp, autoincrement: false }, this.#platform)];
1915
+ }
1916
+ prop.columnTypes.push(...columnTypes);
1917
+ if (!targetMeta.compositePK || prop.targetKey) {
1918
+ prop.customType = referencedProp.customType;
1919
+ }
1920
+ }
1921
+ }
1922
+ getMappedType(prop) {
1923
+ if (prop.customType) {
1924
+ return prop.customType;
1925
+ }
1926
+ /* v8 ignore next */
1927
+ let t = prop.columnTypes?.[0] ?? prop.type ?? '';
1928
+ if (prop.nativeEnumName) {
1929
+ t = 'enum';
1930
+ } else if (prop.enum) {
1931
+ t = prop.items?.every(item => typeof item === 'string') ? 'enum' : 'tinyint';
1932
+ }
1933
+ if (t === 'Date') {
1934
+ t = 'datetime';
1935
+ }
1936
+ return this.#platform.getMappedType(t);
1937
+ }
1938
+ getPrefix(prop, parent) {
1939
+ const { embeddedPath = [], fieldNames, prefix = true, prefixMode } = prop;
1940
+ if (prefix === true) {
1941
+ return (embeddedPath.length ? embeddedPath.join('_') : fieldNames[0]) + '_';
1942
+ }
1943
+ const prefixParent = parent ? this.getPrefix(parent, null) : '';
1944
+ if (prefix === false) {
1945
+ return prefixParent;
1946
+ }
1947
+ const mode = prefixMode ?? this.#config.get('embeddables').prefixMode;
1948
+ return mode === 'absolute' ? prefix : prefixParent + prefix;
1949
+ }
1950
+ initUnsigned(prop) {
1951
+ if (prop.unsigned != null) {
1952
+ return;
1953
+ }
1954
+ if ([ReferenceKind.MANY_TO_ONE, ReferenceKind.ONE_TO_ONE].includes(prop.kind)) {
1955
+ prop.unsigned = prop.targetMeta.getPrimaryProps().some(pk => {
1956
+ this.initUnsigned(pk);
1957
+ return pk.unsigned;
1958
+ });
1959
+ return;
1960
+ }
1961
+ prop.unsigned ??=
1962
+ (prop.primary || prop.unsigned) && this.#platform.isNumericProperty(prop) && this.#platform.supportsUnsigned();
1963
+ }
1964
+ initIndexes(meta, prop) {
1965
+ const hasIndex = meta.indexes.some(idx => idx.properties?.length === 1 && idx.properties[0] === prop.name);
1966
+ if (prop.kind === ReferenceKind.MANY_TO_ONE && this.#platform.indexForeignKeys() && !hasIndex) {
1967
+ prop.index ??= true;
1968
+ }
1969
+ }
1970
+ shouldForceConstructorUsage(meta) {
1971
+ const forceConstructor = this.#config.get('forceEntityConstructor');
1972
+ if (Array.isArray(forceConstructor)) {
1973
+ return forceConstructor.some(cls => Utils.className(cls) === meta.className);
1974
+ }
1975
+ return forceConstructor;
1976
+ }
1889
1977
  }