-
Notifications
You must be signed in to change notification settings - Fork 36
/
TransactionalSMS.js
359 lines (340 loc) · 14.3 KB
/
TransactionalSMS.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
'use strict';
import TransactionalMessage from './TransactionalMessage.js';
import { Util } from '../util/util.js';
import File from '../util/file.js';
import cache from '../util/cache.js';
/**
* @typedef {import('../../types/mcdev.d.js').BuObject} BuObject
* @typedef {import('../../types/mcdev.d.js').CodeExtract} CodeExtract
* @typedef {import('../../types/mcdev.d.js').CodeExtractItem} CodeExtractItem
* @typedef {import('../../types/mcdev.d.js').MetadataTypeItem} MetadataTypeItem
* @typedef {import('../../types/mcdev.d.js').MetadataTypeItemDiff} MetadataTypeItemDiff
* @typedef {import('../../types/mcdev.d.js').MetadataTypeItemObj} MetadataTypeItemObj
* @typedef {import('../../types/mcdev.d.js').MetadataTypeMap} MetadataTypeMap
* @typedef {import('../../types/mcdev.d.js').MetadataTypeMapObj} MetadataTypeMapObj
* @typedef {import('../../types/mcdev.d.js').SoapRequestParams} SoapRequestParams
* @typedef {import('../../types/mcdev.d.js').TemplateMap} TemplateMap
*/
/**
* TransactionalSMS MetadataType
*
* @augments TransactionalMessage
*/
class TransactionalSMS extends TransactionalMessage {
static subType = 'sms';
/**
* clean up after deleting a metadata item
*
* @param {string} customerKey Identifier of metadata item
* @returns {Promise.<void>} -
*/
static async postDeleteTasks(customerKey) {
// delete local copy: retrieve/cred/bu/type/...-meta.json
// delete local copy: retrieve/cred/bu/type/...-meta.amp
return super.postDeleteTasks(customerKey, [`${this.definition.type}-meta.amp`]);
}
/**
* prepares for deployment
*
* @param {MetadataTypeItem} metadata a single item
* @param {string} deployDir directory of deploy files
* @returns {Promise.<MetadataTypeItem>} Promise
*/
static async preDeployTasks(metadata, deployDir) {
// code
metadata.content = {
message: await this._mergeCode(metadata, deployDir),
};
if (this._isHTML(metadata.content?.message)) {
// keep this as a non-blocking warning because the test not 100% accurate
Util.logger.warn(
` - ${this.definition.type} ${metadata[this.definition.nameField]} (${
metadata[this.definition.keyField]
}): HTML detected`
);
}
// subscriptions: mobileKeyword
if (metadata.subscriptions?.r__mobileKeyword_key) {
// we merely want to be able to show an error if it does not exist
cache.searchForField(
'mobileKeyword',
metadata.subscriptions.r__mobileKeyword_key,
'c__codeKeyword',
'c__codeKeyword'
);
const codeKeywordArr = metadata.subscriptions.r__mobileKeyword_key.split('.');
metadata.subscriptions.shortCode = codeKeywordArr[0];
metadata.subscriptions.keyword = codeKeywordArr[1];
// make sure the code actually exists
cache.searchForField('mobileCode', metadata.subscriptions.shortCode, 'code', 'code');
} else if (metadata.subscriptions?.r__mobileCode_key) {
// subscriptions: mobileCode
// in case we dont have r__mobileKeyword_key set
metadata.subscriptions.shortCode = cache.searchForField(
'mobileCode',
metadata.subscriptions.r__mobileCode_key,
'code',
'code'
);
}
delete metadata.subscriptions.r__mobileKeyword_key;
delete metadata.subscriptions.r__mobileCode_key;
return metadata;
}
/**
* helper for {@link TransactionalSMS.preDeployTasks} that loads extracted code content back into JSON
*
* @param {MetadataTypeItem} metadata a single definition
* @param {string} deployDir directory of deploy files
* @param {string} [templateName] name of the template used to built defintion (prior applying templating)
* @returns {Promise.<string>} content for metadata.script
*/
static async _mergeCode(metadata, deployDir, templateName) {
templateName ||= metadata[this.definition.keyField];
const codePath = File.normalizePath([
deployDir,
this.definition.type,
templateName + '.' + this.definition.type + '-meta',
]);
if (await File.pathExists(codePath + '.amp')) {
return await File.readFilteredFilename(
[deployDir, this.definition.type],
templateName + '.' + this.definition.type + '-meta',
'amp'
);
} else {
throw new Error(`Could not find ${codePath}.amp`);
}
}
/**
* manages post retrieve steps
*
* @param {MetadataTypeItem} metadata a single item
* @returns {Promise.<CodeExtractItem>} Array with one metadata object and one ssjs string
*/
static async postRetrieveTasks(metadata) {
// extract message body
const codeArr = [];
// keep between tags
const { fileExt, code } = await this.prepExtractedCode(metadata.content?.message);
delete metadata.content;
codeArr.push({
subFolder: null,
fileName: metadata[this.definition.keyField],
fileExt: fileExt,
content: code,
});
if (this._isHTML(code)) {
Util.logger.warn(
` - ${this.definition.type} ${metadata[this.definition.nameField]} (${
metadata[this.definition.keyField]
}): HTML detected`
);
}
// subscriptions: mobileCode
if (metadata.subscriptions?.shortCode) {
try {
// we merely want to be able to show a warning if it does not exist
cache.searchForField(
'mobileCode',
metadata.subscriptions.shortCode,
'code',
'code'
);
metadata.subscriptions.r__mobileCode_key = metadata.subscriptions.shortCode;
delete metadata.subscriptions.shortCode;
} catch {
Util.logger.warn(
` - ${this.definition.type} ${metadata[this.definition.nameField]} (${
metadata[this.definition.keyField]
}): Could not find mobileCode ${metadata.subscriptions.shortCode}.`
);
}
// subscriptions: mobileKeyword
if (metadata.subscriptions?.keyword) {
try {
// we merely want to be able to show a warning if it does not exist
metadata.subscriptions.r__mobileKeyword_key = cache.searchForField(
'mobileKeyword',
(metadata.subscriptions.shortCode ||
metadata.subscriptions.r__mobileCode_key) +
'.' +
metadata.subscriptions.keyword,
'c__codeKeyword',
'c__codeKeyword'
);
delete metadata.subscriptions.r__mobileCode_key;
delete metadata.subscriptions.shortCode;
delete metadata.subscriptions.keyword;
} catch {
Util.logger.warn(
` - ${this.definition.type} ${metadata[this.definition.nameField]} (${
metadata[this.definition.keyField]
}): Could not find mobileKeyword ${metadata.subscriptions.keyword}.`
);
}
}
}
return { json: metadata, codeArr: codeArr, subFolder: null };
}
/**
* helper for {@link TransactionalSMS.postRetrieveTasks} and {@link TransactionalSMS._buildForNested}
*
* @param {string} metadataScript the code of the file
* @returns {Promise.<{fileExt:string,code:string}>} returns found extension and file content
*/
static async prepExtractedCode(metadataScript) {
const code = await File.beautify_beautyAmp(metadataScript, false);
const fileExt = 'amp';
return { fileExt, code };
}
/**
* helper for {@link TransactionalMessage.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 {MetadataTypeItem} metadata main JSON file that was read from file system
* @param {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 TransactionalMessage.buildTemplate}
* handles extracted code if any are found for complex types
*
* @example scripts are saved as 1 json and 1 ssjs 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 {MetadataTypeItem} metadata main JSON file that was read from file system
* @param {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 TransactionalSMS.buildTemplateForNested} / {@link TransactionalSMS.buildDefinitionForNested}
* 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 {MetadataTypeItem} metadata main JSON file that was read from file system
* @param {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 code from filesystem
let code = await this._mergeCode(metadata, templateDir, templateName);
const file = await this.prepExtractedCode(code);
const fileExt = file.fileExt;
code = file.code;
// apply templating
try {
if (mode === 'definition') {
// replace template variables with their values
code = this.applyTemplateValues(code, templateVariables);
} else if (mode === 'template') {
// replace template values with corresponding variable names
code = this.applyTemplateNames(code, templateVariables);
}
} catch {
throw new Error(
`${this.definition.type}:: Error applying template variables on ${
templateName + '.' + this.definition.type
}-meta.${fileExt}.`
);
}
// 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',
fileExt,
code
);
nestedFilePaths.push([
targetDir,
this.definition.type,
fileName + '.' + this.definition.type + '-meta.' + fileExt,
]);
}
return nestedFilePaths;
}
/**
* very simplified test for HTML code in our SMS
*
* @param {string} code sms source code
* @returns {boolean} true if HTML is found
*/
static _isHTML(code) {
return /(<([^>]+)>)/gi.test(code);
}
/**
* 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 {Promise.<string[]>} list of all files that need to be committed in a flat array ['path/file1.ext', 'path/file2.ext']
*/
static async 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.amp`]),
]);
return fileList;
}
}
// Assign definition to static attributes
import MetadataTypeDefinitions from '../MetadataTypeDefinitions.js';
TransactionalSMS.definition = MetadataTypeDefinitions.transactionalSMS;
export default TransactionalSMS;