-
Notifications
You must be signed in to change notification settings - Fork 36
/
Query.js
472 lines (447 loc) · 16.8 KB
/
Query.js
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
'use strict';
const TYPE = require('../../types/mcdev.d');
const Util = require('../util/util');
const MetadataType = require('./MetadataType');
const File = require('../util/file');
const cache = require('../util/cache');
const Mustache = require('mustache');
/**
* ensure that Mustache does not escape any characters
*
* @param {string} text -
* @returns {string} text
*/
Mustache.escape = function (text) {
return text;
};
/**
* Query MetadataType
*
* @augments MetadataType
*/
class Query extends MetadataType {
/**
* Retrieves Metadata of queries
*
* @param {string} retrieveDir Directory where retrieved metadata directory will be saved
* @param {void} [_] unused parameter
* @param {void} [__] unused parameter
* @param {string} [key] customer key of single item to retrieve
* @returns {Promise.<{metadata: TYPE.QueryMap, type: string}>} Promise of metadata
*/
static async retrieve(retrieveDir, _, __, key) {
await File.initPrettier('sql');
let objectId = null;
if (key) {
objectId = await this._getObjectIdForSingleRetrieve(key);
if (!objectId) {
// avoid running the rest request below by returning early
Util.logger.info(`Downloaded: ${this.definition.type} (0) - Key: ${key}`);
return { metadata: {}, type: this.definition.type };
}
}
return super.retrieveREST(
retrieveDir,
'/automation/v1/queries/' + (objectId || ''),
null,
key
);
}
/**
* a function to start query execution via API
*
* @param {string[]} keyArr customerkey of the metadata
* @returns {Promise.<boolean>} Returns true if all items were executed successfully, otherwise false
*/
static async execute(keyArr) {
const results = [];
// works only with objectId
let objectId;
for (const key of keyArr) {
if (key) {
objectId = await this._getObjectIdForSingleRetrieve(key);
if (!objectId) {
Util.logger.info(`Skipping ${key} - did not find an item with such key`);
continue;
}
}
results.push(
super.executeREST(`/automation/v1/queries/${objectId}/actions/start/`, key)
);
}
const successCounter = (await Promise.all(results)).filter((r) => r === 'OK').length;
Util.logger.info(`Executed ${successCounter} of ${keyArr.length} items`);
return successCounter === keyArr.length;
}
/**
* helper to allow us to select single metadata entries via REST
*
* @private
* @param {string} key customer key
* @returns {Promise.<string>} objectId or enpty string
*/
static async _getObjectIdForSingleRetrieve(key) {
const response = await this.client.soap.retrieve('QueryDefinition', ['ObjectID'], {
filter: {
leftOperand: {
leftOperand: 'CustomerKey',
operator: 'equals',
rightOperand: key,
},
operator: 'AND',
rightOperand: {
leftOperand: 'Status',
operator: 'equals',
rightOperand: 'Active',
},
},
});
return response?.Results?.length ? response.Results[0].ObjectID : null;
}
/**
* Retrieves query metadata for caching
*
* @returns {Promise.<{metadata: TYPE.QueryMap, type: string}>} Promise of metadata
*/
static async retrieveForCache() {
return super.retrieveREST(null, '/automation/v1/queries/');
}
/**
* Retrieve a specific Query by Name
*
* @param {string} templateDir Directory where retrieved metadata directory will be saved
* @param {string} name name of the metadata file
* @param {TYPE.TemplateMap} templateVariables variables to be replaced in the metadata
* @returns {Promise.<{metadata: Query, type: string}>} Promise of metadata
*/
static async retrieveAsTemplate(templateDir, name, templateVariables) {
await File.initPrettier('sql');
return super.retrieveREST(
templateDir,
'/automation/v1/queries/?$filter=Name%20eq%20' + encodeURIComponent(name),
templateVariables
);
}
/**
* manages post retrieve steps
*
* @param {TYPE.QueryItem} metadata a single query
* @returns {TYPE.CodeExtractItem} Array with one metadata object and one query string
*/
static postRetrieveTasks(metadata) {
// folder
super.setFolderPath(metadata);
// extract SQL
const codeArr = [
{
subFolder: null,
fileName: metadata[this.definition.keyField],
fileExt: 'sql',
content: metadata.queryText,
},
];
delete metadata.queryText;
try {
if (metadata.targetId) {
// overwrite targetKey via targetId (it's not updated on name/key change of the DE)
const targetKey = cache.searchForField(
'dataExtension',
metadata.targetId,
'ObjectID',
'CustomerKey'
);
if (targetKey !== metadata.targetKey) {
Util.logger.debug(
` - ${this.definition.type} ${metadata[this.definition.nameField]} (${
metadata[this.definition.keyField]
}): Replacing targetKey value in saved JSON '${
metadata.targetKey
}' --> '${targetKey}'. Acquired new value from looking up the DE's ObjectID in targetId.`
);
metadata.targetKey = targetKey;
}
} else {
// if no targetId is set, at least check if the targetKey points to an existing DE (no override needed)
cache.searchForField(
'dataExtension',
metadata.targetKey,
'CustomerKey',
'CustomerKey'
);
}
} catch (ex) {
Util.logger.warn(
` - ${this.definition.type} ${metadata[this.definition.nameField]} (${
metadata[this.definition.keyField]
}): ${ex.message}.`
);
}
delete metadata.targetId;
return { json: metadata, codeArr: codeArr, subFolder: null };
}
/**
* Creates a single query
*
* @param {TYPE.QueryItem} query a single query
* @returns {Promise} Promise
*/
static create(query) {
const uri = '/automation/v1/queries/';
return super.createREST(query, uri);
}
/**
* Updates a single query
*
* @param {TYPE.QueryItem} query a single query
* @returns {Promise} Promise
*/
static update(query) {
const uri = '/automation/v1/queries/' + query.queryDefinitionId;
return super.updateREST(query, uri);
}
/**
* prepares a Query for deployment
*
* @param {TYPE.QueryItem} metadata a single query activity
* @param {string} deployDir directory of deploy files
* @returns {Promise.<TYPE.QueryItem>} Promise
*/
static async preDeployTasks(metadata, deployDir) {
// folder
super.setFolderId(metadata);
// reinject queryText
metadata.queryText = await File.readFilteredFilename(
deployDir + '/' + this.definition.type,
metadata[this.definition.keyField] + '.' + this.definition.type + '-meta',
'sql'
);
// dataExtension
metadata.targetKey = cache.searchForField(
'dataExtension',
metadata.targetKey,
'CustomerKey',
'CustomerKey'
);
// we've seen queries without this ID set - crucial in case the DE ever gets renamed to ensure the query keeps working
metadata.targetId = cache.searchForField(
'dataExtension',
metadata.targetKey,
'CustomerKey',
'ObjectID'
);
// set ID for Append / Overwrite/ Update action
metadata.targetUpdateTypeId =
this.definition.targetUpdateTypeMapping[metadata.targetUpdateTypeName];
return metadata;
}
/**
* helper for {@link Query.buildDefinitionForNested}
* searches extracted SQL file for template variables and applies the market values
*
* @param {string} code code from extracted code
* @param {TYPE.TemplateMap} templateVariables variables to be replaced in the metadata
* @returns {string} code with markets applied
*/
static applyTemplateValues(code, templateVariables) {
// fix bad formatting applied by SQL Formatter Plus
code = code
.split(' { { { ')
.join('{{{')
.split('{ { { ')
.join('{{{')
.split(' } } } ')
.join('}}}')
.split(' } } }')
.join('}}}');
// replace template variables with their values
return Mustache.render(code, templateVariables, {}, ['{{{', '}}}']);
}
/**
* helper for {@link MetadataType.buildDefinition}
* handles extracted code if any are found for complex types
*
* @param {string} templateDir Directory where metadata templates are stored
* @param {string|string[]} targetDir (List of) Directory where built definitions will be saved
* @param {TYPE.QueryItem} metadata main JSON file that was read from file system
* @param {TYPE.TemplateMap} templateVariables variables to be replaced in the metadata
* @param {string} templateName name of the template to be built
* @returns {Promise.<string[][]>} list of extracted files with path-parts provided as an array
*/
static buildDefinitionForNested(
templateDir,
targetDir,
metadata,
templateVariables,
templateName
) {
return this._buildForNested(
templateDir,
targetDir,
metadata,
templateVariables,
templateName,
'definition'
);
}
/**
* helper for {@link MetadataType.buildTemplate}
* handles extracted code if any are found for complex types
*
* @example queries are saved as 1 json and 1 sql file. both files need to be run through templating
* @param {string} templateDir Directory where metadata templates are stored
* @param {string|string[]} targetDir (List of) Directory where built definitions will be saved
* @param {TYPE.QueryItem} metadata main JSON file that was read from file system
* @param {TYPE.TemplateMap} templateVariables variables to be replaced in the metadata
* @param {string} templateName name of the template to be built
* @returns {Promise.<string[][]>} list of extracted files with path-parts provided as an array
*/
static buildTemplateForNested(
templateDir,
targetDir,
metadata,
templateVariables,
templateName
) {
return this._buildForNested(
templateDir,
targetDir,
metadata,
templateVariables,
templateName,
'template'
);
}
/**
* helper for {@link Query.buildTemplateForNested} / {@link Query.buildDefinitionForNested}
* handles extracted code if any are found for complex types
*
* @private
* @param {string} templateDir Directory where metadata templates are stored
* @param {string|string[]} targetDir (List of) Directory where built definitions will be saved
* @param {TYPE.QueryItem} metadata main JSON file that was read from file system
* @param {TYPE.TemplateMap} templateVariables variables to be replaced in the metadata
* @param {string} templateName name of the template to be built
* @param {'definition'|'template'} mode defines what we use this helper for
* @returns {Promise.<string[][]>} list of extracted files with path-parts provided as an array
*/
static async _buildForNested(
templateDir,
targetDir,
metadata,
templateVariables,
templateName,
mode
) {
// get SQL from filesystem
let code = await File.readFilteredFilename(
[templateDir, this.definition.type],
templateName + '.' + this.definition.type + '-meta',
'sql'
);
try {
if (mode === 'definition') {
code = this.applyTemplateValues(code, templateVariables);
} else if (mode === 'template') {
code = this.applyTemplateNames(code, templateVariables);
}
} catch {
throw new Error(
`${this.definition.type}:: Error applying template variables on ${
templateName + '.' + this.definition.type
}-meta.sql.`
);
}
// write to file
const targetDirArr = Array.isArray(targetDir) ? targetDir : [targetDir];
const nestedFilePaths = [];
// keep old name if creating templates, otherwise use new name
const fileName = mode === 'definition' ? metadata[this.definition.keyField] : templateName;
for (const targetDir of targetDirArr) {
File.writeToFile(
[targetDir, this.definition.type],
fileName + '.' + this.definition.type + '-meta',
'sql',
code
);
nestedFilePaths.push([
targetDir,
this.definition.type,
fileName + '.' + this.definition.type + '-meta.sql',
]);
}
return nestedFilePaths;
}
/**
* should return only the json for all but asset, query and script that are saved as multiple files
* additionally, the documentation for dataExtension and automation should be returned
*
* @param {string[]} keyArr customerkey of the metadata
* @returns {string[]} list of all files that need to be committed in a flat array ['path/file1.ext', 'path/file2.ext']
*/
static getFilesToCommit(keyArr) {
const path = File.normalizePath([
this.properties.directories.retrieve,
this.buObject.credential,
this.buObject.businessUnit,
this.definition.type,
]);
const fileList = keyArr.flatMap((key) => [
File.normalizePath([path, `${key}.${this.definition.type}-meta.json`]),
File.normalizePath([path, `${key}.${this.definition.type}-meta.sql`]),
]);
return fileList;
}
/**
* Standardizes a check for multiple messages but adds query specific filters to error texts
*
* @param {object} ex response payload from REST API
* @returns {string[] | void} formatted Error Message
*/
static getErrorsREST(ex) {
const errors = super.getErrorsREST(ex);
if (errors?.length > 0) {
return errors.map((msg) => msg.split('Error saving the Query field.').join(''));
}
return errors;
}
/**
* Delete a metadata item from the specified business unit
*
* @param {string} customerKey Identifier of data extension
* @returns {boolean} deletion success status
*/
static async deleteByKey(customerKey) {
// delete only works with the query's object id
const objectId = customerKey ? await this._getObjectIdForSingleRetrieve(customerKey) : null;
if (!objectId) {
Util.logger.error(` - query not found`);
return false;
}
return super.deleteByKeyREST('/automation/v1/queries/' + objectId, customerKey);
}
/**
* clean up after deleting a metadata item
*
* @param {string} customerKey Identifier of metadata item
* @returns {void}
*/
static async postDeleteTasks(customerKey) {
// delete local copy: retrieve/cred/bu/.../...-meta.json
// delete local copy: retrieve/cred/bu/.../...-meta.sql
await super.postDeleteTasks(customerKey, [`${this.definition.type}-meta.sql`]);
}
/**
* Gets executed after deployment of metadata type
*
* @param {TYPE.MetadataTypeMap} upsertResults metadata mapped by their keyField as returned by update/create
*/
static async postDeployTasks(upsertResults) {
if (Util.OPTIONS.execute) {
Util.logger.info(`Executing: ${this.definition.type}`);
await this.execute(Object.keys(upsertResults));
}
}
}
// Assign definition & cache to static attributes
Query.definition = require('../MetadataTypeDefinitions').query;
module.exports = Query;