-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathstencil-push.utils.js
431 lines (430 loc) · 13.4 KB
/
stencil-push.utils.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
import * as _ from 'lodash-es';
import async from 'async';
import Inquirer from 'inquirer';
import ProgressBar from 'progress';
import uuid from 'uuid4';
import os from 'os';
import { THEME_PATH } from '../constants.js';
import Bundle from './stencil-bundle.js';
import themeApiClient from './theme-api-client.js';
import ThemeConfig from './theme-config.js';
import StencilConfigManager from './StencilConfigManager.js';
const themeConfigManager = ThemeConfig.getInstance(THEME_PATH);
const stencilConfigManager = new StencilConfigManager();
const utils = {};
const bar = new ProgressBar('Processing [:bar] :percent; ETA: :etas', {
complete: '=',
incomplete: ' ',
total: 100,
});
function validateOptions(options = {}, fields = []) {
for (const field of fields) {
if (!_.has(options, field)) {
throw new Error(`${field} is required!`);
}
}
}
utils.readStencilConfigFile = async (options) => {
try {
const config = await stencilConfigManager.read();
return { ...options, config };
} catch (err) {
err.name = 'StencilConfigReadError';
throw err;
}
};
utils.getStoreHash = async (options) => {
validateOptions(options, ['config.normalStoreUrl']);
const storeHash = await themeApiClient.getStoreHash({
storeUrl: options.config.normalStoreUrl,
});
return { ...options, storeHash };
};
utils.getThemes = async (options) => {
const {
config: { accessToken },
storeHash,
} = options;
const apiHost = options.apiHost || options.config.apiHost;
const themes = await themeApiClient.getThemes({ accessToken, apiHost, storeHash });
return { ...options, themes };
};
utils.generateBundle = async (options) => {
if (options.bundleZipPath) {
return options;
}
const output = options.saveBundleName
? { dest: THEME_PATH, name: options.saveBundleName }
: { dest: os.tmpdir(), name: uuid() };
const rawConfig = await themeConfigManager.getRawConfig();
const bundle = new Bundle(THEME_PATH, themeConfigManager, rawConfig, output);
try {
const bundleZipPath = await bundle.initBundle();
return { ...options, bundleZipPath };
} catch (err) {
err.name = 'BundleInitError';
throw err;
}
};
utils.uploadBundle = async (options) => {
const {
config: { accessToken },
bundleZipPath,
storeHash,
uploadBundleAgain,
} = options;
const apiHost = options.apiHost || options.config.apiHost;
try {
const result = await themeApiClient.postTheme({
accessToken,
apiHost,
bundleZipPath,
storeHash,
uploadBundleAgain,
});
return {
...options,
jobId: result.jobId,
themeLimitReached: !!result.themeLimitReached,
};
} catch (err) {
err.name = 'ThemeUploadError';
throw err;
}
};
utils.notifyUserOfThemeLimitReachedIfNecessary = async (options) => {
if (options.themeLimitReached && !options.deleteOldest) {
console.log(
'warning'.yellow +
' -- You have reached your upload limit. ' +
"In order to proceed, you'll need to delete at least one theme.",
);
}
return options;
};
utils.promptUserToDeleteThemesIfNecessary = async (options) => {
if (!options.themeLimitReached) {
return options;
}
if (options.deleteOldest) {
const oldestTheme = options.themes
.filter((theme) => theme.is_private && !theme.is_active)
.map((theme) => ({
uuid: theme.uuid,
updated_at: new Date(theme.updated_at).valueOf(),
}))
.reduce((prev, current) => (prev.updated_at < current.updated_at ? prev : current));
return { ...options, themeIdsToDelete: [oldestTheme.uuid] };
}
const questions = [
{
choices: options.themes.map((theme) => ({
disabled: theme.is_active || !theme.is_private,
name: theme.name,
value: theme.uuid,
})),
message: 'Which theme(s) would you like to delete?',
name: 'themeIdsToDelete',
type: 'checkbox',
validate: (val) => {
if (val.length > 0) {
return true;
}
return 'You must delete at least one theme';
},
},
];
const answers = await Inquirer.prompt(questions);
return { ...options, ...answers };
};
utils.deleteThemesIfNecessary = async (options) => {
const {
config: { accessToken },
storeHash,
themeLimitReached,
themeIdsToDelete,
} = options;
const apiHost = options.apiHost || options.config.apiHost;
if (!themeLimitReached) {
return options;
}
try {
const promises = themeIdsToDelete.map((themeId) =>
themeApiClient.deleteThemeById({ accessToken, apiHost, storeHash, themeId }),
);
await Promise.all(promises);
} catch (err) {
err.name = 'ThemeDeletionError';
throw err;
}
return options;
};
utils.checkIfDeletionIsComplete = () => {
return async.retryable(
{
interval: 1000,
errorFilter: (err) => {
if (err.message === 'ThemeStillExists') {
console.log(`${'warning'.yellow} -- Theme still exists;Retrying ...`);
return true;
}
return false;
},
times: 5,
},
utils.checkIfThemeIsDeleted(),
);
};
utils.checkIfThemeIsDeleted = () => async (options) => {
const {
themeLimitReached,
config: { accessToken },
storeHash,
themeIdsToDelete,
} = options;
if (!themeLimitReached) {
return options;
}
const apiHost = options.apiHost || options.config.apiHost;
const result = await themeApiClient.getThemes({ accessToken, apiHost, storeHash });
const themeStillExists = result.some((theme) => themeIdsToDelete.includes(theme.uuid));
if (themeStillExists) {
throw new Error('ThemeStillExists');
}
return options;
};
utils.uploadBundleAgainIfNecessary = async (options) => {
if (!options.themeLimitReached) {
return options;
}
return utils.uploadBundle({ ...options, uploadThemeAgain: true });
};
utils.notifyUserOfThemeUploadCompletion = async (options) => {
console.log(`${'ok'.green} -- Theme Upload Finished`);
return options;
};
utils.markJobProgressPercentage = (percentComplete) => {
bar.update(percentComplete / 100);
};
utils.markJobComplete = () => {
utils.markJobProgressPercentage(100);
console.log(`${'ok'.green} -- Theme Processing Finished`);
};
utils.pollForJobCompletion = (resultFilter) => {
return async.retryable(
{
interval: 1000,
errorFilter: (err) => {
if (err.name === 'JobCompletionStatusCheckPendingError') {
utils.markJobProgressPercentage(err.message);
return true;
}
return false;
},
times: Number.POSITIVE_INFINITY,
},
utils.checkIfJobIsComplete(resultFilter),
);
};
utils.checkIfJobIsComplete = (resultFilter) => async (options) => {
const {
config: { accessToken },
storeHash,
bundleZipPath,
jobId,
} = options;
const apiHost = options.apiHost || options.config.apiHost;
const result = await themeApiClient.getJob({
accessToken,
apiHost,
storeHash,
bundleZipPath,
jobId,
resultFilter,
});
utils.markJobComplete();
return { ...options, ...result };
};
utils.promptUserWhetherToApplyTheme = async (options) => {
if (options.activate) {
return { ...options, applyTheme: true };
}
const questions = [
{
type: 'confirm',
name: 'applyTheme',
message: `Would you like to apply your theme to your store?`,
default: false,
},
];
const answers = await Inquirer.prompt(questions);
return { ...options, ...answers };
};
utils.getChannels = async (options) => {
const {
config: { accessToken },
channelId,
channelIds,
storeHash,
applyTheme,
} = options;
const apiHost = options.apiHost || options.config.apiHost;
if (!applyTheme || channelIds || channelId) {
return options;
}
const channels = await themeApiClient.getStoreChannels({
accessToken,
apiHost,
storeHash,
});
return { ...options, channels };
};
utils.getVariations = async (options) => {
const {
config: { accessToken },
storeHash,
themeId,
applyTheme,
activate,
} = options;
const apiHost = options.apiHost || options.config.apiHost;
if (!applyTheme) {
return options;
}
const variations = await themeApiClient.getVariationsByThemeId({
accessToken,
apiHost,
themeId,
storeHash,
});
// Activate the default variation
if (activate === true) {
return { ...options, variationId: variations[0].uuid };
}
// Activate the specified variation
if (activate !== undefined) {
const foundVariation = variations.find((item) => item.name === activate);
if (!foundVariation || !foundVariation.uuid) {
const availableOptionsStr = variations.map((item) => `${item.name}`).join(', ');
throw new Error(
`Invalid theme variation provided! Available options: ${availableOptionsStr}.`,
);
}
return { ...options, variationId: foundVariation.uuid };
}
// Didn't specify a variation explicitly, will ask the user later
return { ...options, variations };
};
utils.promptUserForChannels = async (options) => {
const { applyTheme, channelIds, channels, allChannels } = options;
if (!applyTheme || channelIds) {
return options;
}
if (allChannels) {
const allIds = channels.map((chanel) => chanel.channel_id);
return { ...options, channelIds: allIds };
}
const selectedChannelIds = await utils.promptUserToSelectChannels(channels);
return { ...options, channelIds: selectedChannelIds };
};
utils.promptUserToSelectChannels = async (channels) => {
if (channels.length < 2) {
return [channels[0].channel_id];
}
const questions = [
{
type: 'checkbox',
name: 'channelIds',
message: 'Which channel(s) would you like to use?',
choices: channels.map((channel) => ({
name: channel.url,
value: channel.channel_id,
})),
},
];
const answer = await Inquirer.prompt(questions);
return answer.channelIds;
};
utils.promptUserForChannel = async (options) => {
const { applyTheme, channelId, channels } = options;
if (!applyTheme || channelId) {
return options;
}
const selectedChannelId = await utils.promptUserToSelectChannel(channels);
return { ...options, channelId: selectedChannelId };
};
utils.promptUserToSelectChannel = async (channels) => {
if (channels.length < 2) {
return channels[0].channel_id;
}
const questions = [
{
type: 'list',
name: 'channelId',
message: 'Which channel would you like to use?',
choices: channels.map((channel) => ({
name: `${channel.url} [${channel.channel_id}] `,
value: channel.channel_id,
})),
},
];
const answer = await Inquirer.prompt(questions);
return answer.channelId;
};
utils.promptUserForVariation = async (options) => {
if (!options.applyTheme || options.variationId) {
return options;
}
const questions = [
{
type: 'list',
name: 'variationId',
message: 'Which variation would you like to apply?',
choices: options.variations.map((variation) => ({
name: variation.name,
value: variation.uuid,
})),
},
];
const answers = await Inquirer.prompt(questions);
return { ...options, ...answers };
};
utils.requestToApplyVariationWithRetrys = () => {
return async.retryable(
{
interval: 1000,
errorFilter: (err) => {
if (err.name === 'VariationActivationTimeoutError') {
console.log(`${'warning'.yellow} -- Theme Activation Timed Out; Retrying...`);
return true;
}
return false;
},
times: 3,
},
utils.requestToApplyVariation,
);
};
utils.requestToApplyVariation = async (options) => {
const {
config: { accessToken },
storeHash,
variationId,
channelIds,
} = options;
const apiHost = options.apiHost || options.config.apiHost;
if (options.applyTheme) {
await themeApiClient.activateThemeByVariationId({
variationId,
channelIds,
apiHost,
storeHash,
accessToken,
});
}
return options;
};
utils.notifyUserOfCompletion = (options, callback) => {
callback(null, `Stencil Push Finished. Variation ID: ${options.variationId}`);
};
export default utils;