-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathTransactionalSMS.js
346 lines (328 loc) · 12.8 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
'use strict';
const TYPE = require('../../types/mcdev.d');
const TransactionalMessage = require('./TransactionalMessage');
const Util = require('../util/util');
const File = require('../util/file');
const beautifier = require('beauty-amp-core');
const cache = require('../util/cache');
/**
* 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 {void}
*/
static async postDeleteTasks(customerKey) {
// delete local copy: retrieve/cred/bu/type/...-meta.json
// delete local copy: retrieve/cred/bu/type/...-meta.amp
super.postDeleteTasks(customerKey, [`${this.definition.type}-meta.amp`]);
}
/**
* prepares for deployment
*
* @param {TYPE.MetadataTypeItem} metadata a single item
* @param {string} deployDir directory of deploy files
* @returns {Promise.<TYPE.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: mobileCode
if (metadata.subscriptions?.shortCode) {
// we merely want to be able to show an error if it does not exist
cache.searchForField('mobileCode', metadata.subscriptions.shortCode, 'code', 'code');
}
// subscriptions: mobileKeyword
if (metadata.subscriptions?.keyword) {
// we merely want to be able to show an error if it does not exist
cache.searchForField(
'mobileKeyword',
metadata.subscriptions.shortCode + '.' + metadata.subscriptions.keyword,
'c__codeKeyword',
'id'
);
}
return metadata;
}
/**
* helper for {@link preDeployTasks} that loads extracted code content back into JSON
*
* @param {TYPE.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 {TYPE.MetadataTypeItem} metadata a single item
* @returns {TYPE.CodeExtractItem} Array with one metadata object and one ssjs string
*/
static postRetrieveTasks(metadata) {
// extract message body
const codeArr = [];
// keep between tags
const { fileExt, code } = 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'
);
} 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
cache.searchForField(
'mobileKeyword',
metadata.subscriptions.shortCode + '.' + metadata.subscriptions.keyword,
'keyword',
'id'
);
} 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 parseMetadata} and {@link _buildForNested}
*
* @param {string} metadataScript the code of the file
* @returns {{fileExt:string,code:string}} returns found extension and file content
*/
static prepExtractedCode(metadataScript) {
// immutable at the moment:
const ampscript = {
capitalizeAndOrNot: true,
capitalizeIfFor: true,
capitalizeSet: true,
capitalizeVar: true,
maxParametersPerLine: 4,
};
// immutable at the moment:
const editor = {
insertSpaces: true,
tabSize: 4,
};
// logs trough console only for the moment.
const logs = {
loggerOn: false, // <= disable logging
};
beautifier.setup(ampscript, editor, logs);
const code = beautifier.beautify(metadataScript);
const fileExt = 'amp';
return { fileExt, code };
}
/**
* 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.MetadataTypeItem} 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 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 {TYPE.MetadataTypeItem} 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 buildTemplateForNested} / {@link 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 {TYPE.MetadataTypeItem} 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 code from filesystem
let code = await this._mergeCode(metadata, templateDir, templateName);
const file = this.prepExtractedCode(code, metadata.name);
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 {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.amp`]),
]);
return fileList;
}
}
// Assign definition to static attributes
TransactionalSMS.definition = require('../MetadataTypeDefinitions').transactionalSMS;
module.exports = TransactionalSMS;