-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathhas-many-through-relation.generator.js
More file actions
333 lines (307 loc) · 10.8 KB
/
has-many-through-relation.generator.js
File metadata and controls
333 lines (307 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
// Copyright IBM Corp. and LoopBack contributors 2020. All Rights Reserved.
// Node module: @loopback/cli
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
'use strict';
const ast = require('ts-morph');
const path = require('path');
const BaseRelationGenerator = require('./base-relation.generator');
const relationUtils = require('./utils.generator');
const utils = require('../../lib/utils');
const CONTROLLER_TEMPLATE_PATH_HAS_MANY_THROUGH =
'controller-relation-template-has-many-through.ts.ejs';
module.exports = class HasManyThroughRelationGenerator extends (
BaseRelationGenerator
) {
constructor(args, opts) {
super(args, opts);
}
async generateControllers(options) {
this.artifactInfo.sourceModelClassName = options.sourceModel;
this.artifactInfo.targetModelClassName = options.destinationModel;
this.artifactInfo.throughModelClassName = options.throughModel;
// source
this.artifactInfo.sourceRepositoryClassName =
this.artifactInfo.sourceModelClassName + 'Repository';
this.artifactInfo.controllerClassName =
this.artifactInfo.sourceModelClassName +
this.artifactInfo.targetModelClassName +
'Controller';
this.artifactInfo.paramSourceRepository = utils.camelCase(
this.artifactInfo.sourceModelClassName + 'Repository',
);
this.artifactInfo.sourceModelName = utils.toFileName(options.sourceModel);
this.artifactInfo.sourceModelPath = utils.pluralize(
this.artifactInfo.sourceModelName,
);
// through
this.artifactInfo.throughRepositoryClassName =
this.artifactInfo.throughModelClassName + 'Repository';
this.artifactInfo.paramThroughRepository = utils.camelCase(
this.artifactInfo.throughModelClassName + 'Repository',
);
this.artifactInfo.throughModelName = utils.toFileName(options.throughModel);
// target
this.artifactInfo.targetModelName = utils.toFileName(
options.destinationModel,
);
this.artifactInfo.targetRepositoryClassName =
this.artifactInfo.targetModelName + 'Repository';
this.artifactInfo.paramTargetRepository = utils.camelCase(
this.artifactInfo.targetModelName + 'Repository',
);
this.artifactInfo.targetModelPath = utils.pluralize(
this.artifactInfo.targetModelName,
);
this.artifactInfo.targetModelRequestBody = utils.camelCase(
this.artifactInfo.targetModelName,
);
this.artifactInfo.relationPropertyName = options.relationName;
this.artifactInfo.sourceModelPrimaryKey = options.sourceModelPrimaryKey;
this.artifactInfo.sourceModelPrimaryKeyType =
options.sourceModelPrimaryKeyType;
this.artifactInfo.targetModelPrimaryKey =
options.destinationModelPrimaryKey;
this.artifactInfo.foreignKeyName = options.foreignKeyName;
const source = this.templatePath(CONTROLLER_TEMPLATE_PATH_HAS_MANY_THROUGH);
this.artifactInfo.name =
options.sourceModel + '-' + options.destinationModel;
this.artifactInfo.outFile =
utils.toFileName(this.artifactInfo.name) + '.controller.ts';
const dest = this.destinationPath(
path.join(this.artifactInfo.outDir, this.artifactInfo.outFile),
);
this.copyTemplatedFiles(source, dest, this.artifactInfo);
await relationUtils.addExportController(
this,
path.resolve(this.artifactInfo.outDir, 'index.ts'),
this.artifactInfo.controllerClassName,
utils.toFileName(this.artifactInfo.name) + '.controller',
);
}
async generateModels(options) {
// for repo to generate relation name
this.artifactInfo.relationName = options.relationName;
const modelDir = this.artifactInfo.modelDir;
const sourceModel = options.sourceModel;
const throughModel = options.throughModel;
const targetModel = options.destinationModel;
// hasManyThrough is part of hasMany
const relationType = 'hasMany';
const relationName = options.relationName;
const sourceKey = options.sourceKeyOnThrough;
const targetKey = options.targetKeyOnThrough;
const dftSourceKey = options.defaultSourceKeyOnThrough;
const dftTargetKey = options.defaultTargetKeyOnThrough;
const sourceKeyType = options.sourceModelPrimaryKeyType;
const targetKeyType = options.destinationModelPrimaryKeyType;
// checks if both target and source key exist in through model
const project = new relationUtils.AstLoopBackProject();
const throughFile = relationUtils.addFileToProject(
project,
modelDir,
throughModel,
);
const throughClass = relationUtils.getClassObj(throughFile, throughModel);
const doesSourceKeyExist = relationUtils.doesPropertyExist(
throughClass,
sourceKey,
);
const doesTargetKeyExist = relationUtils.doesPropertyExist(
throughClass,
targetKey,
);
let modelProperty;
// checks if the relation name already exists
const sourceFile = relationUtils.addFileToProject(
project,
modelDir,
sourceModel,
);
const sourceClass = relationUtils.getClassObj(sourceFile, sourceModel);
relationUtils.doesRelationExist(sourceClass, relationName, {
force: this.options.force,
});
// add the relation to the source model
const isDefaultSourceKey = sourceKey === dftSourceKey;
const isDefaultTargetKey = targetKey === dftTargetKey;
modelProperty = this.getHasManyThrough(
targetModel,
throughModel,
relationName,
isDefaultSourceKey,
sourceKey,
isDefaultTargetKey,
targetKey,
);
relationUtils.addProperty(sourceClass, modelProperty);
let imports;
// no need to import target model for self-through case
if (!(sourceModel === targetModel)) {
imports = relationUtils.getRequiredImports(targetModel, relationType);
relationUtils.addRequiredImports(sourceFile, imports);
}
imports = relationUtils.getRequiredImports(throughModel, relationType);
relationUtils.addRequiredImports(sourceFile, imports);
await sourceFile.save();
// checks if fks exist in through
if (doesSourceKeyExist) {
if (
!relationUtils.isValidPropertyType(
throughClass,
sourceKey,
sourceKeyType,
)
) {
throw new Error('SourceKeyOnThrough Type Error');
}
} else {
modelProperty = relationUtils.addForeignKey(sourceKey, sourceKeyType);
relationUtils.addProperty(throughClass, modelProperty);
throughClass.formatText();
}
if (doesTargetKeyExist) {
if (
!relationUtils.isValidPropertyType(
throughClass,
targetKey,
targetKeyType,
)
) {
throw new Error('TargetKeyOnThrough Type Error');
}
} else {
modelProperty = relationUtils.addForeignKey(targetKey, targetKeyType);
relationUtils.addProperty(throughClass, modelProperty);
throughClass.formatText();
await throughFile.save();
}
}
getHasManyThrough(
targetClass,
throughModel,
relationName,
isDefaultSourceKey,
sourceKey,
isDefaultTargetKey,
targetKey,
) {
let keyFrom = '';
let keyTo = '';
if (!isDefaultSourceKey) {
keyFrom = `, keyFrom: '${sourceKey}'`;
}
if (!isDefaultTargetKey) {
keyTo = `, keyTo: '${targetKey}'`;
}
const relationDecorator = [
{
name: 'hasMany',
arguments: [
`() => ${targetClass}, {through: {model: () => ${throughModel}${keyFrom}${keyTo}}}`,
],
},
];
return {
decorators: relationDecorator,
name: relationName,
type: targetClass + '[]',
};
}
_addThroughRepoToRepositoryConstructor(repositoryConstructor) {
const throughRepoGetterName =
utils.camelCase(this.artifactInfo.throughRepoClassName) + 'Getter';
if (
relationUtils.doesParameterExist(
repositoryConstructor,
throughRepoGetterName,
)
) {
// no need to check if the getter already exists
return;
}
repositoryConstructor.addParameter({
decorators: [
{
name: 'repository.getter',
arguments: ["'" + this.artifactInfo.throughRepoClassName + "'"],
},
],
name: throughRepoGetterName,
type: 'Getter<' + this.artifactInfo.throughRepoClassName + '>,',
scope: ast.Scope.Protected,
});
}
_getRepositoryRequiredImports(dstModelClassName, dstRepositoryClassName) {
const throughModel = this.artifactInfo.throughModelClass;
const sourceModel = this.artifactInfo.srcModelClass;
const throughRepoClassName = this.artifactInfo.throughRepoClassName;
this.artifactInfo.throughRepoClassName = throughRepoClassName;
const importsArray = [
{
name: dstModelClassName,
module: '../models',
},
{
name: throughModel,
module: '../models',
},
{
name: 'repository',
module: '@loopback/repository',
},
{
name: 'Getter',
module: '@loopback/core',
},
{
name: throughRepoClassName,
module: `./${utils.toFileName(throughModel)}.repository`,
},
{
name: 'HasManyThroughRepositoryFactory',
module: '@loopback/repository',
},
];
if (!(sourceModel === dstModelClassName)) {
importsArray.push({
name: dstRepositoryClassName,
module: `./${utils.toFileName(dstModelClassName)}.repository`,
});
}
return importsArray;
}
_getRepositoryRelationPropertyName() {
return this.artifactInfo.relationName;
}
_getRepositoryRelationPropertyType() {
return `HasManyThroughRepositoryFactory<${utils.toClassName(
this.artifactInfo.dstModelClass,
)}, typeof ${utils.toClassName(
this.artifactInfo.dstModelClass,
)}.prototype.${this.artifactInfo.dstModelPrimaryKey},
${utils.toClassName(this.artifactInfo.throughModelClass)},
typeof ${utils.toClassName(this.artifactInfo.srcModelClass)}.prototype.${
this.artifactInfo.srcModelPrimaryKey
}
>`;
}
_addCreatorToRepositoryConstructor(classConstructor) {
const relationPropertyName = this._getRepositoryRelationPropertyName();
const statement =
`this.${relationPropertyName} = ` +
`this.createHasManyThroughRepositoryFactoryFor('${relationPropertyName}', ` +
`${utils.camelCase(this.artifactInfo.dstRepositoryClassName)}Getter, ` +
`${utils.camelCase(this.artifactInfo.throughRepoClassName)}Getter,);`;
classConstructor.insertStatements(1, statement);
}
_registerInclusionResolverForRelation(classConstructor, options) {
const relationPropertyName = this._getRepositoryRelationPropertyName();
if (options.registerInclusionResolver) {
const statement =
`this.registerInclusionResolver(` +
`'${relationPropertyName}', this.${relationPropertyName}.inclusionResolver);`;
classConstructor.insertStatements(2, statement);
}
}
};