@automattic/vip 3.19.2 → 3.19.3-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/vip-dev-env-sync-sql.js +23 -2
- package/dist/bin/vip-export-sql.js +24 -2
- package/dist/commands/dev-env-sync-sql.js +10 -12
- package/dist/commands/export-sql.js +140 -71
- package/dist/lib/backup-storage-availability/backup-storage-availability.js +20 -30
- package/dist/lib/http/download-file.js +46 -0
- package/dist/lib/live-backup-copy.js +149 -0
- package/dist/lib/utils.js +13 -13
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ var _devEnvSyncSql = require("../commands/dev-env-sync-sql");
|
|
|
5
5
|
var _command = _interopRequireDefault(require("../lib/cli/command"));
|
|
6
6
|
var _devEnvironmentCli = require("../lib/dev-environment/dev-environment-cli");
|
|
7
7
|
var _devEnvironmentLando = require("../lib/dev-environment/dev-environment-lando");
|
|
8
|
+
var _liveBackupCopy = require("../lib/live-backup-copy");
|
|
8
9
|
var _tracker = require("../lib/tracker");
|
|
9
10
|
var _userError = _interopRequireDefault(require("../lib/user-error"));
|
|
10
11
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
@@ -12,6 +13,21 @@ const usage = 'vip dev-env sync sql';
|
|
|
12
13
|
const examples = [{
|
|
13
14
|
usage: `vip @example-app.develop dev-env sync sql --slug=example-site`,
|
|
14
15
|
description: 'Sync the database of the develop environment in the "example-app" application to a local environment named "example-site".'
|
|
16
|
+
}, {
|
|
17
|
+
usage: `vip @example-app.develop dev-env sync sql --slug=example-site --table=wp_posts --table=wp_comments`,
|
|
18
|
+
description: 'Sync only the wp_posts and wp_comments tables from the database of the develop environment in the "example-app" application to a local environment named "example-site".'
|
|
19
|
+
}, {
|
|
20
|
+
usage: `vip @example-app.develop dev-env sync sql --slug=example-site --table=wp_posts,wp_comments`,
|
|
21
|
+
description: 'Sync only the wp_posts and wp_comments tables using comma-separated syntax from the database of the develop environment in the "example-app" application to a local environment named "example-site".'
|
|
22
|
+
}, {
|
|
23
|
+
usage: `vip @example-app.develop dev-env sync sql --slug=example-site --subsite-id=2 --subsite-id=3`,
|
|
24
|
+
description: 'Sync only the tables for the subsites with IDs 2 and 3 from the database of the develop environment in the "example-app" application to a local environment named "example-site".'
|
|
25
|
+
}, {
|
|
26
|
+
usage: `vip @example-app.develop dev-env sync sql --slug=example-site --subsite-id=2,3`,
|
|
27
|
+
description: 'Sync only the tables for the subsites with IDs 2 and 3 using comma-separated syntax from the database of the develop environment in the "example-app" application to a local environment named "example-site".'
|
|
28
|
+
}, {
|
|
29
|
+
usage: `vip @example-app.develop dev-env sync sql --slug=example-site --config-file=~/dev-env-sync-config.json`,
|
|
30
|
+
description: 'Use the specified config file to determine what to sync from the database of the develop environment in the "example-app" application to a local environment named "example-site".'
|
|
15
31
|
}];
|
|
16
32
|
const appQuery = `
|
|
17
33
|
id,
|
|
@@ -42,12 +58,17 @@ const appQuery = `
|
|
|
42
58
|
requiredArgs: 0,
|
|
43
59
|
module: 'dev-env-sync-sql',
|
|
44
60
|
usage
|
|
45
|
-
}).option('slug', 'A unique name for a local environment. Default is "vip-local".', undefined, _devEnvironmentCli.processSlug).option('force', 'Skip validations.', undefined, _devEnvironmentCli.processBooleanOption).examples(examples).argv(process.argv, async (arg, opt) => {
|
|
61
|
+
}).option('slug', 'A unique name for a local environment. Default is "vip-local".', undefined, _devEnvironmentCli.processSlug).option('table', 'A table to sync from the remote environment to the local environment. Multiple tables can be specified with multiple --table flags or as a comma-separated list.').option('subsite-id', 'The ID of a subsite/network site to sync from the remote environment to the local environment. Multiple subsite IDs can be specified with multiple --subsite-id flags or as a comma-separated list.').option('wpcli-command', 'The WP-CLI command to run on the remote environment to retrieve the database export configuration.').option('config-file', 'The backup copy config file to use for the sync.', undefined).option('force', 'Skip validations.', undefined, _devEnvironmentCli.processBooleanOption).examples(examples).argv(process.argv, async (arg, opt) => {
|
|
46
62
|
const {
|
|
47
63
|
app,
|
|
48
64
|
env,
|
|
65
|
+
configFile,
|
|
66
|
+
table,
|
|
67
|
+
subsiteId,
|
|
68
|
+
wpcliCommand,
|
|
49
69
|
...optRest
|
|
50
70
|
} = opt;
|
|
71
|
+
const liveBackupCopyCLIOptions = (0, _liveBackupCopy.parseLiveBackupCopyCLIOptions)(configFile, table, subsiteId, wpcliCommand);
|
|
51
72
|
const slug = await (0, _devEnvironmentCli.getEnvironmentName)(optRest);
|
|
52
73
|
const trackerFn = (0, _tracker.makeCommandTracker)('dev_env_sync_sql', {
|
|
53
74
|
app: app.id,
|
|
@@ -64,7 +85,7 @@ const appQuery = `
|
|
|
64
85
|
});
|
|
65
86
|
throw new _userError.default('Environment needs to be started first');
|
|
66
87
|
}
|
|
67
|
-
const cmd = new _devEnvSyncSql.DevEnvSyncSQLCommand(app, env, slug, lando, trackerFn);
|
|
88
|
+
const cmd = new _devEnvSyncSql.DevEnvSyncSQLCommand(app, env, slug, lando, trackerFn, liveBackupCopyCLIOptions);
|
|
68
89
|
// TODO: There's a function called handleCLIException for dev-env that handles exceptions but DevEnvSyncSQLCommand has its own implementation.
|
|
69
90
|
// We should probably use handleCLIException instead?
|
|
70
91
|
const didCommandRun = await cmd.run();
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
var _exportSql = require("../commands/export-sql");
|
|
5
5
|
var _command = _interopRequireDefault(require("../lib/cli/command"));
|
|
6
|
+
var _liveBackupCopy = require("../lib/live-backup-copy");
|
|
6
7
|
var _tracker = require("../lib/tracker");
|
|
7
8
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
8
9
|
const examples = [{
|
|
@@ -14,6 +15,21 @@ const examples = [{
|
|
|
14
15
|
}, {
|
|
15
16
|
usage: 'vip @example-app.develop export sql --generate-backup',
|
|
16
17
|
description: 'Generate a fresh database backup for an environment and download a copy of that backup.'
|
|
18
|
+
}, {
|
|
19
|
+
usage: 'vip @example-app.develop export sql --table=wp_posts --table=wp_comments',
|
|
20
|
+
description: 'Generate a database backup including only the wp_posts and wp_comments tables, and download a copy of that backup.'
|
|
21
|
+
}, {
|
|
22
|
+
usage: 'vip @example-app.develop export sql --table=wp_posts,wp_comments',
|
|
23
|
+
description: 'Generate a database backup including only the wp_posts and wp_comments tables using comma-separated syntax, and download a copy of that backup.'
|
|
24
|
+
}, {
|
|
25
|
+
usage: 'vip @example-app.develop export sql --subsite-id=2 --subsite-id=3',
|
|
26
|
+
description: 'Generate a database backup including only the tables related to the subsites with IDs 2 and 3, and download a copy of that backup.'
|
|
27
|
+
}, {
|
|
28
|
+
usage: 'vip @example-app.develop export sql --subsite-id=2,3',
|
|
29
|
+
description: 'Generate a database backup including only the tables related to the subsites with IDs 2 and 3 using comma-separated syntax, and download a copy of that backup.'
|
|
30
|
+
}, {
|
|
31
|
+
usage: 'vip @example-app.develop export sql --config-file=~/db-export-config.json',
|
|
32
|
+
description: 'Generate a database backup using the specified config file, and download a copy of that backup.'
|
|
17
33
|
}];
|
|
18
34
|
const appQuery = `
|
|
19
35
|
id,
|
|
@@ -36,10 +52,14 @@ const appQuery = `
|
|
|
36
52
|
module: 'export-sql',
|
|
37
53
|
requiredArgs: 0,
|
|
38
54
|
usage: 'vip export sql'
|
|
39
|
-
}).option('output', 'Download the file to a specific local directory path with a custom file name.').option('generate-backup', 'Generate a fresh database backup and export a copy of that backup.').examples(examples).argv(process.argv, async (arg, {
|
|
55
|
+
}).option('output', 'Download the file to a specific local directory path with a custom file name.').option('table', 'A table to export from the remote environment. Multiple tables can be specified with multiple --table flags or as a comma-separated list.').option('subsite-id', 'The ID of a subsite/network site to export from the remote environment. Multiple subsite IDs can be specified with multiple --subsite-id flags or as a comma-separated list.').option('wpcli-command', 'The WP-CLI command to run on the remote environment to retrieve the database export configuration.').option('config-file', 'The backup copy config file to use for the export.', undefined).option('generate-backup', 'Generate a fresh database backup and export a copy of that backup.').examples(examples).argv(process.argv, async (arg, {
|
|
40
56
|
app,
|
|
41
57
|
env,
|
|
42
58
|
output,
|
|
59
|
+
configFile,
|
|
60
|
+
table,
|
|
61
|
+
subsiteId,
|
|
62
|
+
wpcliCommand,
|
|
43
63
|
generateBackup
|
|
44
64
|
}) => {
|
|
45
65
|
const trackerFn = (0, _tracker.makeCommandTracker)('export_sql', {
|
|
@@ -48,9 +68,11 @@ const appQuery = `
|
|
|
48
68
|
generate_backup: generateBackup
|
|
49
69
|
});
|
|
50
70
|
await trackerFn('execute');
|
|
71
|
+
const liveBackupCopyCLIOptions = (0, _liveBackupCopy.parseLiveBackupCopyCLIOptions)(configFile, table, subsiteId, wpcliCommand);
|
|
51
72
|
const exportCommand = new _exportSql.ExportSQLCommand(app, env, {
|
|
52
73
|
outputFile: output,
|
|
53
|
-
generateBackup
|
|
74
|
+
generateBackup,
|
|
75
|
+
liveBackupCopyCLIOptions
|
|
54
76
|
}, trackerFn);
|
|
55
77
|
await exportCommand.run();
|
|
56
78
|
await trackerFn('success');
|
|
@@ -87,30 +87,27 @@ class DevEnvSyncSQLCommand {
|
|
|
87
87
|
tmpDir;
|
|
88
88
|
siteUrls = [];
|
|
89
89
|
searchReplaceMap = {};
|
|
90
|
+
liveBackupCopyCLIOptions;
|
|
90
91
|
_track;
|
|
91
92
|
_sqlDumpType;
|
|
92
93
|
|
|
93
94
|
/**
|
|
94
95
|
* Creates a new instance of the command
|
|
95
|
-
*
|
|
96
|
-
* @param app The app object
|
|
97
|
-
* @param env The environment object
|
|
98
|
-
* @param slug The site slug
|
|
99
|
-
* @param lando The lando object
|
|
100
|
-
* @param trackerFn Function to call for tracking
|
|
101
96
|
*/
|
|
102
|
-
constructor(app, env, slug, lando, trackerFn = () => {}) {
|
|
97
|
+
constructor(app, env, slug, lando, trackerFn = () => {}, liveBackupCopyCLIOptions) {
|
|
103
98
|
this.app = app;
|
|
104
99
|
this.env = env;
|
|
105
100
|
this.slug = slug;
|
|
106
101
|
this.lando = lando;
|
|
107
102
|
this._track = trackerFn;
|
|
108
103
|
this.tmpDir = (0, _utils.makeTempDir)();
|
|
104
|
+
this.liveBackupCopyCLIOptions = liveBackupCopyCLIOptions;
|
|
109
105
|
}
|
|
110
106
|
track(name, eventProps) {
|
|
111
107
|
return this._track(name, {
|
|
112
108
|
...eventProps,
|
|
113
|
-
sqldump_type: this._sqlDumpType
|
|
109
|
+
sqldump_type: this._sqlDumpType,
|
|
110
|
+
live_backup_copy: this.liveBackupCopyCLIOptions?.useLiveBackupCopy
|
|
114
111
|
});
|
|
115
112
|
}
|
|
116
113
|
get landoDomain() {
|
|
@@ -132,9 +129,9 @@ class DevEnvSyncSQLCommand {
|
|
|
132
129
|
const dumpDetails = await (0, _database.getSqlDumpDetails)(this.sqlFile);
|
|
133
130
|
this._sqlDumpType = dumpDetails.type;
|
|
134
131
|
}
|
|
135
|
-
async confirmEnoughStorage(
|
|
136
|
-
const storageAvailability = _backupStorageAvailability.BackupStorageAvailability
|
|
137
|
-
return await storageAvailability.validateAndPromptDiskSpaceWarningForDevEnvBackupImport();
|
|
132
|
+
async confirmEnoughStorage(archiveSize) {
|
|
133
|
+
const storageAvailability = new _backupStorageAvailability.BackupStorageAvailability();
|
|
134
|
+
return await storageAvailability.validateAndPromptDiskSpaceWarningForDevEnvBackupImport(archiveSize);
|
|
138
135
|
}
|
|
139
136
|
|
|
140
137
|
/**
|
|
@@ -144,7 +141,8 @@ class DevEnvSyncSQLCommand {
|
|
|
144
141
|
async generateExport() {
|
|
145
142
|
const exportCommand = new _exportSql.ExportSQLCommand(this.app, this.env, {
|
|
146
143
|
outputFile: this.gzFile,
|
|
147
|
-
confirmEnoughStorageHook: this.confirmEnoughStorage.bind(this)
|
|
144
|
+
confirmEnoughStorageHook: this.confirmEnoughStorage.bind(this),
|
|
145
|
+
liveBackupCopyCLIOptions: this.liveBackupCopyCLIOptions
|
|
148
146
|
}, this.track.bind(this));
|
|
149
147
|
await exportCommand.run();
|
|
150
148
|
}
|
|
@@ -5,7 +5,6 @@ exports.GENERATE_DOWNLOAD_LINK_MUTATION = exports.ExportSQLCommand = exports.CRE
|
|
|
5
5
|
var _chalk = _interopRequireDefault(require("chalk"));
|
|
6
6
|
var _fs = _interopRequireDefault(require("fs"));
|
|
7
7
|
var _graphqlTag = _interopRequireDefault(require("graphql-tag"));
|
|
8
|
-
var _https = _interopRequireDefault(require("https"));
|
|
9
8
|
var _path = _interopRequireDefault(require("path"));
|
|
10
9
|
var _backupDb = require("./backup-db");
|
|
11
10
|
var _api = _interopRequireWildcard(require("../lib/api"));
|
|
@@ -13,6 +12,9 @@ var _backupStorageAvailability = require("../lib/backup-storage-availability/bac
|
|
|
13
12
|
var exit = _interopRequireWildcard(require("../lib/cli/exit"));
|
|
14
13
|
var _format = require("../lib/cli/format");
|
|
15
14
|
var _progress = require("../lib/cli/progress");
|
|
15
|
+
var _downloadFile = require("../lib/http/download-file");
|
|
16
|
+
var _liveBackupCopy = _interopRequireWildcard(require("../lib/live-backup-copy"));
|
|
17
|
+
var liveBackupCopy = _liveBackupCopy;
|
|
16
18
|
var _retry = require("../lib/retry");
|
|
17
19
|
var _utils = require("../lib/utils");
|
|
18
20
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
@@ -189,6 +191,8 @@ class ExportSQLCommand {
|
|
|
189
191
|
DOWNLOAD: 'download'
|
|
190
192
|
};
|
|
191
193
|
track;
|
|
194
|
+
liveBackupCopyCLIOptions;
|
|
195
|
+
showMyDumperWarning;
|
|
192
196
|
|
|
193
197
|
/**
|
|
194
198
|
* Creates an instance of SQLExportCommand
|
|
@@ -221,6 +225,8 @@ class ExportSQLCommand {
|
|
|
221
225
|
name: 'Downloading file'
|
|
222
226
|
}]);
|
|
223
227
|
this.track = trackerFn;
|
|
228
|
+
this.liveBackupCopyCLIOptions = options.liveBackupCopyCLIOptions;
|
|
229
|
+
this.showMyDumperWarning = options.showMyDumperWarning === undefined ? true : options.showMyDumperWarning;
|
|
224
230
|
}
|
|
225
231
|
|
|
226
232
|
/**
|
|
@@ -258,39 +264,6 @@ class ExportSQLCommand {
|
|
|
258
264
|
return metadata?.value?.split('/')[1];
|
|
259
265
|
}
|
|
260
266
|
|
|
261
|
-
/**
|
|
262
|
-
* Downloads the exported file
|
|
263
|
-
*
|
|
264
|
-
* @param {string} url The download URL
|
|
265
|
-
* @return {Promise} A promise which resolves to the path of the downloaded file
|
|
266
|
-
* @throws {Error} Throws an error if the download fails
|
|
267
|
-
*/
|
|
268
|
-
async downloadExportedFile(url) {
|
|
269
|
-
const filename = this.outputFile || (await this.getExportedFileName()) || 'exported.sql.gz';
|
|
270
|
-
const file = _fs.default.createWriteStream(filename);
|
|
271
|
-
return new Promise((resolve, reject) => {
|
|
272
|
-
_https.default.get(url, response => {
|
|
273
|
-
response.pipe(file);
|
|
274
|
-
const total = parseInt(response.headers['content-length'], 10);
|
|
275
|
-
let current = 0;
|
|
276
|
-
file.on('finish', () => {
|
|
277
|
-
file.close();
|
|
278
|
-
resolve(_path.default.resolve(file.path));
|
|
279
|
-
});
|
|
280
|
-
file.on('error', err => {
|
|
281
|
-
// TODO: fs.unlink runs in the background so there's a chance that the app dies before it finishes.
|
|
282
|
-
// This needs fixing.
|
|
283
|
-
_fs.default.unlink(filename, () => null);
|
|
284
|
-
reject(err);
|
|
285
|
-
});
|
|
286
|
-
response.on('data', chunk => {
|
|
287
|
-
current += chunk.length;
|
|
288
|
-
this.progressTracker.setProgress(`- ${(100 * current / total).toFixed(2)}% (${(0, _format.formatBytes)(current)}/${(0, _format.formatBytes)(total)})`);
|
|
289
|
-
});
|
|
290
|
-
});
|
|
291
|
-
});
|
|
292
|
-
}
|
|
293
|
-
|
|
294
267
|
/**
|
|
295
268
|
* Checks if the export job's preflight step is successful
|
|
296
269
|
*
|
|
@@ -328,15 +301,12 @@ class ExportSQLCommand {
|
|
|
328
301
|
console.log(noticeMessage);
|
|
329
302
|
await cmd.run(false);
|
|
330
303
|
}
|
|
331
|
-
async confirmEnoughStorage(
|
|
332
|
-
if (!job) {
|
|
333
|
-
throw new Error('confirmEnoughStorage: job is missing');
|
|
334
|
-
}
|
|
304
|
+
async confirmEnoughStorage(archiveSize) {
|
|
335
305
|
if (this.confirmEnoughStorageHook) {
|
|
336
|
-
return await this.confirmEnoughStorageHook(
|
|
306
|
+
return await this.confirmEnoughStorageHook(archiveSize);
|
|
337
307
|
}
|
|
338
|
-
const storageAvailability = _backupStorageAvailability.BackupStorageAvailability
|
|
339
|
-
return await storageAvailability.validateAndPromptDiskSpaceWarningForBackupImport();
|
|
308
|
+
const storageAvailability = new _backupStorageAvailability.BackupStorageAvailability();
|
|
309
|
+
return await storageAvailability.validateAndPromptDiskSpaceWarningForBackupImport(archiveSize);
|
|
340
310
|
}
|
|
341
311
|
|
|
342
312
|
/**
|
|
@@ -357,6 +327,66 @@ class ExportSQLCommand {
|
|
|
357
327
|
exit.withError(`Cannot write to the specified path: ${error?.message}`);
|
|
358
328
|
}
|
|
359
329
|
}
|
|
330
|
+
const filename = this.outputFile || 'exported.sql.gz';
|
|
331
|
+
this.progressTracker.stepRunning(this.steps.PREPARE);
|
|
332
|
+
this.progressTracker.startPrinting();
|
|
333
|
+
let url;
|
|
334
|
+
let size;
|
|
335
|
+
if (this.liveBackupCopyCLIOptions?.useLiveBackupCopy) {
|
|
336
|
+
const result = await this.generateLiveBackupCopy();
|
|
337
|
+
url = result.url;
|
|
338
|
+
size = result.size;
|
|
339
|
+
} else {
|
|
340
|
+
url = await this.runBackup();
|
|
341
|
+
const exportJob = await this.getExportJob();
|
|
342
|
+
if (!exportJob) {
|
|
343
|
+
throw new Error('Export job not found');
|
|
344
|
+
}
|
|
345
|
+
const bytesWrittenMeta = exportJob.metadata?.find(meta => meta?.name === 'bytesWritten');
|
|
346
|
+
if (!bytesWrittenMeta?.value) {
|
|
347
|
+
throw new Error('Export job metadata does not contain bytesWritten');
|
|
348
|
+
}
|
|
349
|
+
size = Number(bytesWrittenMeta.value);
|
|
350
|
+
}
|
|
351
|
+
const storageConfirmed = await this.progressTracker.handleContinuePrompt(async setPromptShown => {
|
|
352
|
+
const status = await this.confirmEnoughStorage(size);
|
|
353
|
+
if (status.isPromptShown) {
|
|
354
|
+
setPromptShown();
|
|
355
|
+
}
|
|
356
|
+
return status.continue;
|
|
357
|
+
});
|
|
358
|
+
if (storageConfirmed) {
|
|
359
|
+
this.progressTracker.stepSuccess(this.steps.CONFIRM_ENOUGH_STORAGE);
|
|
360
|
+
} else {
|
|
361
|
+
this.progressTracker.stepFailed(this.steps.CONFIRM_ENOUGH_STORAGE);
|
|
362
|
+
this.stopProgressTracker();
|
|
363
|
+
exit.withError('Command canceled by user.');
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
// The export file is prepared. Let's download it
|
|
367
|
+
try {
|
|
368
|
+
const onProgressCallback = (current, total) => {
|
|
369
|
+
if (total) {
|
|
370
|
+
this.progressTracker.setProgress(`- ${(100 * current / total).toFixed(2)}% (${(0, _format.formatBytes)(current)}/${(0, _format.formatBytes)(total)})`);
|
|
371
|
+
}
|
|
372
|
+
};
|
|
373
|
+
await (0, _downloadFile.downloadFile)(url, filename, onProgressCallback);
|
|
374
|
+
this.progressTracker.stepSuccess(this.steps.DOWNLOAD);
|
|
375
|
+
this.stopProgressTracker();
|
|
376
|
+
console.log(`File saved to ${filename}`);
|
|
377
|
+
} catch (err) {
|
|
378
|
+
const error = err;
|
|
379
|
+
this.progressTracker.stepFailed(this.steps.DOWNLOAD);
|
|
380
|
+
this.stopProgressTracker();
|
|
381
|
+
await this.track('error', {
|
|
382
|
+
error_type: 'download_failed',
|
|
383
|
+
error_message: error.message,
|
|
384
|
+
stack: error.stack
|
|
385
|
+
});
|
|
386
|
+
exit.withError(`Error downloading exported file: ${error.message}`);
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
async runBackup() {
|
|
360
390
|
if (this.generateBackup) {
|
|
361
391
|
await this.runBackupJob();
|
|
362
392
|
}
|
|
@@ -376,7 +406,7 @@ class ExportSQLCommand {
|
|
|
376
406
|
} else {
|
|
377
407
|
console.log(`${(0, _format.getGlyphForStatus)('success')} Backup created with timestamp ${latestBackup.createdAt}`);
|
|
378
408
|
}
|
|
379
|
-
const showMyDumperWarning = (latestBackup.sqlDumpTool ?? envSqlDumpTool) === 'mydumper';
|
|
409
|
+
const showMyDumperWarning = this.showMyDumperWarning && (latestBackup.sqlDumpTool ?? envSqlDumpTool) === 'mydumper';
|
|
380
410
|
if (showMyDumperWarning) {
|
|
381
411
|
console.warn(_chalk.default.yellow.bold('WARNING:'), _chalk.default.yellow('This is a large or complex database. The backup file for this database is generated with MyDumper. ' + 'The file can only be loaded with MyLoader. ' + 'For more information: https://github.com/mydumper/mydumper'));
|
|
382
412
|
}
|
|
@@ -406,45 +436,84 @@ class ExportSQLCommand {
|
|
|
406
436
|
exit.withError(`Error creating export job: ${error.message}`);
|
|
407
437
|
}
|
|
408
438
|
}
|
|
409
|
-
this.progressTracker.stepRunning(this.steps.PREPARE);
|
|
410
|
-
this.progressTracker.startPrinting();
|
|
411
439
|
await (0, _utils.pollUntil)(this.getExportJob.bind(this), EXPORT_SQL_PROGRESS_POLL_INTERVAL, this.isPrepared.bind(this));
|
|
412
440
|
this.progressTracker.stepSuccess(this.steps.PREPARE);
|
|
413
441
|
await (0, _utils.pollUntil)(this.getExportJob.bind(this), EXPORT_SQL_PROGRESS_POLL_INTERVAL, this.isCreated.bind(this));
|
|
414
442
|
this.progressTracker.stepSuccess(this.steps.CREATE);
|
|
415
|
-
const storageConfirmed = await this.progressTracker.handleContinuePrompt(async setPromptShown => {
|
|
416
|
-
const status = await this.confirmEnoughStorage(await this.getExportJob());
|
|
417
|
-
if (status.isPromptShown) {
|
|
418
|
-
setPromptShown();
|
|
419
|
-
}
|
|
420
|
-
return status.continue;
|
|
421
|
-
});
|
|
422
|
-
if (storageConfirmed) {
|
|
423
|
-
this.progressTracker.stepSuccess(this.steps.CONFIRM_ENOUGH_STORAGE);
|
|
424
|
-
} else {
|
|
425
|
-
this.progressTracker.stepFailed(this.steps.CONFIRM_ENOUGH_STORAGE);
|
|
426
|
-
this.stopProgressTracker();
|
|
427
|
-
exit.withError('Command canceled by user.');
|
|
428
|
-
}
|
|
429
443
|
const url = await generateDownloadLink(this.app.id, this.env.id, latestBackup.id);
|
|
430
444
|
this.progressTracker.stepSuccess(this.steps.DOWNLOAD_LINK);
|
|
431
|
-
|
|
432
|
-
|
|
445
|
+
return url;
|
|
446
|
+
}
|
|
447
|
+
async generateLiveBackupCopy() {
|
|
448
|
+
if (!this.liveBackupCopyCLIOptions) {
|
|
449
|
+
throw new Error('Configuration file is required for live backup copy.');
|
|
450
|
+
}
|
|
451
|
+
if (!this.app.id || !this.env.id) {
|
|
452
|
+
throw new Error('App ID and Environment ID are required to start live backup copy.');
|
|
453
|
+
}
|
|
454
|
+
const config = this.getLiveBackupConfigFromCLIOptions();
|
|
433
455
|
try {
|
|
434
|
-
const
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
456
|
+
const copyId = await liveBackupCopy.startLiveBackupCopy({
|
|
457
|
+
appId: this.app.id,
|
|
458
|
+
environmentId: this.env.id,
|
|
459
|
+
config
|
|
460
|
+
});
|
|
461
|
+
this.progressTracker.stepSuccess(this.steps.PREPARE);
|
|
462
|
+
this.progressTracker.stepRunning(this.steps.CREATE);
|
|
463
|
+
const result = await liveBackupCopy.getDownloadURL({
|
|
464
|
+
appId: this.app.id,
|
|
465
|
+
environmentId: this.env.id,
|
|
466
|
+
copyId
|
|
467
|
+
});
|
|
468
|
+
this.progressTracker.stepSuccess(this.steps.CREATE);
|
|
469
|
+
this.progressTracker.stepSuccess(this.steps.DOWNLOAD_LINK);
|
|
470
|
+
return result;
|
|
438
471
|
} catch (err) {
|
|
439
|
-
const
|
|
440
|
-
this.progressTracker.stepFailed(this.steps.DOWNLOAD);
|
|
441
|
-
this.stopProgressTracker();
|
|
472
|
+
const message = err instanceof Error ? err.message : 'Unknown error';
|
|
442
473
|
await this.track('error', {
|
|
443
|
-
error_type: '
|
|
444
|
-
error_message:
|
|
445
|
-
stack:
|
|
474
|
+
error_type: 'live_backup_copy',
|
|
475
|
+
error_message: message,
|
|
476
|
+
stack: err instanceof Error ? err.stack : undefined
|
|
446
477
|
});
|
|
447
|
-
exit.withError(`Error
|
|
478
|
+
exit.withError(`Error creating live backup copy: ${message}`);
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
getLiveBackupConfigFromCLIOptions() {
|
|
482
|
+
if (this.liveBackupCopyCLIOptions?.configFile) {
|
|
483
|
+
return this.loadLiveBackupCopyConfig(this.liveBackupCopyCLIOptions?.configFile);
|
|
484
|
+
}
|
|
485
|
+
let type = _liveBackupCopy.BackupLiveCopyType.TABLES;
|
|
486
|
+
let tables;
|
|
487
|
+
let subsiteIds;
|
|
488
|
+
if (this.liveBackupCopyCLIOptions?.tables) {
|
|
489
|
+
tables = Object.fromEntries(this.liveBackupCopyCLIOptions?.tables.map(key => [key, {}]));
|
|
490
|
+
}
|
|
491
|
+
if (this.liveBackupCopyCLIOptions?.subsiteIds) {
|
|
492
|
+
type = _liveBackupCopy.BackupLiveCopyType.SUBSITE_IDS;
|
|
493
|
+
subsiteIds = this.liveBackupCopyCLIOptions?.subsiteIds.map(id => Number(id));
|
|
494
|
+
}
|
|
495
|
+
if (this.liveBackupCopyCLIOptions?.wpcliCommand) {
|
|
496
|
+
type = _liveBackupCopy.BackupLiveCopyType.WP_CLI_COMMAND;
|
|
497
|
+
}
|
|
498
|
+
return {
|
|
499
|
+
type,
|
|
500
|
+
tables,
|
|
501
|
+
subsite_ids: subsiteIds,
|
|
502
|
+
wpcli_command: this.liveBackupCopyCLIOptions?.wpcliCommand
|
|
503
|
+
};
|
|
504
|
+
}
|
|
505
|
+
loadLiveBackupCopyConfig(configFile) {
|
|
506
|
+
if (!_fs.default.existsSync(configFile)) {
|
|
507
|
+
throw new Error(`Configuration file not found: ${configFile}`);
|
|
508
|
+
}
|
|
509
|
+
try {
|
|
510
|
+
return JSON.parse(_fs.default.readFileSync(configFile, 'utf-8'));
|
|
511
|
+
} catch (err) {
|
|
512
|
+
const errMessage = err instanceof Error ? err.message : 'Unknown error';
|
|
513
|
+
if (err instanceof SyntaxError) {
|
|
514
|
+
throw new Error(`Invalid JSON in configuration file: ${configFile} - ${errMessage}`);
|
|
515
|
+
}
|
|
516
|
+
throw new Error(`Error reading configuration file: ${configFile} - ${errMessage}`);
|
|
448
517
|
}
|
|
449
518
|
}
|
|
450
519
|
}
|
|
@@ -13,16 +13,6 @@ var _format = require("../cli/format");
|
|
|
13
13
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
14
14
|
const oneGiBInBytes = 1024 * 1024 * 1024;
|
|
15
15
|
class BackupStorageAvailability {
|
|
16
|
-
constructor(archiveSize) {
|
|
17
|
-
this.archiveSize = archiveSize;
|
|
18
|
-
}
|
|
19
|
-
static createFromDbCopyJob(job) {
|
|
20
|
-
const bytesWrittenMeta = job.metadata?.find(meta => meta?.name === 'bytesWritten');
|
|
21
|
-
if (!bytesWrittenMeta?.value) {
|
|
22
|
-
throw new Error('Meta not found');
|
|
23
|
-
}
|
|
24
|
-
return new BackupStorageAvailability(Number(bytesWrittenMeta.value));
|
|
25
|
-
}
|
|
26
16
|
getDockerStorageKiBRaw() {
|
|
27
17
|
return (0, _shelljs.exec)(`docker run --rm alpine df -k`, {
|
|
28
18
|
silent: true
|
|
@@ -48,31 +38,31 @@ class BackupStorageAvailability {
|
|
|
48
38
|
getReserveSpace() {
|
|
49
39
|
return oneGiBInBytes;
|
|
50
40
|
}
|
|
51
|
-
getSqlSize() {
|
|
41
|
+
getSqlSize(archiveSize) {
|
|
52
42
|
// We estimated that it'd be about 3.5x the archive size.
|
|
53
|
-
return
|
|
43
|
+
return archiveSize * 3.5;
|
|
54
44
|
}
|
|
55
|
-
getArchiveSize() {
|
|
56
|
-
return
|
|
45
|
+
getArchiveSize(archiveSize) {
|
|
46
|
+
return archiveSize;
|
|
57
47
|
}
|
|
58
|
-
getStorageRequiredInMainMachine() {
|
|
59
|
-
return this.getArchiveSize() + this.getSqlSize() + this.getReserveSpace();
|
|
48
|
+
getStorageRequiredInMainMachine(archiveSize) {
|
|
49
|
+
return this.getArchiveSize(archiveSize) + this.getSqlSize(archiveSize) + this.getReserveSpace();
|
|
60
50
|
}
|
|
61
|
-
getStorageRequiredInDockerMachine() {
|
|
62
|
-
return this.getSqlSize() + this.getReserveSpace();
|
|
51
|
+
getStorageRequiredInDockerMachine(archiveSize) {
|
|
52
|
+
return this.getSqlSize(archiveSize) + this.getReserveSpace();
|
|
63
53
|
}
|
|
64
|
-
async isStorageAvailableInMainMachine() {
|
|
65
|
-
return (await this.getStorageAvailableInVipPath()) > this.getStorageRequiredInMainMachine();
|
|
54
|
+
async isStorageAvailableInMainMachine(archiveSize) {
|
|
55
|
+
return (await this.getStorageAvailableInVipPath()) > this.getStorageRequiredInMainMachine(archiveSize);
|
|
66
56
|
}
|
|
67
|
-
isStorageAvailableInDockerMachine() {
|
|
68
|
-
return this.getDockerStorageAvailable() > this.getStorageRequiredInDockerMachine();
|
|
57
|
+
isStorageAvailableInDockerMachine(archiveSize) {
|
|
58
|
+
return this.getDockerStorageAvailable() > this.getStorageRequiredInDockerMachine(archiveSize);
|
|
69
59
|
}
|
|
70
60
|
|
|
71
61
|
// eslint-disable-next-line id-length
|
|
72
|
-
async validateAndPromptDiskSpaceWarningForBackupImport() {
|
|
73
|
-
const isStorageAvailable = (await this.getStorageAvailableInVipPath()) > this.getArchiveSize();
|
|
62
|
+
async validateAndPromptDiskSpaceWarningForBackupImport(archiveSize) {
|
|
63
|
+
const isStorageAvailable = (await this.getStorageAvailableInVipPath()) > this.getArchiveSize(archiveSize);
|
|
74
64
|
if (!isStorageAvailable) {
|
|
75
|
-
const storageRequired = this.getArchiveSize();
|
|
65
|
+
const storageRequired = this.getArchiveSize(archiveSize);
|
|
76
66
|
const confirmPrompt = new _enquirer.Confirm({
|
|
77
67
|
message: `We recommend that you have at least ${this.bytesToHuman(storageRequired)} of free space in your machine to download this database backup. Do you still want to continue with downloading the database backup?`
|
|
78
68
|
});
|
|
@@ -88,13 +78,13 @@ class BackupStorageAvailability {
|
|
|
88
78
|
}
|
|
89
79
|
|
|
90
80
|
// eslint-disable-next-line id-length
|
|
91
|
-
async validateAndPromptDiskSpaceWarningForDevEnvBackupImport() {
|
|
81
|
+
async validateAndPromptDiskSpaceWarningForDevEnvBackupImport(archiveSize) {
|
|
92
82
|
let storageAvailableInMainMachinePrompted = false;
|
|
93
83
|
|
|
94
84
|
// there's two prompts, so as long as one prompt is shown, we need to set isPromptShown
|
|
95
85
|
let isPromptShown = false;
|
|
96
|
-
if (!(await this.isStorageAvailableInMainMachine())) {
|
|
97
|
-
const storageRequired = this.getStorageRequiredInMainMachine();
|
|
86
|
+
if (!(await this.isStorageAvailableInMainMachine(archiveSize))) {
|
|
87
|
+
const storageRequired = this.getStorageRequiredInMainMachine(archiveSize);
|
|
98
88
|
const storageAvailableInVipPath = this.bytesToHuman(await this.getStorageAvailableInVipPath());
|
|
99
89
|
const confirmPrompt = new _enquirer.Confirm({
|
|
100
90
|
message: `We recommend that you have at least ${this.bytesToHuman(storageRequired)} of free space in your machine to import this database backup. We estimate that you currently have ${storageAvailableInVipPath} of space in your machine.
|
|
@@ -111,8 +101,8 @@ Do you still want to continue with importing the database backup?
|
|
|
111
101
|
}
|
|
112
102
|
}
|
|
113
103
|
try {
|
|
114
|
-
if (!this.isStorageAvailableInDockerMachine()) {
|
|
115
|
-
const storageRequired = this.getStorageRequiredInDockerMachine();
|
|
104
|
+
if (!this.isStorageAvailableInDockerMachine(archiveSize)) {
|
|
105
|
+
const storageRequired = this.getStorageRequiredInDockerMachine(archiveSize);
|
|
116
106
|
const storageAvailableInDockerMachine = this.bytesToHuman(this.getDockerStorageAvailable());
|
|
117
107
|
const confirmPrompt = new _enquirer.Confirm({
|
|
118
108
|
message: `We recommend that you have at least ${this.bytesToHuman(storageRequired)} of free space in your Docker machine to import this database backup. We estimate that you currently have ${storageAvailableInDockerMachine} of space in your machine.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.downloadFile = void 0;
|
|
5
|
+
var fs = _interopRequireWildcard(require("fs"));
|
|
6
|
+
var _stream = require("stream");
|
|
7
|
+
var _promises = require("stream/promises");
|
|
8
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
9
|
+
const downloadFile = async (fileUrl, destinationPath, onProgress) => {
|
|
10
|
+
let response;
|
|
11
|
+
try {
|
|
12
|
+
response = await fetch(fileUrl);
|
|
13
|
+
} catch (error) {
|
|
14
|
+
throw new Error(`Request to ${fileUrl} failed: ${error instanceof Error ? error.message : 'Unknown error'}`);
|
|
15
|
+
}
|
|
16
|
+
if (!response.ok) {
|
|
17
|
+
const errorMessage = `Failed to download file. Status: ${response.status} ${response.statusText}`;
|
|
18
|
+
throw new Error(errorMessage);
|
|
19
|
+
}
|
|
20
|
+
if (!response.body) {
|
|
21
|
+
throw new Error('Failed to download file. The response body is empty.');
|
|
22
|
+
}
|
|
23
|
+
const totalSizeHeader = response.headers.get('content-length');
|
|
24
|
+
const totalBytes = totalSizeHeader ? parseInt(totalSizeHeader, 10) : null;
|
|
25
|
+
let downloadedBytes = 0;
|
|
26
|
+
const fileStream = fs.createWriteStream(destinationPath);
|
|
27
|
+
const nodeReadable = _stream.Readable.fromWeb(response.body);
|
|
28
|
+
nodeReadable.on('data', chunk => {
|
|
29
|
+
downloadedBytes += chunk.length;
|
|
30
|
+
if (onProgress) {
|
|
31
|
+
onProgress(downloadedBytes, totalBytes);
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
try {
|
|
35
|
+
nodeReadable.pipe(fileStream);
|
|
36
|
+
await (0, _promises.finished)(fileStream);
|
|
37
|
+
} catch (error) {
|
|
38
|
+
try {
|
|
39
|
+
await fs.promises.unlink(destinationPath);
|
|
40
|
+
} catch (unlinkErr) {
|
|
41
|
+
console.error(`Failed to delete partial file ${destinationPath}:`, unlinkErr);
|
|
42
|
+
}
|
|
43
|
+
throw new Error(`Failed to write file to disk: ${error instanceof Error ? error.message : 'Unknown error'}`);
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
exports.downloadFile = downloadFile;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.START_LIVE_COPY_MUTATION = exports.SQLDumpTool = exports.GENERATE_LIVE_BACKUP_DOWNLOAD_URL_MUTATION = exports.BackupLiveCopyType = void 0;
|
|
5
|
+
exports.getDownloadURL = getDownloadURL;
|
|
6
|
+
exports.parseLiveBackupCopyCLIOptions = parseLiveBackupCopyCLIOptions;
|
|
7
|
+
exports.startLiveBackupCopy = startLiveBackupCopy;
|
|
8
|
+
var _graphqlTag = _interopRequireDefault(require("graphql-tag"));
|
|
9
|
+
var _userError = _interopRequireDefault(require("./user-error"));
|
|
10
|
+
var _utils = require("./utils");
|
|
11
|
+
var _api = _interopRequireDefault(require("../lib/api"));
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
|
+
function parseLiveBackupCopyCLIOptions(configFile, table, subsiteId, wpcliCommand) {
|
|
14
|
+
const options = {};
|
|
15
|
+
if (configFile && (table || subsiteId || wpcliCommand)) {
|
|
16
|
+
throw new _userError.default('The --config-file option cannot be used with the --table, --subsite-id, or --wpcli-command options. Please use only one of these options at a time.');
|
|
17
|
+
}
|
|
18
|
+
if (wpcliCommand && (table || subsiteId)) {
|
|
19
|
+
throw new _userError.default('The --wpcli-command option cannot be used with the --table or --subsite-id options. Please use only one of these options at a time.');
|
|
20
|
+
}
|
|
21
|
+
let useLiveBackupCopy = false;
|
|
22
|
+
if (table) {
|
|
23
|
+
if (Array.isArray(table)) {
|
|
24
|
+
options.tables = table.flatMap(tableItem => tableItem.split(',').map(name => name.trim()));
|
|
25
|
+
} else {
|
|
26
|
+
options.tables = table.split(',').map(name => name.trim());
|
|
27
|
+
}
|
|
28
|
+
useLiveBackupCopy = true;
|
|
29
|
+
}
|
|
30
|
+
if (subsiteId) {
|
|
31
|
+
if (Array.isArray(subsiteId)) {
|
|
32
|
+
options.subsiteIds = subsiteId.flatMap(id => String(id).split(',').map(idStr => Number(idStr.trim())));
|
|
33
|
+
} else {
|
|
34
|
+
options.subsiteIds = String(subsiteId).split(',').map(idStr => Number(idStr.trim()));
|
|
35
|
+
}
|
|
36
|
+
useLiveBackupCopy = true;
|
|
37
|
+
}
|
|
38
|
+
if (configFile) {
|
|
39
|
+
options.configFile = configFile;
|
|
40
|
+
useLiveBackupCopy = true;
|
|
41
|
+
}
|
|
42
|
+
if (wpcliCommand) {
|
|
43
|
+
options.wpcliCommand = wpcliCommand;
|
|
44
|
+
useLiveBackupCopy = true;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
...options,
|
|
48
|
+
useLiveBackupCopy
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
const START_LIVE_COPY_MUTATION = exports.START_LIVE_COPY_MUTATION = (0, _graphqlTag.default)(`
|
|
52
|
+
mutation startLiveBackupCopy($input: LiveBackupCopyConfigInput!) {
|
|
53
|
+
startLiveBackupCopy(input: $input) {
|
|
54
|
+
message
|
|
55
|
+
copyId
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
`);
|
|
59
|
+
|
|
60
|
+
// eslint-disable-next-line id-length
|
|
61
|
+
const GENERATE_LIVE_BACKUP_DOWNLOAD_URL_MUTATION = exports.GENERATE_LIVE_BACKUP_DOWNLOAD_URL_MUTATION = (0, _graphqlTag.default)(`
|
|
62
|
+
mutation generateLiveBackupCopyDownloadURL(
|
|
63
|
+
$input: AppEnvironmentLiveBackupCopyDownloadURLInput!
|
|
64
|
+
) {
|
|
65
|
+
generateLiveBackupCopyDownloadURL(input: $input) {
|
|
66
|
+
success
|
|
67
|
+
url
|
|
68
|
+
processing
|
|
69
|
+
size
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
`);
|
|
73
|
+
let BackupLiveCopyType = exports.BackupLiveCopyType = /*#__PURE__*/function (BackupLiveCopyType) {
|
|
74
|
+
BackupLiveCopyType["FULL"] = "full";
|
|
75
|
+
BackupLiveCopyType["TABLES"] = "tables";
|
|
76
|
+
BackupLiveCopyType["SUBSITE_IDS"] = "subsite_ids";
|
|
77
|
+
BackupLiveCopyType["WP_CLI_COMMAND"] = "wpcli_command";
|
|
78
|
+
return BackupLiveCopyType;
|
|
79
|
+
}({});
|
|
80
|
+
let SQLDumpTool = exports.SQLDumpTool = /*#__PURE__*/function (SQLDumpTool) {
|
|
81
|
+
SQLDumpTool["MYSQLDUMP"] = "mysqldump";
|
|
82
|
+
SQLDumpTool["MYDUMPER"] = "mydumper";
|
|
83
|
+
return SQLDumpTool;
|
|
84
|
+
}({});
|
|
85
|
+
async function startLiveBackupCopy({
|
|
86
|
+
appId,
|
|
87
|
+
environmentId,
|
|
88
|
+
config
|
|
89
|
+
}) {
|
|
90
|
+
const api = (0, _api.default)({
|
|
91
|
+
exitOnError: true
|
|
92
|
+
});
|
|
93
|
+
const result = await api.mutate({
|
|
94
|
+
mutation: START_LIVE_COPY_MUTATION,
|
|
95
|
+
variables: {
|
|
96
|
+
input: {
|
|
97
|
+
id: appId,
|
|
98
|
+
environmentId,
|
|
99
|
+
config
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
|
105
|
+
if (!result.data?.startLiveBackupCopy.copyId) {
|
|
106
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
|
107
|
+
throw new Error(`Failed to start live backup copy: ${result.data?.startLiveBackupCopy?.message ? result.data?.startLiveBackupCopy?.message : 'Unknown error'}`);
|
|
108
|
+
}
|
|
109
|
+
return result.data?.startLiveBackupCopy.copyId;
|
|
110
|
+
}
|
|
111
|
+
async function getDownloadURL({
|
|
112
|
+
appId,
|
|
113
|
+
environmentId,
|
|
114
|
+
copyId,
|
|
115
|
+
timeoutInSeconds = 2 * 60 * 60 // 2 hours default timeout
|
|
116
|
+
}) {
|
|
117
|
+
const api = (0, _api.default)({
|
|
118
|
+
exitOnError: true
|
|
119
|
+
});
|
|
120
|
+
try {
|
|
121
|
+
const result = await (0, _utils.pollUntil)(async () => {
|
|
122
|
+
return await api.mutate({
|
|
123
|
+
mutation: GENERATE_LIVE_BACKUP_DOWNLOAD_URL_MUTATION,
|
|
124
|
+
variables: {
|
|
125
|
+
input: {
|
|
126
|
+
id: appId,
|
|
127
|
+
environmentId,
|
|
128
|
+
copyId
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
});
|
|
132
|
+
}, 5000, fetchResult => {
|
|
133
|
+
return Boolean(fetchResult.data?.generateLiveBackupCopyDownloadURL?.url && !fetchResult.data?.generateLiveBackupCopyDownloadURL?.processing);
|
|
134
|
+
}, timeoutInSeconds * 1000);
|
|
135
|
+
if (!result.data?.generateLiveBackupCopyDownloadURL?.success || !result.data.generateLiveBackupCopyDownloadURL.url || !result.data.generateLiveBackupCopyDownloadURL.size) {
|
|
136
|
+
throw new Error(`Failed to generate download URL: ${result.data?.generateLiveBackupCopyDownloadURL?.url ? result.data?.generateLiveBackupCopyDownloadURL?.url : 'Unknown error'}`);
|
|
137
|
+
}
|
|
138
|
+
return {
|
|
139
|
+
url: result.data.generateLiveBackupCopyDownloadURL.url,
|
|
140
|
+
size: result.data.generateLiveBackupCopyDownloadURL.size
|
|
141
|
+
};
|
|
142
|
+
} catch (error) {
|
|
143
|
+
if (error instanceof _utils.PollingTimeoutError) {
|
|
144
|
+
throw new Error(`Failed to generate download URL: Polling timed out after ${timeoutInSeconds} seconds`);
|
|
145
|
+
}
|
|
146
|
+
const errorMessage = error instanceof Error ? error.message : JSON.stringify(error);
|
|
147
|
+
throw new Error(`Failed to generate download URL: ${errorMessage}`);
|
|
148
|
+
}
|
|
149
|
+
}
|
package/dist/lib/utils.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
|
+
exports.PollingTimeoutError = void 0;
|
|
4
5
|
exports.getAbsolutePath = getAbsolutePath;
|
|
5
6
|
exports.makeTempDir = makeTempDir;
|
|
6
7
|
exports.parseApiError = parseApiError;
|
|
@@ -12,27 +13,26 @@ var _os = _interopRequireDefault(require("os"));
|
|
|
12
13
|
var _path = _interopRequireDefault(require("path"));
|
|
13
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
14
15
|
const debug = (0, _debug.default)('@automattic/vip:lib:utils');
|
|
16
|
+
class PollingTimeoutError extends Error {}
|
|
15
17
|
|
|
16
18
|
/**
|
|
17
19
|
* Polls a function until its return value satisfies a condition
|
|
18
|
-
*
|
|
19
|
-
* @param {Function} fn A function to poll
|
|
20
|
-
* @param {number} interval Poll interval in milliseconds
|
|
21
|
-
* @param {Function} isDone A function that accepts the return of `fn`. Stops the polling if it returns true
|
|
22
|
-
* @return {Promise} A promise which resolves when the polling is done
|
|
23
|
-
* @throws {Error} If the fn throws an error
|
|
24
20
|
*/
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
21
|
+
exports.PollingTimeoutError = PollingTimeoutError;
|
|
22
|
+
async function pollUntil(fn, interval, isDone, timeoutMs = 6 * 60 * 60 * 1000 // Default to 6 hours
|
|
23
|
+
) {
|
|
24
|
+
const startTime = Date.now();
|
|
25
|
+
while (Date.now() - startTime < timeoutMs) {
|
|
28
26
|
// eslint-disable-next-line no-await-in-loop
|
|
29
27
|
const result = await fn();
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
// eslint-disable-next-line no-await-in-loop
|
|
33
|
-
await (0, _promises.setTimeout)(interval);
|
|
28
|
+
if (isDone(result)) {
|
|
29
|
+
return result;
|
|
34
30
|
}
|
|
31
|
+
|
|
32
|
+
// eslint-disable-next-line no-await-in-loop
|
|
33
|
+
await (0, _promises.setTimeout)(interval);
|
|
35
34
|
}
|
|
35
|
+
throw new PollingTimeoutError('Polling timed out');
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
/**
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "3.19.
|
|
3
|
+
"version": "3.19.3-dev.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@automattic/vip",
|
|
9
|
-
"version": "3.19.
|
|
9
|
+
"version": "3.19.3-dev.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|