@strapi/cloud-cli 0.0.0-next.d773bfffcd285e7a1e7bf331b6f1224b969dd46b → 0.0.0-next.e8d8fc824d0f6a695b2a9ebaa4680ed21c3645ca
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.js +2 -2
- package/dist/bin.js.map +1 -1
- package/dist/index.js +420 -81
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +417 -78
- package/dist/index.mjs.map +1 -1
- package/dist/src/cloud/command.d.ts +3 -0
- package/dist/src/cloud/command.d.ts.map +1 -0
- package/dist/src/create-project/command.d.ts.map +1 -1
- package/dist/src/deploy-project/action.d.ts +5 -1
- package/dist/src/deploy-project/action.d.ts.map +1 -1
- package/dist/src/deploy-project/command.d.ts.map +1 -1
- package/dist/src/environment/command.d.ts +3 -0
- package/dist/src/environment/command.d.ts.map +1 -0
- package/dist/src/environment/link/action.d.ts +4 -0
- package/dist/src/environment/link/action.d.ts.map +1 -0
- package/dist/src/environment/link/command.d.ts +4 -0
- package/dist/src/environment/link/command.d.ts.map +1 -0
- package/dist/src/environment/link/index.d.ts +7 -0
- package/dist/src/environment/link/index.d.ts.map +1 -0
- package/dist/src/environment/list/action.d.ts +4 -0
- package/dist/src/environment/list/action.d.ts.map +1 -0
- package/dist/src/environment/list/command.d.ts +4 -0
- package/dist/src/environment/list/command.d.ts.map +1 -0
- package/dist/src/environment/list/index.d.ts +7 -0
- package/dist/src/environment/list/index.d.ts.map +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/link/action.d.ts.map +1 -1
- package/dist/src/login/command.d.ts.map +1 -1
- package/dist/src/logout/command.d.ts.map +1 -1
- package/dist/src/services/cli-api.d.ts +30 -3
- package/dist/src/services/cli-api.d.ts.map +1 -1
- package/dist/src/services/strapi-info-save.d.ts +15 -2
- package/dist/src/services/strapi-info-save.d.ts.map +1 -1
- package/dist/src/services/token.d.ts.map +1 -1
- package/dist/src/types.d.ts +7 -1
- package/dist/src/types.d.ts.map +1 -1
- package/dist/src/utils/get-local-config.d.ts +6 -0
- package/dist/src/utils/get-local-config.d.ts.map +1 -0
- package/dist/src/utils/helpers.d.ts.map +1 -1
- package/dist/src/utils/pkg.d.ts.map +1 -1
- package/dist/src/utils/tests/compress-files.test.d.ts +2 -0
- package/dist/src/utils/tests/compress-files.test.d.ts.map +1 -0
- package/package.json +10 -9
package/dist/index.js
CHANGED
|
@@ -24,6 +24,8 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
24
24
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
25
25
|
const crypto$1 = require("crypto");
|
|
26
26
|
const fse = require("fs-extra");
|
|
27
|
+
const inquirer = require("inquirer");
|
|
28
|
+
const boxen = require("boxen");
|
|
27
29
|
const path = require("path");
|
|
28
30
|
const chalk = require("chalk");
|
|
29
31
|
const axios = require("axios");
|
|
@@ -31,10 +33,10 @@ const crypto = require("node:crypto");
|
|
|
31
33
|
const utils = require("@strapi/utils");
|
|
32
34
|
const tar = require("tar");
|
|
33
35
|
const minimatch = require("minimatch");
|
|
34
|
-
const inquirer = require("inquirer");
|
|
35
36
|
const fp = require("lodash/fp");
|
|
36
37
|
const os = require("os");
|
|
37
38
|
const XDGAppPaths = require("xdg-app-paths");
|
|
39
|
+
const lodash = require("lodash");
|
|
38
40
|
const jwksClient = require("jwks-rsa");
|
|
39
41
|
const jwt = require("jsonwebtoken");
|
|
40
42
|
const stringify = require("fast-safe-stringify");
|
|
@@ -43,10 +45,10 @@ const cliProgress = require("cli-progress");
|
|
|
43
45
|
const pkgUp = require("pkg-up");
|
|
44
46
|
const yup = require("yup");
|
|
45
47
|
const EventSource = require("eventsource");
|
|
48
|
+
const commander = require("commander");
|
|
46
49
|
const _interopDefault = (e) => e && e.__esModule ? e : { default: e };
|
|
47
50
|
function _interopNamespace(e) {
|
|
48
|
-
if (e && e.__esModule)
|
|
49
|
-
return e;
|
|
51
|
+
if (e && e.__esModule) return e;
|
|
50
52
|
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
51
53
|
if (e) {
|
|
52
54
|
for (const k in e) {
|
|
@@ -64,12 +66,13 @@ function _interopNamespace(e) {
|
|
|
64
66
|
}
|
|
65
67
|
const crypto__default = /* @__PURE__ */ _interopDefault(crypto$1);
|
|
66
68
|
const fse__namespace = /* @__PURE__ */ _interopNamespace(fse);
|
|
69
|
+
const inquirer__default = /* @__PURE__ */ _interopDefault(inquirer);
|
|
70
|
+
const boxen__default = /* @__PURE__ */ _interopDefault(boxen);
|
|
67
71
|
const path__namespace = /* @__PURE__ */ _interopNamespace(path);
|
|
68
72
|
const chalk__default = /* @__PURE__ */ _interopDefault(chalk);
|
|
69
73
|
const axios__default = /* @__PURE__ */ _interopDefault(axios);
|
|
70
74
|
const crypto__namespace = /* @__PURE__ */ _interopNamespace(crypto);
|
|
71
75
|
const tar__namespace = /* @__PURE__ */ _interopNamespace(tar);
|
|
72
|
-
const inquirer__default = /* @__PURE__ */ _interopDefault(inquirer);
|
|
73
76
|
const os__default = /* @__PURE__ */ _interopDefault(os);
|
|
74
77
|
const XDGAppPaths__default = /* @__PURE__ */ _interopDefault(XDGAppPaths);
|
|
75
78
|
const jwksClient__default = /* @__PURE__ */ _interopDefault(jwksClient);
|
|
@@ -136,8 +139,7 @@ const getFiles = async (dirPath, ignorePatterns = [], subfolder = "") => {
|
|
|
136
139
|
const readGitignore = async (folderPath) => {
|
|
137
140
|
const gitignorePath = path__namespace.resolve(folderPath, ".gitignore");
|
|
138
141
|
const pathExist = await fse__namespace.pathExists(gitignorePath);
|
|
139
|
-
if (!pathExist)
|
|
140
|
-
return [];
|
|
142
|
+
if (!pathExist) return [];
|
|
141
143
|
const gitignoreContent = await fse__namespace.readFile(gitignorePath, "utf8");
|
|
142
144
|
return gitignoreContent.split(/\r?\n/).filter((line) => Boolean(line.trim()) && !line.startsWith("#"));
|
|
143
145
|
};
|
|
@@ -176,7 +178,7 @@ async function getConfigPath() {
|
|
|
176
178
|
}
|
|
177
179
|
return configPath;
|
|
178
180
|
}
|
|
179
|
-
async function getLocalConfig() {
|
|
181
|
+
async function getLocalConfig$1() {
|
|
180
182
|
const configPath = await getConfigPath();
|
|
181
183
|
const configFilePath = path__namespace.default.join(configPath, CONFIG_FILENAME);
|
|
182
184
|
await fse__namespace.default.ensureFile(configFilePath);
|
|
@@ -192,7 +194,7 @@ async function saveLocalConfig(data) {
|
|
|
192
194
|
await fse__namespace.default.writeJson(configFilePath, data, { encoding: "utf8", spaces: 2, mode: 384 });
|
|
193
195
|
}
|
|
194
196
|
const name = "@strapi/cloud-cli";
|
|
195
|
-
const version = "
|
|
197
|
+
const version = "5.5.2";
|
|
196
198
|
const description = "Commands to interact with the Strapi Cloud";
|
|
197
199
|
const keywords = [
|
|
198
200
|
"strapi",
|
|
@@ -237,14 +239,15 @@ const scripts = {
|
|
|
237
239
|
watch: "pack-up watch"
|
|
238
240
|
};
|
|
239
241
|
const dependencies = {
|
|
240
|
-
"@strapi/utils": "
|
|
242
|
+
"@strapi/utils": "5.5.2",
|
|
241
243
|
axios: "1.7.4",
|
|
244
|
+
boxen: "5.1.2",
|
|
242
245
|
chalk: "4.1.2",
|
|
243
246
|
"cli-progress": "3.12.0",
|
|
244
247
|
commander: "8.3.0",
|
|
245
248
|
eventsource: "2.0.2",
|
|
246
249
|
"fast-safe-stringify": "2.1.1",
|
|
247
|
-
"fs-extra": "
|
|
250
|
+
"fs-extra": "11.2.0",
|
|
248
251
|
inquirer: "8.2.5",
|
|
249
252
|
jsonwebtoken: "9.0.0",
|
|
250
253
|
"jwks-rsa": "3.1.0",
|
|
@@ -253,20 +256,20 @@ const dependencies = {
|
|
|
253
256
|
open: "8.4.0",
|
|
254
257
|
ora: "5.4.1",
|
|
255
258
|
"pkg-up": "3.1.0",
|
|
256
|
-
tar: "6.1
|
|
259
|
+
tar: "6.2.1",
|
|
257
260
|
"xdg-app-paths": "8.3.0",
|
|
258
261
|
yup: "0.32.9"
|
|
259
262
|
};
|
|
260
263
|
const devDependencies = {
|
|
261
|
-
"@strapi/pack-up": "
|
|
264
|
+
"@strapi/pack-up": "5.0.2",
|
|
262
265
|
"@types/cli-progress": "3.11.5",
|
|
263
266
|
"@types/eventsource": "1.1.15",
|
|
264
267
|
"@types/lodash": "^4.14.191",
|
|
265
|
-
"eslint-config-custom": "
|
|
266
|
-
tsconfig: "
|
|
268
|
+
"eslint-config-custom": "5.5.2",
|
|
269
|
+
tsconfig: "5.5.2"
|
|
267
270
|
};
|
|
268
271
|
const engines = {
|
|
269
|
-
node: ">=18.0.0 <=
|
|
272
|
+
node: ">=18.0.0 <=22.x.x",
|
|
270
273
|
npm: ">=6.0.0"
|
|
271
274
|
};
|
|
272
275
|
const packageJson = {
|
|
@@ -293,7 +296,7 @@ const packageJson = {
|
|
|
293
296
|
};
|
|
294
297
|
const VERSION = "v1";
|
|
295
298
|
async function cloudApiFactory({ logger }, token) {
|
|
296
|
-
const localConfig = await getLocalConfig();
|
|
299
|
+
const localConfig = await getLocalConfig$1();
|
|
297
300
|
const customHeaders = {
|
|
298
301
|
"x-device-id": localConfig.deviceId,
|
|
299
302
|
"x-app-version": packageJson.version,
|
|
@@ -316,7 +319,7 @@ async function cloudApiFactory({ logger }, token) {
|
|
|
316
319
|
deploy({ filePath, project }, { onUploadProgress }) {
|
|
317
320
|
return axiosCloudAPI.post(
|
|
318
321
|
`/deploy/${project.name}`,
|
|
319
|
-
{ file: fse__namespace.default.createReadStream(filePath) },
|
|
322
|
+
{ file: fse__namespace.default.createReadStream(filePath), targetEnvironment: project.targetEnvironment },
|
|
320
323
|
{
|
|
321
324
|
headers: {
|
|
322
325
|
"Content-Type": "multipart/form-data"
|
|
@@ -387,6 +390,34 @@ async function cloudApiFactory({ logger }, token) {
|
|
|
387
390
|
throw error;
|
|
388
391
|
}
|
|
389
392
|
},
|
|
393
|
+
async listEnvironments({ name: name2 }) {
|
|
394
|
+
try {
|
|
395
|
+
const response = await axiosCloudAPI.get(`/projects/${name2}/environments`);
|
|
396
|
+
if (response.status !== 200) {
|
|
397
|
+
throw new Error("Error fetching cloud environments from the server.");
|
|
398
|
+
}
|
|
399
|
+
return response;
|
|
400
|
+
} catch (error) {
|
|
401
|
+
logger.debug(
|
|
402
|
+
"🥲 Oops! Couldn't retrieve your project's environments from the server. Please try again."
|
|
403
|
+
);
|
|
404
|
+
throw error;
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
async listLinkEnvironments({ name: name2 }) {
|
|
408
|
+
try {
|
|
409
|
+
const response = await axiosCloudAPI.get(`/projects/${name2}/environments-linkable`);
|
|
410
|
+
if (response.status !== 200) {
|
|
411
|
+
throw new Error("Error fetching cloud environments from the server.");
|
|
412
|
+
}
|
|
413
|
+
return response;
|
|
414
|
+
} catch (error) {
|
|
415
|
+
logger.debug(
|
|
416
|
+
"🥲 Oops! Couldn't retrieve your project's environments from the server. Please try again."
|
|
417
|
+
);
|
|
418
|
+
throw error;
|
|
419
|
+
}
|
|
420
|
+
},
|
|
390
421
|
async getProject({ name: name2 }) {
|
|
391
422
|
try {
|
|
392
423
|
const response = await axiosCloudAPI.get(`/projects/${name2}`);
|
|
@@ -410,26 +441,43 @@ async function cloudApiFactory({ logger }, token) {
|
|
|
410
441
|
};
|
|
411
442
|
}
|
|
412
443
|
const LOCAL_SAVE_FILENAME = ".strapi-cloud.json";
|
|
444
|
+
const getFilePath = (directoryPath) => path__namespace.default.join(directoryPath || process.cwd(), LOCAL_SAVE_FILENAME);
|
|
413
445
|
async function save(data, { directoryPath } = {}) {
|
|
414
|
-
const
|
|
415
|
-
const storedData = { ...alreadyInFileData, ...data };
|
|
416
|
-
const pathToFile = path__namespace.default.join(directoryPath || process.cwd(), LOCAL_SAVE_FILENAME);
|
|
446
|
+
const pathToFile = getFilePath(directoryPath);
|
|
417
447
|
await fse__namespace.default.ensureDir(path__namespace.default.dirname(pathToFile));
|
|
418
|
-
await fse__namespace.default.writeJson(pathToFile,
|
|
448
|
+
await fse__namespace.default.writeJson(pathToFile, data, { encoding: "utf8" });
|
|
419
449
|
}
|
|
420
450
|
async function retrieve({
|
|
421
451
|
directoryPath
|
|
422
452
|
} = {}) {
|
|
423
|
-
const pathToFile =
|
|
453
|
+
const pathToFile = getFilePath(directoryPath);
|
|
424
454
|
const pathExists = await fse__namespace.default.pathExists(pathToFile);
|
|
425
455
|
if (!pathExists) {
|
|
426
456
|
return {};
|
|
427
457
|
}
|
|
428
458
|
return fse__namespace.default.readJSON(pathToFile, { encoding: "utf8" });
|
|
429
459
|
}
|
|
460
|
+
async function patch(patchData, { directoryPath } = {}) {
|
|
461
|
+
const pathToFile = getFilePath(directoryPath);
|
|
462
|
+
const existingData = await retrieve({ directoryPath });
|
|
463
|
+
if (!existingData) {
|
|
464
|
+
throw new Error("No configuration data found to patch.");
|
|
465
|
+
}
|
|
466
|
+
const newData = lodash.merge(existingData, patchData);
|
|
467
|
+
await fse__namespace.default.writeJson(pathToFile, newData, { encoding: "utf8" });
|
|
468
|
+
}
|
|
469
|
+
async function deleteConfig({ directoryPath } = {}) {
|
|
470
|
+
const pathToFile = getFilePath(directoryPath);
|
|
471
|
+
const pathExists = await fse__namespace.default.pathExists(pathToFile);
|
|
472
|
+
if (pathExists) {
|
|
473
|
+
await fse__namespace.default.remove(pathToFile);
|
|
474
|
+
}
|
|
475
|
+
}
|
|
430
476
|
const strapiInfoSave = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
431
477
|
__proto__: null,
|
|
432
478
|
LOCAL_SAVE_FILENAME,
|
|
479
|
+
deleteConfig,
|
|
480
|
+
patch,
|
|
433
481
|
retrieve,
|
|
434
482
|
save
|
|
435
483
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -437,7 +485,7 @@ let cliConfig;
|
|
|
437
485
|
async function tokenServiceFactory({ logger }) {
|
|
438
486
|
const cloudApiService = await cloudApiFactory({ logger });
|
|
439
487
|
async function saveToken(str) {
|
|
440
|
-
const appConfig = await getLocalConfig();
|
|
488
|
+
const appConfig = await getLocalConfig$1();
|
|
441
489
|
if (!appConfig) {
|
|
442
490
|
logger.error("There was a problem saving your token. Please try again.");
|
|
443
491
|
return;
|
|
@@ -451,7 +499,7 @@ async function tokenServiceFactory({ logger }) {
|
|
|
451
499
|
}
|
|
452
500
|
}
|
|
453
501
|
async function retrieveToken() {
|
|
454
|
-
const appConfig = await getLocalConfig();
|
|
502
|
+
const appConfig = await getLocalConfig$1();
|
|
455
503
|
if (appConfig.token) {
|
|
456
504
|
if (await isTokenValid(appConfig.token)) {
|
|
457
505
|
return appConfig.token;
|
|
@@ -513,7 +561,7 @@ async function tokenServiceFactory({ logger }) {
|
|
|
513
561
|
}
|
|
514
562
|
}
|
|
515
563
|
async function eraseToken() {
|
|
516
|
-
const appConfig = await getLocalConfig();
|
|
564
|
+
const appConfig = await getLocalConfig$1();
|
|
517
565
|
if (!appConfig) {
|
|
518
566
|
return;
|
|
519
567
|
}
|
|
@@ -534,8 +582,7 @@ async function tokenServiceFactory({ logger }) {
|
|
|
534
582
|
logger.log(
|
|
535
583
|
token ? "Oops! Your token seems expired or invalid. Please login again." : "We couldn't find a valid token. You need to be logged in to use this feature."
|
|
536
584
|
);
|
|
537
|
-
if (!await loginAction2(ctx))
|
|
538
|
-
return null;
|
|
585
|
+
if (!await loginAction2(ctx)) return null;
|
|
539
586
|
token = await retrieveToken();
|
|
540
587
|
}
|
|
541
588
|
return token;
|
|
@@ -674,21 +721,24 @@ yup__namespace.object({
|
|
|
674
721
|
name: yup__namespace.string().required(),
|
|
675
722
|
exports: yup__namespace.lazy(
|
|
676
723
|
(value) => yup__namespace.object(
|
|
677
|
-
typeof value === "object" ? Object.entries(value).reduce(
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
724
|
+
typeof value === "object" ? Object.entries(value).reduce(
|
|
725
|
+
(acc, [key, value2]) => {
|
|
726
|
+
if (typeof value2 === "object") {
|
|
727
|
+
acc[key] = yup__namespace.object({
|
|
728
|
+
types: yup__namespace.string().optional(),
|
|
729
|
+
source: yup__namespace.string().required(),
|
|
730
|
+
module: yup__namespace.string().optional(),
|
|
731
|
+
import: yup__namespace.string().required(),
|
|
732
|
+
require: yup__namespace.string().required(),
|
|
733
|
+
default: yup__namespace.string().required()
|
|
734
|
+
}).noUnknown(true);
|
|
735
|
+
} else {
|
|
736
|
+
acc[key] = yup__namespace.string().matches(/^\.\/.*\.json$/).required();
|
|
737
|
+
}
|
|
738
|
+
return acc;
|
|
739
|
+
},
|
|
740
|
+
{}
|
|
741
|
+
) : void 0
|
|
692
742
|
).optional()
|
|
693
743
|
)
|
|
694
744
|
});
|
|
@@ -956,7 +1006,7 @@ async function createProject$1(ctx, cloudApi, projectInput) {
|
|
|
956
1006
|
throw e;
|
|
957
1007
|
}
|
|
958
1008
|
}
|
|
959
|
-
const action$
|
|
1009
|
+
const action$6 = async (ctx) => {
|
|
960
1010
|
const { logger } = ctx;
|
|
961
1011
|
const { getValidToken, eraseToken } = await tokenServiceFactory(ctx);
|
|
962
1012
|
const token = await getValidToken(ctx, promptLogin);
|
|
@@ -1085,6 +1135,29 @@ const buildLogsServiceFactory = ({ logger }) => {
|
|
|
1085
1135
|
});
|
|
1086
1136
|
};
|
|
1087
1137
|
};
|
|
1138
|
+
const boxenOptions = {
|
|
1139
|
+
padding: 1,
|
|
1140
|
+
margin: 1,
|
|
1141
|
+
align: "center",
|
|
1142
|
+
borderColor: "yellow",
|
|
1143
|
+
borderStyle: "round"
|
|
1144
|
+
};
|
|
1145
|
+
const QUIT_OPTION$2 = "Quit";
|
|
1146
|
+
async function promptForEnvironment(environments) {
|
|
1147
|
+
const choices = environments.map((env) => ({ name: env, value: env }));
|
|
1148
|
+
const { selectedEnvironment } = await inquirer__default.default.prompt([
|
|
1149
|
+
{
|
|
1150
|
+
type: "list",
|
|
1151
|
+
name: "selectedEnvironment",
|
|
1152
|
+
message: "Select the environment to deploy:",
|
|
1153
|
+
choices: [...choices, { name: chalk__default.default.grey(`(${QUIT_OPTION$2})`), value: null }]
|
|
1154
|
+
}
|
|
1155
|
+
]);
|
|
1156
|
+
if (selectedEnvironment === null) {
|
|
1157
|
+
process.exit(1);
|
|
1158
|
+
}
|
|
1159
|
+
return selectedEnvironment;
|
|
1160
|
+
}
|
|
1088
1161
|
async function upload(ctx, project, token, maxProjectFileSize) {
|
|
1089
1162
|
const cloudApi = await cloudApiFactory(ctx, token);
|
|
1090
1163
|
try {
|
|
@@ -1167,7 +1240,7 @@ async function getProject(ctx) {
|
|
|
1167
1240
|
const { project } = await retrieve();
|
|
1168
1241
|
if (!project) {
|
|
1169
1242
|
try {
|
|
1170
|
-
return await action$
|
|
1243
|
+
return await action$6(ctx);
|
|
1171
1244
|
} catch (e) {
|
|
1172
1245
|
ctx.logger.error("An error occurred while deploying the project. Please try again later.");
|
|
1173
1246
|
ctx.logger.debug(e);
|
|
@@ -1188,7 +1261,33 @@ async function getConfig({
|
|
|
1188
1261
|
return null;
|
|
1189
1262
|
}
|
|
1190
1263
|
}
|
|
1191
|
-
|
|
1264
|
+
function validateEnvironment(ctx, environment, environments) {
|
|
1265
|
+
if (!environments.includes(environment)) {
|
|
1266
|
+
ctx.logger.error(`Environment ${environment} does not exist.`);
|
|
1267
|
+
process.exit(1);
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
async function getTargetEnvironment(ctx, opts, project, environments) {
|
|
1271
|
+
if (opts.env) {
|
|
1272
|
+
validateEnvironment(ctx, opts.env, environments);
|
|
1273
|
+
return opts.env;
|
|
1274
|
+
}
|
|
1275
|
+
if (project.targetEnvironment) {
|
|
1276
|
+
return project.targetEnvironment;
|
|
1277
|
+
}
|
|
1278
|
+
if (environments.length > 1) {
|
|
1279
|
+
return promptForEnvironment(environments);
|
|
1280
|
+
}
|
|
1281
|
+
return environments[0];
|
|
1282
|
+
}
|
|
1283
|
+
function hasPendingOrLiveDeployment(environments, targetEnvironment) {
|
|
1284
|
+
const environment = environments.find((env) => env.name === targetEnvironment);
|
|
1285
|
+
if (!environment) {
|
|
1286
|
+
throw new Error(`Environment details ${targetEnvironment} not found.`);
|
|
1287
|
+
}
|
|
1288
|
+
return environment.hasPendingDeployment || environment.hasLiveDeployment || false;
|
|
1289
|
+
}
|
|
1290
|
+
const action$5 = async (ctx, opts) => {
|
|
1192
1291
|
const { getValidToken } = await tokenServiceFactory(ctx);
|
|
1193
1292
|
const token = await getValidToken(ctx, promptLogin);
|
|
1194
1293
|
if (!token) {
|
|
@@ -1199,10 +1298,16 @@ const action$3 = async (ctx) => {
|
|
|
1199
1298
|
return;
|
|
1200
1299
|
}
|
|
1201
1300
|
const cloudApiService = await cloudApiFactory(ctx, token);
|
|
1301
|
+
let projectData;
|
|
1302
|
+
let environments;
|
|
1303
|
+
let environmentsDetails;
|
|
1202
1304
|
try {
|
|
1203
1305
|
const {
|
|
1204
|
-
data: { data
|
|
1306
|
+
data: { data, metadata }
|
|
1205
1307
|
} = await cloudApiService.getProject({ name: project.name });
|
|
1308
|
+
projectData = data;
|
|
1309
|
+
environments = projectData.environments;
|
|
1310
|
+
environmentsDetails = projectData.environmentsDetails;
|
|
1206
1311
|
const isProjectSuspended = projectData.suspendedAt;
|
|
1207
1312
|
if (isProjectSuspended) {
|
|
1208
1313
|
ctx.logger.log(
|
|
@@ -1250,11 +1355,34 @@ Please link your local project to an existing Strapi Cloud project using the ${c
|
|
|
1250
1355
|
);
|
|
1251
1356
|
maxSize = 1e8;
|
|
1252
1357
|
}
|
|
1358
|
+
project.targetEnvironment = await getTargetEnvironment(ctx, opts, project, environments);
|
|
1359
|
+
if (!opts.force) {
|
|
1360
|
+
const shouldDisplayWarning = hasPendingOrLiveDeployment(
|
|
1361
|
+
environmentsDetails,
|
|
1362
|
+
project.targetEnvironment
|
|
1363
|
+
);
|
|
1364
|
+
if (shouldDisplayWarning) {
|
|
1365
|
+
ctx.logger.log(boxen__default.default(cliConfig2.projectDeployment.confirmationText, boxenOptions));
|
|
1366
|
+
const { confirm } = await inquirer__default.default.prompt([
|
|
1367
|
+
{
|
|
1368
|
+
type: "confirm",
|
|
1369
|
+
name: "confirm",
|
|
1370
|
+
message: `Do you want to proceed with deployment to ${chalk__default.default.cyan(projectData.displayName)} on ${chalk__default.default.cyan(project.targetEnvironment)} environment?`
|
|
1371
|
+
}
|
|
1372
|
+
]);
|
|
1373
|
+
if (!confirm) {
|
|
1374
|
+
process.exit(1);
|
|
1375
|
+
}
|
|
1376
|
+
}
|
|
1377
|
+
}
|
|
1253
1378
|
const buildId = await upload(ctx, project, token, maxSize);
|
|
1254
1379
|
if (!buildId) {
|
|
1255
1380
|
return;
|
|
1256
1381
|
}
|
|
1257
1382
|
try {
|
|
1383
|
+
ctx.logger.log(
|
|
1384
|
+
`🚀 Deploying project to ${chalk__default.default.cyan(project.targetEnvironment ?? `production`)} environment...`
|
|
1385
|
+
);
|
|
1258
1386
|
notificationService(`${apiConfig.apiBaseUrl}/notifications`, token, cliConfig2);
|
|
1259
1387
|
await buildLogsService(`${apiConfig.apiBaseUrl}/v1/logs/${buildId}`, token, cliConfig2);
|
|
1260
1388
|
ctx.logger.log(
|
|
@@ -1299,17 +1427,16 @@ const runAction = (name2, action2) => (...args) => {
|
|
|
1299
1427
|
process.exit(1);
|
|
1300
1428
|
});
|
|
1301
1429
|
};
|
|
1302
|
-
const command$
|
|
1303
|
-
|
|
1430
|
+
const command$7 = ({ ctx }) => {
|
|
1431
|
+
return commander.createCommand("cloud:deploy").alias("deploy").description("Deploy a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").option("-f, --force", "Skip confirmation to deploy").option("-e, --env <name>", "Specify the environment to deploy").action((opts) => runAction("deploy", action$5)(ctx, opts));
|
|
1304
1432
|
};
|
|
1305
1433
|
const deployProject = {
|
|
1306
1434
|
name: "deploy-project",
|
|
1307
1435
|
description: "Deploy a Strapi Cloud project",
|
|
1308
|
-
action: action$
|
|
1309
|
-
command: command$
|
|
1436
|
+
action: action$5,
|
|
1437
|
+
command: command$7
|
|
1310
1438
|
};
|
|
1311
|
-
|
|
1312
|
-
async function getExistingConfig(ctx) {
|
|
1439
|
+
async function getLocalConfig(ctx) {
|
|
1313
1440
|
try {
|
|
1314
1441
|
return await retrieve();
|
|
1315
1442
|
} catch (e) {
|
|
@@ -1318,6 +1445,21 @@ async function getExistingConfig(ctx) {
|
|
|
1318
1445
|
return null;
|
|
1319
1446
|
}
|
|
1320
1447
|
}
|
|
1448
|
+
async function getLocalProject(ctx) {
|
|
1449
|
+
const localConfig = await getLocalConfig(ctx);
|
|
1450
|
+
if (!localConfig || !localConfig.project) {
|
|
1451
|
+
ctx.logger.warn(
|
|
1452
|
+
`
|
|
1453
|
+
We couldn't find a valid local project config.
|
|
1454
|
+
Please link your local project to an existing Strapi Cloud project using the ${chalk__default.default.cyan(
|
|
1455
|
+
"link"
|
|
1456
|
+
)} command.`
|
|
1457
|
+
);
|
|
1458
|
+
process.exit(1);
|
|
1459
|
+
}
|
|
1460
|
+
return localConfig.project;
|
|
1461
|
+
}
|
|
1462
|
+
const QUIT_OPTION$1 = "Quit";
|
|
1321
1463
|
async function promptForRelink(ctx, cloudApiService, existingConfig) {
|
|
1322
1464
|
if (existingConfig && existingConfig.project) {
|
|
1323
1465
|
const { shouldRelink } = await inquirer__default.default.prompt([
|
|
@@ -1347,7 +1489,7 @@ async function getProjectsList(ctx, cloudApiService, existingConfig) {
|
|
|
1347
1489
|
} = await cloudApiService.listLinkProjects();
|
|
1348
1490
|
spinner.succeed();
|
|
1349
1491
|
if (!Array.isArray(projectList)) {
|
|
1350
|
-
ctx.logger.log("We couldn't find any projects available for linking in Strapi Cloud");
|
|
1492
|
+
ctx.logger.log("We couldn't find any projects available for linking in Strapi Cloud.");
|
|
1351
1493
|
return null;
|
|
1352
1494
|
}
|
|
1353
1495
|
const projects = projectList.filter(
|
|
@@ -1359,7 +1501,7 @@ async function getProjectsList(ctx, cloudApiService, existingConfig) {
|
|
|
1359
1501
|
};
|
|
1360
1502
|
});
|
|
1361
1503
|
if (projects.length === 0) {
|
|
1362
|
-
ctx.logger.log("We couldn't find any projects available for linking in Strapi Cloud");
|
|
1504
|
+
ctx.logger.log("We couldn't find any projects available for linking in Strapi Cloud.");
|
|
1363
1505
|
return null;
|
|
1364
1506
|
}
|
|
1365
1507
|
return projects;
|
|
@@ -1377,7 +1519,7 @@ async function getUserSelection(ctx, projects) {
|
|
|
1377
1519
|
type: "list",
|
|
1378
1520
|
name: "linkProject",
|
|
1379
1521
|
message: "Which project do you want to link?",
|
|
1380
|
-
choices: [...projects, { name: chalk__default.default.grey(`(${QUIT_OPTION})`), value: null }]
|
|
1522
|
+
choices: [...projects, { name: chalk__default.default.grey(`(${QUIT_OPTION$1})`), value: null }]
|
|
1381
1523
|
}
|
|
1382
1524
|
]);
|
|
1383
1525
|
if (!answer.linkProject) {
|
|
@@ -1390,7 +1532,7 @@ async function getUserSelection(ctx, projects) {
|
|
|
1390
1532
|
return null;
|
|
1391
1533
|
}
|
|
1392
1534
|
}
|
|
1393
|
-
const action$
|
|
1535
|
+
const action$4 = async (ctx) => {
|
|
1394
1536
|
const { getValidToken } = await tokenServiceFactory(ctx);
|
|
1395
1537
|
const token = await getValidToken(ctx, promptLogin);
|
|
1396
1538
|
const { logger } = ctx;
|
|
@@ -1398,7 +1540,7 @@ const action$2 = async (ctx) => {
|
|
|
1398
1540
|
return;
|
|
1399
1541
|
}
|
|
1400
1542
|
const cloudApiService = await cloudApiFactory(ctx, token);
|
|
1401
|
-
const existingConfig = await
|
|
1543
|
+
const existingConfig = await getLocalConfig(ctx);
|
|
1402
1544
|
const shouldRelink = await promptForRelink(ctx, cloudApiService, existingConfig);
|
|
1403
1545
|
if (!shouldRelink) {
|
|
1404
1546
|
return;
|
|
@@ -1433,7 +1575,9 @@ const action$2 = async (ctx) => {
|
|
|
1433
1575
|
return;
|
|
1434
1576
|
}
|
|
1435
1577
|
await save({ project: answer.linkProject });
|
|
1436
|
-
logger.log(
|
|
1578
|
+
logger.log(
|
|
1579
|
+
` You have successfully linked your project to ${chalk__default.default.cyan(answer.linkProject.displayName)}. You are now able to deploy your project.`
|
|
1580
|
+
);
|
|
1437
1581
|
await trackEvent(ctx, cloudApiService, "didLinkProject", {
|
|
1438
1582
|
projectInternalName: answer.linkProject
|
|
1439
1583
|
});
|
|
@@ -1445,17 +1589,17 @@ const action$2 = async (ctx) => {
|
|
|
1445
1589
|
});
|
|
1446
1590
|
}
|
|
1447
1591
|
};
|
|
1448
|
-
const command$
|
|
1449
|
-
command2.command("cloud:link").alias("link").description("Link a local directory to a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("link", action$
|
|
1592
|
+
const command$6 = ({ command: command2, ctx }) => {
|
|
1593
|
+
command2.command("cloud:link").alias("link").description("Link a local directory to a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("link", action$4)(ctx));
|
|
1450
1594
|
};
|
|
1451
1595
|
const link = {
|
|
1452
1596
|
name: "link-project",
|
|
1453
1597
|
description: "Link a local directory to a Strapi Cloud project",
|
|
1454
|
-
action: action$
|
|
1455
|
-
command: command$
|
|
1598
|
+
action: action$4,
|
|
1599
|
+
command: command$6
|
|
1456
1600
|
};
|
|
1457
|
-
const command$
|
|
1458
|
-
|
|
1601
|
+
const command$5 = ({ ctx }) => {
|
|
1602
|
+
return commander.createCommand("cloud:login").alias("login").description("Strapi Cloud Login").addHelpText(
|
|
1459
1603
|
"after",
|
|
1460
1604
|
"\nAfter running this command, you will be prompted to enter your authentication information."
|
|
1461
1605
|
).option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("login", loginAction)(ctx));
|
|
@@ -1464,10 +1608,10 @@ const login = {
|
|
|
1464
1608
|
name: "login",
|
|
1465
1609
|
description: "Strapi Cloud Login",
|
|
1466
1610
|
action: loginAction,
|
|
1467
|
-
command: command$
|
|
1611
|
+
command: command$5
|
|
1468
1612
|
};
|
|
1469
1613
|
const openModule = import("open");
|
|
1470
|
-
const action$
|
|
1614
|
+
const action$3 = async (ctx) => {
|
|
1471
1615
|
const { logger } = ctx;
|
|
1472
1616
|
const { retrieveToken, eraseToken } = await tokenServiceFactory(ctx);
|
|
1473
1617
|
const token = await retrieveToken();
|
|
@@ -1499,25 +1643,25 @@ const action$1 = async (ctx) => {
|
|
|
1499
1643
|
}
|
|
1500
1644
|
await trackEvent(ctx, cloudApiService, "didLogout", { loginMethod: "cli" });
|
|
1501
1645
|
};
|
|
1502
|
-
const command$
|
|
1503
|
-
|
|
1646
|
+
const command$4 = ({ ctx }) => {
|
|
1647
|
+
return commander.createCommand("cloud:logout").alias("logout").description("Strapi Cloud Logout").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("logout", action$3)(ctx));
|
|
1504
1648
|
};
|
|
1505
1649
|
const logout = {
|
|
1506
1650
|
name: "logout",
|
|
1507
1651
|
description: "Strapi Cloud Logout",
|
|
1508
|
-
action: action$
|
|
1509
|
-
command: command$
|
|
1652
|
+
action: action$3,
|
|
1653
|
+
command: command$4
|
|
1510
1654
|
};
|
|
1511
|
-
const command$
|
|
1512
|
-
|
|
1655
|
+
const command$3 = ({ ctx }) => {
|
|
1656
|
+
return commander.createCommand("cloud:create-project").description("Create a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("cloud:create-project", action$6)(ctx));
|
|
1513
1657
|
};
|
|
1514
1658
|
const createProject = {
|
|
1515
1659
|
name: "create-project",
|
|
1516
1660
|
description: "Create a new project",
|
|
1517
|
-
action: action$
|
|
1518
|
-
command: command$
|
|
1661
|
+
action: action$6,
|
|
1662
|
+
command: command$3
|
|
1519
1663
|
};
|
|
1520
|
-
const action = async (ctx) => {
|
|
1664
|
+
const action$2 = async (ctx) => {
|
|
1521
1665
|
const { getValidToken } = await tokenServiceFactory(ctx);
|
|
1522
1666
|
const token = await getValidToken(ctx, promptLogin);
|
|
1523
1667
|
const { logger } = ctx;
|
|
@@ -1537,12 +1681,194 @@ const action = async (ctx) => {
|
|
|
1537
1681
|
spinner.fail("An error occurred while fetching your projects from Strapi Cloud.");
|
|
1538
1682
|
}
|
|
1539
1683
|
};
|
|
1540
|
-
const command = ({ command: command2, ctx }) => {
|
|
1541
|
-
command2.command("cloud:projects").alias("projects").description("List Strapi Cloud projects").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("projects", action)(ctx));
|
|
1684
|
+
const command$2 = ({ command: command2, ctx }) => {
|
|
1685
|
+
command2.command("cloud:projects").alias("projects").description("List Strapi Cloud projects").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("projects", action$2)(ctx));
|
|
1542
1686
|
};
|
|
1543
1687
|
const listProjects = {
|
|
1544
1688
|
name: "list-projects",
|
|
1545
1689
|
description: "List Strapi Cloud projects",
|
|
1690
|
+
action: action$2,
|
|
1691
|
+
command: command$2
|
|
1692
|
+
};
|
|
1693
|
+
const action$1 = async (ctx) => {
|
|
1694
|
+
const { getValidToken } = await tokenServiceFactory(ctx);
|
|
1695
|
+
const token = await getValidToken(ctx, promptLogin);
|
|
1696
|
+
const { logger } = ctx;
|
|
1697
|
+
if (!token) {
|
|
1698
|
+
return;
|
|
1699
|
+
}
|
|
1700
|
+
const project = await getLocalProject(ctx);
|
|
1701
|
+
if (!project) {
|
|
1702
|
+
ctx.logger.debug(`No valid local project configuration was found.`);
|
|
1703
|
+
return;
|
|
1704
|
+
}
|
|
1705
|
+
const cloudApiService = await cloudApiFactory(ctx, token);
|
|
1706
|
+
const spinner = logger.spinner("Fetching environments...").start();
|
|
1707
|
+
await trackEvent(ctx, cloudApiService, "willListEnvironment", {
|
|
1708
|
+
projectInternalName: project.name
|
|
1709
|
+
});
|
|
1710
|
+
try {
|
|
1711
|
+
const {
|
|
1712
|
+
data: { data: environmentsList }
|
|
1713
|
+
} = await cloudApiService.listEnvironments({ name: project.name });
|
|
1714
|
+
spinner.succeed();
|
|
1715
|
+
logger.log(environmentsList);
|
|
1716
|
+
await trackEvent(ctx, cloudApiService, "didListEnvironment", {
|
|
1717
|
+
projectInternalName: project.name
|
|
1718
|
+
});
|
|
1719
|
+
} catch (e) {
|
|
1720
|
+
if (e.response && e.response.status === 404) {
|
|
1721
|
+
spinner.succeed();
|
|
1722
|
+
logger.warn(
|
|
1723
|
+
`
|
|
1724
|
+
The project associated with this folder does not exist in Strapi Cloud.
|
|
1725
|
+
Please link your local project to an existing Strapi Cloud project using the ${chalk__default.default.cyan(
|
|
1726
|
+
"link"
|
|
1727
|
+
)} command`
|
|
1728
|
+
);
|
|
1729
|
+
} else {
|
|
1730
|
+
spinner.fail("An error occurred while fetching environments data from Strapi Cloud.");
|
|
1731
|
+
logger.debug("Failed to list environments", e);
|
|
1732
|
+
}
|
|
1733
|
+
await trackEvent(ctx, cloudApiService, "didNotListEnvironment", {
|
|
1734
|
+
projectInternalName: project.name
|
|
1735
|
+
});
|
|
1736
|
+
}
|
|
1737
|
+
};
|
|
1738
|
+
function defineCloudNamespace(command2, ctx) {
|
|
1739
|
+
const cloud = command2.command("cloud").description("Manage Strapi Cloud projects");
|
|
1740
|
+
cloud.command("environments").description("Alias for cloud environment list").action(() => runAction("list", action$1)(ctx));
|
|
1741
|
+
return cloud;
|
|
1742
|
+
}
|
|
1743
|
+
let environmentCmd = null;
|
|
1744
|
+
const initializeEnvironmentCommand = (command2, ctx) => {
|
|
1745
|
+
if (!environmentCmd) {
|
|
1746
|
+
const cloud = defineCloudNamespace(command2, ctx);
|
|
1747
|
+
environmentCmd = cloud.command("environment").description("Manage environments");
|
|
1748
|
+
}
|
|
1749
|
+
return environmentCmd;
|
|
1750
|
+
};
|
|
1751
|
+
const command$1 = ({ command: command2, ctx }) => {
|
|
1752
|
+
const environmentCmd2 = initializeEnvironmentCommand(command2, ctx);
|
|
1753
|
+
environmentCmd2.command("list").description("List Strapi Cloud project environments").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("list", action$1)(ctx));
|
|
1754
|
+
};
|
|
1755
|
+
const listEnvironments = {
|
|
1756
|
+
name: "list-environments",
|
|
1757
|
+
description: "List Strapi Cloud environments",
|
|
1758
|
+
action: action$1,
|
|
1759
|
+
command: command$1
|
|
1760
|
+
};
|
|
1761
|
+
const QUIT_OPTION = "Quit";
|
|
1762
|
+
const action = async (ctx) => {
|
|
1763
|
+
const { getValidToken } = await tokenServiceFactory(ctx);
|
|
1764
|
+
const token = await getValidToken(ctx, promptLogin);
|
|
1765
|
+
const { logger } = ctx;
|
|
1766
|
+
if (!token) {
|
|
1767
|
+
return;
|
|
1768
|
+
}
|
|
1769
|
+
const project = await getLocalProject(ctx);
|
|
1770
|
+
if (!project) {
|
|
1771
|
+
logger.debug(`No valid local project configuration was found.`);
|
|
1772
|
+
return;
|
|
1773
|
+
}
|
|
1774
|
+
const cloudApiService = await cloudApiFactory(ctx, token);
|
|
1775
|
+
const environments = await getEnvironmentsList(ctx, cloudApiService, project);
|
|
1776
|
+
if (!environments) {
|
|
1777
|
+
logger.debug(`Fetching environments failed.`);
|
|
1778
|
+
return;
|
|
1779
|
+
}
|
|
1780
|
+
if (environments.length === 0) {
|
|
1781
|
+
logger.log(
|
|
1782
|
+
`The only available environment is already linked. You can add a new one from your project settings on the Strapi Cloud dashboard.`
|
|
1783
|
+
);
|
|
1784
|
+
return;
|
|
1785
|
+
}
|
|
1786
|
+
const answer = await promptUserForEnvironment(ctx, environments);
|
|
1787
|
+
if (!answer) {
|
|
1788
|
+
return;
|
|
1789
|
+
}
|
|
1790
|
+
await trackEvent(ctx, cloudApiService, "willLinkEnvironment", {
|
|
1791
|
+
projectName: project.name,
|
|
1792
|
+
environmentName: answer.targetEnvironment
|
|
1793
|
+
});
|
|
1794
|
+
try {
|
|
1795
|
+
await patch({ project: { targetEnvironment: answer.targetEnvironment } });
|
|
1796
|
+
} catch (e) {
|
|
1797
|
+
await trackEvent(ctx, cloudApiService, "didNotLinkEnvironment", {
|
|
1798
|
+
projectName: project.name,
|
|
1799
|
+
environmentName: answer.targetEnvironment
|
|
1800
|
+
});
|
|
1801
|
+
logger.debug("Failed to link environment", e);
|
|
1802
|
+
logger.error(
|
|
1803
|
+
"Failed to link the environment. If this issue persists, try re-linking your project or contact support."
|
|
1804
|
+
);
|
|
1805
|
+
process.exit(1);
|
|
1806
|
+
}
|
|
1807
|
+
logger.log(
|
|
1808
|
+
` You have successfully linked your project to ${chalk__default.default.cyan(answer.targetEnvironment)}, on ${chalk__default.default.cyan(project.displayName)}. You are now able to deploy your project.`
|
|
1809
|
+
);
|
|
1810
|
+
await trackEvent(ctx, cloudApiService, "didLinkEnvironment", {
|
|
1811
|
+
projectName: project.name,
|
|
1812
|
+
environmentName: answer.targetEnvironment
|
|
1813
|
+
});
|
|
1814
|
+
};
|
|
1815
|
+
async function promptUserForEnvironment(ctx, environments) {
|
|
1816
|
+
const { logger } = ctx;
|
|
1817
|
+
try {
|
|
1818
|
+
const answer = await inquirer__default.default.prompt([
|
|
1819
|
+
{
|
|
1820
|
+
type: "list",
|
|
1821
|
+
name: "targetEnvironment",
|
|
1822
|
+
message: "Which environment do you want to link?",
|
|
1823
|
+
choices: [...environments, { name: chalk__default.default.grey(`(${QUIT_OPTION})`), value: null }]
|
|
1824
|
+
}
|
|
1825
|
+
]);
|
|
1826
|
+
if (!answer.targetEnvironment) {
|
|
1827
|
+
return null;
|
|
1828
|
+
}
|
|
1829
|
+
return answer;
|
|
1830
|
+
} catch (e) {
|
|
1831
|
+
logger.debug("Failed to get user input", e);
|
|
1832
|
+
logger.error("An error occurred while trying to get your environment selection.");
|
|
1833
|
+
return null;
|
|
1834
|
+
}
|
|
1835
|
+
}
|
|
1836
|
+
async function getEnvironmentsList(ctx, cloudApiService, project) {
|
|
1837
|
+
const spinner = ctx.logger.spinner("Fetching environments...\n").start();
|
|
1838
|
+
try {
|
|
1839
|
+
const {
|
|
1840
|
+
data: { data: environmentsList }
|
|
1841
|
+
} = await cloudApiService.listLinkEnvironments({ name: project.name });
|
|
1842
|
+
if (!Array.isArray(environmentsList) || environmentsList.length === 0) {
|
|
1843
|
+
throw new Error("Environments not found in server response");
|
|
1844
|
+
}
|
|
1845
|
+
spinner.succeed();
|
|
1846
|
+
return environmentsList.filter(
|
|
1847
|
+
(environment) => environment.name !== project.targetEnvironment
|
|
1848
|
+
);
|
|
1849
|
+
} catch (e) {
|
|
1850
|
+
if (e.response && e.response.status === 404) {
|
|
1851
|
+
spinner.succeed();
|
|
1852
|
+
ctx.logger.warn(
|
|
1853
|
+
`
|
|
1854
|
+
The project associated with this folder does not exist in Strapi Cloud.
|
|
1855
|
+
Please link your local project to an existing Strapi Cloud project using the ${chalk__default.default.cyan(
|
|
1856
|
+
"link"
|
|
1857
|
+
)} command.`
|
|
1858
|
+
);
|
|
1859
|
+
} else {
|
|
1860
|
+
spinner.fail("An error occurred while fetching environments data from Strapi Cloud.");
|
|
1861
|
+
ctx.logger.debug("Failed to list environments", e);
|
|
1862
|
+
}
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1865
|
+
const command = ({ command: command2, ctx }) => {
|
|
1866
|
+
const environmentCmd2 = initializeEnvironmentCommand(command2, ctx);
|
|
1867
|
+
environmentCmd2.command("link").description("Link project to a specific Strapi Cloud project environment").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("link", action)(ctx));
|
|
1868
|
+
};
|
|
1869
|
+
const linkEnvironment = {
|
|
1870
|
+
name: "link-environment",
|
|
1871
|
+
description: "Link Strapi Cloud environment to a local project",
|
|
1546
1872
|
action,
|
|
1547
1873
|
command
|
|
1548
1874
|
};
|
|
@@ -1552,11 +1878,21 @@ const cli = {
|
|
|
1552
1878
|
login,
|
|
1553
1879
|
logout,
|
|
1554
1880
|
createProject,
|
|
1555
|
-
|
|
1881
|
+
linkEnvironment,
|
|
1882
|
+
listProjects,
|
|
1883
|
+
listEnvironments
|
|
1556
1884
|
};
|
|
1557
|
-
const cloudCommands = [
|
|
1885
|
+
const cloudCommands = [
|
|
1886
|
+
deployProject,
|
|
1887
|
+
link,
|
|
1888
|
+
login,
|
|
1889
|
+
logout,
|
|
1890
|
+
linkEnvironment,
|
|
1891
|
+
listProjects,
|
|
1892
|
+
listEnvironments
|
|
1893
|
+
];
|
|
1558
1894
|
async function initCloudCLIConfig() {
|
|
1559
|
-
const localConfig = await getLocalConfig();
|
|
1895
|
+
const localConfig = await getLocalConfig$1();
|
|
1560
1896
|
if (!localConfig.deviceId) {
|
|
1561
1897
|
localConfig.deviceId = crypto__default.default.randomUUID();
|
|
1562
1898
|
}
|
|
@@ -1570,7 +1906,10 @@ async function buildStrapiCloudCommands({
|
|
|
1570
1906
|
await initCloudCLIConfig();
|
|
1571
1907
|
for (const cloudCommand of cloudCommands) {
|
|
1572
1908
|
try {
|
|
1573
|
-
await cloudCommand.command({ command: command2, ctx, argv });
|
|
1909
|
+
const subCommand = await cloudCommand.command({ command: command2, ctx, argv });
|
|
1910
|
+
if (subCommand) {
|
|
1911
|
+
command2.addCommand(subCommand);
|
|
1912
|
+
}
|
|
1574
1913
|
} catch (e) {
|
|
1575
1914
|
console.error(`Failed to load command ${cloudCommand.name}`, e);
|
|
1576
1915
|
}
|