@strapi/cloud-cli 5.3.0 → 5.4.1

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/index.mjs CHANGED
@@ -2,6 +2,7 @@ import crypto$1 from "crypto";
2
2
  import * as fse from "fs-extra";
3
3
  import fse__default from "fs-extra";
4
4
  import inquirer from "inquirer";
5
+ import boxen from "boxen";
5
6
  import * as path from "path";
6
7
  import path__default from "path";
7
8
  import chalk from "chalk";
@@ -13,6 +14,7 @@ import { minimatch } from "minimatch";
13
14
  import { defaults, has } from "lodash/fp";
14
15
  import os from "os";
15
16
  import XDGAppPaths from "xdg-app-paths";
17
+ import { merge } from "lodash";
16
18
  import jwksClient from "jwks-rsa";
17
19
  import jwt from "jsonwebtoken";
18
20
  import stringify from "fast-safe-stringify";
@@ -118,7 +120,7 @@ async function getConfigPath() {
118
120
  }
119
121
  return configPath;
120
122
  }
121
- async function getLocalConfig() {
123
+ async function getLocalConfig$1() {
122
124
  const configPath = await getConfigPath();
123
125
  const configFilePath = path__default.join(configPath, CONFIG_FILENAME);
124
126
  await fse__default.ensureFile(configFilePath);
@@ -134,7 +136,7 @@ async function saveLocalConfig(data) {
134
136
  await fse__default.writeJson(configFilePath, data, { encoding: "utf8", spaces: 2, mode: 384 });
135
137
  }
136
138
  const name = "@strapi/cloud-cli";
137
- const version = "5.2.0";
139
+ const version = "5.4.0";
138
140
  const description = "Commands to interact with the Strapi Cloud";
139
141
  const keywords = [
140
142
  "strapi",
@@ -179,8 +181,9 @@ const scripts = {
179
181
  watch: "pack-up watch"
180
182
  };
181
183
  const dependencies = {
182
- "@strapi/utils": "workspace:*",
184
+ "@strapi/utils": "5.4.0",
183
185
  axios: "1.7.4",
186
+ boxen: "5.1.2",
184
187
  chalk: "4.1.2",
185
188
  "cli-progress": "3.12.0",
186
189
  commander: "8.3.0",
@@ -204,13 +207,14 @@ const devDependencies = {
204
207
  "@types/cli-progress": "3.11.5",
205
208
  "@types/eventsource": "1.1.15",
206
209
  "@types/lodash": "^4.14.191",
207
- "eslint-config-custom": "workspace:*",
208
- tsconfig: "workspace:*"
210
+ "eslint-config-custom": "5.4.0",
211
+ tsconfig: "5.4.0"
209
212
  };
210
213
  const engines = {
211
214
  node: ">=18.0.0 <=22.x.x",
212
215
  npm: ">=6.0.0"
213
216
  };
217
+ const gitHead = "7d785703f52464577d077c4618cbe68b44f8a9cd";
214
218
  const packageJson = {
215
219
  name,
216
220
  version,
@@ -231,11 +235,12 @@ const packageJson = {
231
235
  scripts,
232
236
  dependencies,
233
237
  devDependencies,
234
- engines
238
+ engines,
239
+ gitHead
235
240
  };
236
241
  const VERSION = "v1";
237
242
  async function cloudApiFactory({ logger }, token) {
238
- const localConfig = await getLocalConfig();
243
+ const localConfig = await getLocalConfig$1();
239
244
  const customHeaders = {
240
245
  "x-device-id": localConfig.deviceId,
241
246
  "x-app-version": packageJson.version,
@@ -343,6 +348,20 @@ async function cloudApiFactory({ logger }, token) {
343
348
  throw error;
344
349
  }
345
350
  },
351
+ async listLinkEnvironments({ name: name2 }) {
352
+ try {
353
+ const response = await axiosCloudAPI.get(`/projects/${name2}/environments-linkable`);
354
+ if (response.status !== 200) {
355
+ throw new Error("Error fetching cloud environments from the server.");
356
+ }
357
+ return response;
358
+ } catch (error) {
359
+ logger.debug(
360
+ "🥲 Oops! Couldn't retrieve your project's environments from the server. Please try again."
361
+ );
362
+ throw error;
363
+ }
364
+ },
346
365
  async getProject({ name: name2 }) {
347
366
  try {
348
367
  const response = await axiosCloudAPI.get(`/projects/${name2}`);
@@ -366,26 +385,43 @@ async function cloudApiFactory({ logger }, token) {
366
385
  };
367
386
  }
368
387
  const LOCAL_SAVE_FILENAME = ".strapi-cloud.json";
388
+ const getFilePath = (directoryPath) => path__default.join(directoryPath || process.cwd(), LOCAL_SAVE_FILENAME);
369
389
  async function save(data, { directoryPath } = {}) {
370
- const alreadyInFileData = await retrieve({ directoryPath });
371
- const storedData = { ...alreadyInFileData, ...data };
372
- const pathToFile = path__default.join(directoryPath || process.cwd(), LOCAL_SAVE_FILENAME);
390
+ const pathToFile = getFilePath(directoryPath);
373
391
  await fse__default.ensureDir(path__default.dirname(pathToFile));
374
- await fse__default.writeJson(pathToFile, storedData, { encoding: "utf8" });
392
+ await fse__default.writeJson(pathToFile, data, { encoding: "utf8" });
375
393
  }
376
394
  async function retrieve({
377
395
  directoryPath
378
396
  } = {}) {
379
- const pathToFile = path__default.join(directoryPath || process.cwd(), LOCAL_SAVE_FILENAME);
397
+ const pathToFile = getFilePath(directoryPath);
380
398
  const pathExists = await fse__default.pathExists(pathToFile);
381
399
  if (!pathExists) {
382
400
  return {};
383
401
  }
384
402
  return fse__default.readJSON(pathToFile, { encoding: "utf8" });
385
403
  }
404
+ async function patch(patchData, { directoryPath } = {}) {
405
+ const pathToFile = getFilePath(directoryPath);
406
+ const existingData = await retrieve({ directoryPath });
407
+ if (!existingData) {
408
+ throw new Error("No configuration data found to patch.");
409
+ }
410
+ const newData = merge(existingData, patchData);
411
+ await fse__default.writeJson(pathToFile, newData, { encoding: "utf8" });
412
+ }
413
+ async function deleteConfig({ directoryPath } = {}) {
414
+ const pathToFile = getFilePath(directoryPath);
415
+ const pathExists = await fse__default.pathExists(pathToFile);
416
+ if (pathExists) {
417
+ await fse__default.remove(pathToFile);
418
+ }
419
+ }
386
420
  const strapiInfoSave = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
387
421
  __proto__: null,
388
422
  LOCAL_SAVE_FILENAME,
423
+ deleteConfig,
424
+ patch,
389
425
  retrieve,
390
426
  save
391
427
  }, Symbol.toStringTag, { value: "Module" }));
@@ -393,7 +429,7 @@ let cliConfig;
393
429
  async function tokenServiceFactory({ logger }) {
394
430
  const cloudApiService = await cloudApiFactory({ logger });
395
431
  async function saveToken(str) {
396
- const appConfig = await getLocalConfig();
432
+ const appConfig = await getLocalConfig$1();
397
433
  if (!appConfig) {
398
434
  logger.error("There was a problem saving your token. Please try again.");
399
435
  return;
@@ -407,7 +443,7 @@ async function tokenServiceFactory({ logger }) {
407
443
  }
408
444
  }
409
445
  async function retrieveToken() {
410
- const appConfig = await getLocalConfig();
446
+ const appConfig = await getLocalConfig$1();
411
447
  if (appConfig.token) {
412
448
  if (await isTokenValid(appConfig.token)) {
413
449
  return appConfig.token;
@@ -469,7 +505,7 @@ async function tokenServiceFactory({ logger }) {
469
505
  }
470
506
  }
471
507
  async function eraseToken() {
472
- const appConfig = await getLocalConfig();
508
+ const appConfig = await getLocalConfig$1();
473
509
  if (!appConfig) {
474
510
  return;
475
511
  }
@@ -915,7 +951,7 @@ async function createProject$1(ctx, cloudApi, projectInput) {
915
951
  throw e;
916
952
  }
917
953
  }
918
- const action$5 = async (ctx) => {
954
+ const action$6 = async (ctx) => {
919
955
  const { logger } = ctx;
920
956
  const { getValidToken, eraseToken } = await tokenServiceFactory(ctx);
921
957
  const token = await getValidToken(ctx, promptLogin);
@@ -1044,7 +1080,14 @@ const buildLogsServiceFactory = ({ logger }) => {
1044
1080
  });
1045
1081
  };
1046
1082
  };
1047
- const QUIT_OPTION$1 = "Quit";
1083
+ const boxenOptions = {
1084
+ padding: 1,
1085
+ margin: 1,
1086
+ align: "center",
1087
+ borderColor: "yellow",
1088
+ borderStyle: "round"
1089
+ };
1090
+ const QUIT_OPTION$2 = "Quit";
1048
1091
  async function promptForEnvironment(environments) {
1049
1092
  const choices = environments.map((env2) => ({ name: env2, value: env2 }));
1050
1093
  const { selectedEnvironment } = await inquirer.prompt([
@@ -1052,22 +1095,12 @@ async function promptForEnvironment(environments) {
1052
1095
  type: "list",
1053
1096
  name: "selectedEnvironment",
1054
1097
  message: "Select the environment to deploy:",
1055
- choices: [...choices, { name: chalk.grey(`(${QUIT_OPTION$1})`), value: null }]
1098
+ choices: [...choices, { name: chalk.grey(`(${QUIT_OPTION$2})`), value: null }]
1056
1099
  }
1057
1100
  ]);
1058
1101
  if (selectedEnvironment === null) {
1059
1102
  process.exit(1);
1060
1103
  }
1061
- const { confirm } = await inquirer.prompt([
1062
- {
1063
- type: "confirm",
1064
- name: "confirm",
1065
- message: `Do you want to proceed with deployment to ${chalk.cyan(selectedEnvironment)}?`
1066
- }
1067
- ]);
1068
- if (!confirm) {
1069
- process.exit(1);
1070
- }
1071
1104
  return selectedEnvironment;
1072
1105
  }
1073
1106
  async function upload(ctx, project, token, maxProjectFileSize) {
@@ -1148,11 +1181,11 @@ async function upload(ctx, project, token, maxProjectFileSize) {
1148
1181
  process.exit(1);
1149
1182
  }
1150
1183
  }
1151
- async function getProject$1(ctx) {
1184
+ async function getProject(ctx) {
1152
1185
  const { project } = await retrieve();
1153
1186
  if (!project) {
1154
1187
  try {
1155
- return await action$5(ctx);
1188
+ return await action$6(ctx);
1156
1189
  } catch (e) {
1157
1190
  ctx.logger.error("An error occurred while deploying the project. Please try again later.");
1158
1191
  ctx.logger.debug(e);
@@ -1173,24 +1206,54 @@ async function getConfig({
1173
1206
  return null;
1174
1207
  }
1175
1208
  }
1176
- const action$4 = async (ctx, opts) => {
1209
+ function validateEnvironment(ctx, environment, environments) {
1210
+ if (!environments.includes(environment)) {
1211
+ ctx.logger.error(`Environment ${environment} does not exist.`);
1212
+ process.exit(1);
1213
+ }
1214
+ }
1215
+ async function getTargetEnvironment(ctx, opts, project, environments) {
1216
+ if (opts.env) {
1217
+ validateEnvironment(ctx, opts.env, environments);
1218
+ return opts.env;
1219
+ }
1220
+ if (project.targetEnvironment) {
1221
+ return project.targetEnvironment;
1222
+ }
1223
+ if (environments.length > 1) {
1224
+ return promptForEnvironment(environments);
1225
+ }
1226
+ return environments[0];
1227
+ }
1228
+ function hasPendingOrLiveDeployment(environments, targetEnvironment) {
1229
+ const environment = environments.find((env2) => env2.name === targetEnvironment);
1230
+ if (!environment) {
1231
+ throw new Error(`Environment details ${targetEnvironment} not found.`);
1232
+ }
1233
+ return environment.hasPendingDeployment || environment.hasLiveDeployment || false;
1234
+ }
1235
+ const action$5 = async (ctx, opts) => {
1177
1236
  const { getValidToken } = await tokenServiceFactory(ctx);
1178
1237
  const token = await getValidToken(ctx, promptLogin);
1179
1238
  if (!token) {
1180
1239
  return;
1181
1240
  }
1182
- const project = await getProject$1(ctx);
1241
+ const project = await getProject(ctx);
1183
1242
  if (!project) {
1184
1243
  return;
1185
1244
  }
1186
1245
  const cloudApiService = await cloudApiFactory(ctx, token);
1246
+ let projectData;
1187
1247
  let environments;
1248
+ let environmentsDetails;
1188
1249
  try {
1189
1250
  const {
1190
- data: { data: projectData, metadata }
1251
+ data: { data, metadata }
1191
1252
  } = await cloudApiService.getProject({ name: project.name });
1192
- const isProjectSuspended = projectData.suspendedAt;
1253
+ projectData = data;
1193
1254
  environments = projectData.environments;
1255
+ environmentsDetails = projectData.environmentsDetails;
1256
+ const isProjectSuspended = projectData.suspendedAt;
1194
1257
  if (isProjectSuspended) {
1195
1258
  ctx.logger.log(
1196
1259
  "\n Oops! This project has been suspended. \n\n Please reactivate it from the dashboard to continue deploying: "
@@ -1237,22 +1300,34 @@ Please link your local project to an existing Strapi Cloud project using the ${c
1237
1300
  );
1238
1301
  maxSize = 1e8;
1239
1302
  }
1240
- let targetEnvironment;
1241
- if (opts.environment) {
1242
- if (!environments.includes(opts.environment)) {
1243
- ctx.logger.error(`Environment ${opts.environment} does not exist.`);
1244
- return;
1303
+ project.targetEnvironment = await getTargetEnvironment(ctx, opts, project, environments);
1304
+ if (!opts.force) {
1305
+ const shouldDisplayWarning = hasPendingOrLiveDeployment(
1306
+ environmentsDetails,
1307
+ project.targetEnvironment
1308
+ );
1309
+ if (shouldDisplayWarning) {
1310
+ ctx.logger.log(boxen(cliConfig2.projectDeployment.confirmationText, boxenOptions));
1311
+ const { confirm } = await inquirer.prompt([
1312
+ {
1313
+ type: "confirm",
1314
+ name: "confirm",
1315
+ message: `Do you want to proceed with deployment to ${chalk.cyan(projectData.displayName)} on ${chalk.cyan(project.targetEnvironment)} environment?`
1316
+ }
1317
+ ]);
1318
+ if (!confirm) {
1319
+ process.exit(1);
1320
+ }
1245
1321
  }
1246
- targetEnvironment = opts.environment;
1247
- } else {
1248
- targetEnvironment = environments.length > 1 ? await promptForEnvironment(environments) : environments[0];
1249
1322
  }
1250
- project.targetEnvironment = targetEnvironment;
1251
1323
  const buildId = await upload(ctx, project, token, maxSize);
1252
1324
  if (!buildId) {
1253
1325
  return;
1254
1326
  }
1255
1327
  try {
1328
+ ctx.logger.log(
1329
+ `🚀 Deploying project to ${chalk.cyan(project.targetEnvironment ?? `production`)} environment...`
1330
+ );
1256
1331
  notificationService(`${apiConfig.apiBaseUrl}/notifications`, token, cliConfig2);
1257
1332
  await buildLogsService(`${apiConfig.apiBaseUrl}/v1/logs/${buildId}`, token, cliConfig2);
1258
1333
  ctx.logger.log(
@@ -1297,17 +1372,16 @@ const runAction = (name2, action2) => (...args) => {
1297
1372
  process.exit(1);
1298
1373
  });
1299
1374
  };
1300
- const command$6 = ({ ctx }) => {
1301
- return 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("-e, --environment <name>", "Specify the environment to deploy").action((opts) => runAction("deploy", action$4)(ctx, opts));
1375
+ const command$7 = ({ ctx }) => {
1376
+ return 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));
1302
1377
  };
1303
1378
  const deployProject = {
1304
1379
  name: "deploy-project",
1305
1380
  description: "Deploy a Strapi Cloud project",
1306
- action: action$4,
1307
- command: command$6
1381
+ action: action$5,
1382
+ command: command$7
1308
1383
  };
1309
- const QUIT_OPTION = "Quit";
1310
- async function getExistingConfig(ctx) {
1384
+ async function getLocalConfig(ctx) {
1311
1385
  try {
1312
1386
  return await retrieve();
1313
1387
  } catch (e) {
@@ -1316,6 +1390,21 @@ async function getExistingConfig(ctx) {
1316
1390
  return null;
1317
1391
  }
1318
1392
  }
1393
+ async function getLocalProject(ctx) {
1394
+ const localConfig = await getLocalConfig(ctx);
1395
+ if (!localConfig || !localConfig.project) {
1396
+ ctx.logger.warn(
1397
+ `
1398
+ We couldn't find a valid local project config.
1399
+ Please link your local project to an existing Strapi Cloud project using the ${chalk.cyan(
1400
+ "link"
1401
+ )} command.`
1402
+ );
1403
+ process.exit(1);
1404
+ }
1405
+ return localConfig.project;
1406
+ }
1407
+ const QUIT_OPTION$1 = "Quit";
1319
1408
  async function promptForRelink(ctx, cloudApiService, existingConfig) {
1320
1409
  if (existingConfig && existingConfig.project) {
1321
1410
  const { shouldRelink } = await inquirer.prompt([
@@ -1345,7 +1434,7 @@ async function getProjectsList(ctx, cloudApiService, existingConfig) {
1345
1434
  } = await cloudApiService.listLinkProjects();
1346
1435
  spinner.succeed();
1347
1436
  if (!Array.isArray(projectList)) {
1348
- ctx.logger.log("We couldn't find any projects available for linking in Strapi Cloud");
1437
+ ctx.logger.log("We couldn't find any projects available for linking in Strapi Cloud.");
1349
1438
  return null;
1350
1439
  }
1351
1440
  const projects = projectList.filter(
@@ -1357,7 +1446,7 @@ async function getProjectsList(ctx, cloudApiService, existingConfig) {
1357
1446
  };
1358
1447
  });
1359
1448
  if (projects.length === 0) {
1360
- ctx.logger.log("We couldn't find any projects available for linking in Strapi Cloud");
1449
+ ctx.logger.log("We couldn't find any projects available for linking in Strapi Cloud.");
1361
1450
  return null;
1362
1451
  }
1363
1452
  return projects;
@@ -1375,7 +1464,7 @@ async function getUserSelection(ctx, projects) {
1375
1464
  type: "list",
1376
1465
  name: "linkProject",
1377
1466
  message: "Which project do you want to link?",
1378
- choices: [...projects, { name: chalk.grey(`(${QUIT_OPTION})`), value: null }]
1467
+ choices: [...projects, { name: chalk.grey(`(${QUIT_OPTION$1})`), value: null }]
1379
1468
  }
1380
1469
  ]);
1381
1470
  if (!answer.linkProject) {
@@ -1388,7 +1477,7 @@ async function getUserSelection(ctx, projects) {
1388
1477
  return null;
1389
1478
  }
1390
1479
  }
1391
- const action$3 = async (ctx) => {
1480
+ const action$4 = async (ctx) => {
1392
1481
  const { getValidToken } = await tokenServiceFactory(ctx);
1393
1482
  const token = await getValidToken(ctx, promptLogin);
1394
1483
  const { logger } = ctx;
@@ -1396,7 +1485,7 @@ const action$3 = async (ctx) => {
1396
1485
  return;
1397
1486
  }
1398
1487
  const cloudApiService = await cloudApiFactory(ctx, token);
1399
- const existingConfig = await getExistingConfig(ctx);
1488
+ const existingConfig = await getLocalConfig(ctx);
1400
1489
  const shouldRelink = await promptForRelink(ctx, cloudApiService, existingConfig);
1401
1490
  if (!shouldRelink) {
1402
1491
  return;
@@ -1431,7 +1520,9 @@ const action$3 = async (ctx) => {
1431
1520
  return;
1432
1521
  }
1433
1522
  await save({ project: answer.linkProject });
1434
- logger.log(`Project ${chalk.cyan(answer.linkProject.displayName)} linked successfully.`);
1523
+ logger.log(
1524
+ ` You have successfully linked your project to ${chalk.cyan(answer.linkProject.displayName)}. You are now able to deploy your project.`
1525
+ );
1435
1526
  await trackEvent(ctx, cloudApiService, "didLinkProject", {
1436
1527
  projectInternalName: answer.linkProject
1437
1528
  });
@@ -1443,16 +1534,16 @@ const action$3 = async (ctx) => {
1443
1534
  });
1444
1535
  }
1445
1536
  };
1446
- const command$5 = ({ command: command2, ctx }) => {
1447
- 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$3)(ctx));
1537
+ const command$6 = ({ command: command2, ctx }) => {
1538
+ 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));
1448
1539
  };
1449
1540
  const link = {
1450
1541
  name: "link-project",
1451
1542
  description: "Link a local directory to a Strapi Cloud project",
1452
- action: action$3,
1453
- command: command$5
1543
+ action: action$4,
1544
+ command: command$6
1454
1545
  };
1455
- const command$4 = ({ ctx }) => {
1546
+ const command$5 = ({ ctx }) => {
1456
1547
  return createCommand("cloud:login").alias("login").description("Strapi Cloud Login").addHelpText(
1457
1548
  "after",
1458
1549
  "\nAfter running this command, you will be prompted to enter your authentication information."
@@ -1462,10 +1553,10 @@ const login = {
1462
1553
  name: "login",
1463
1554
  description: "Strapi Cloud Login",
1464
1555
  action: loginAction,
1465
- command: command$4
1556
+ command: command$5
1466
1557
  };
1467
1558
  const openModule = import("open");
1468
- const action$2 = async (ctx) => {
1559
+ const action$3 = async (ctx) => {
1469
1560
  const { logger } = ctx;
1470
1561
  const { retrieveToken, eraseToken } = await tokenServiceFactory(ctx);
1471
1562
  const token = await retrieveToken();
@@ -1497,25 +1588,25 @@ const action$2 = async (ctx) => {
1497
1588
  }
1498
1589
  await trackEvent(ctx, cloudApiService, "didLogout", { loginMethod: "cli" });
1499
1590
  };
1500
- const command$3 = ({ ctx }) => {
1501
- return 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$2)(ctx));
1591
+ const command$4 = ({ ctx }) => {
1592
+ return 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));
1502
1593
  };
1503
1594
  const logout = {
1504
1595
  name: "logout",
1505
1596
  description: "Strapi Cloud Logout",
1506
- action: action$2,
1507
- command: command$3
1597
+ action: action$3,
1598
+ command: command$4
1508
1599
  };
1509
- const command$2 = ({ ctx }) => {
1510
- return 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$5)(ctx));
1600
+ const command$3 = ({ ctx }) => {
1601
+ return 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));
1511
1602
  };
1512
1603
  const createProject = {
1513
1604
  name: "create-project",
1514
1605
  description: "Create a new project",
1515
- action: action$5,
1516
- command: command$2
1606
+ action: action$6,
1607
+ command: command$3
1517
1608
  };
1518
- const action$1 = async (ctx) => {
1609
+ const action$2 = async (ctx) => {
1519
1610
  const { getValidToken } = await tokenServiceFactory(ctx);
1520
1611
  const token = await getValidToken(ctx, promptLogin);
1521
1612
  const { logger } = ctx;
@@ -1535,37 +1626,23 @@ const action$1 = async (ctx) => {
1535
1626
  spinner.fail("An error occurred while fetching your projects from Strapi Cloud.");
1536
1627
  }
1537
1628
  };
1538
- const command$1 = ({ command: command2, ctx }) => {
1539
- 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$1)(ctx));
1629
+ const command$2 = ({ command: command2, ctx }) => {
1630
+ 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));
1540
1631
  };
1541
1632
  const listProjects = {
1542
1633
  name: "list-projects",
1543
1634
  description: "List Strapi Cloud projects",
1544
- action: action$1,
1545
- command: command$1
1635
+ action: action$2,
1636
+ command: command$2
1546
1637
  };
1547
- async function getProject(ctx) {
1548
- const { project } = await retrieve();
1549
- if (!project) {
1550
- ctx.logger.warn(
1551
- `
1552
- We couldn't find a valid local project config.
1553
- Please link your local project to an existing Strapi Cloud project using the ${chalk.cyan(
1554
- "link"
1555
- )} command`
1556
- );
1557
- process.exit(1);
1558
- }
1559
- return project;
1560
- }
1561
- const action = async (ctx) => {
1638
+ const action$1 = async (ctx) => {
1562
1639
  const { getValidToken } = await tokenServiceFactory(ctx);
1563
1640
  const token = await getValidToken(ctx, promptLogin);
1564
1641
  const { logger } = ctx;
1565
1642
  if (!token) {
1566
1643
  return;
1567
1644
  }
1568
- const project = await getProject(ctx);
1645
+ const project = await getLocalProject(ctx);
1569
1646
  if (!project) {
1570
1647
  ctx.logger.debug(`No valid local project configuration was found.`);
1571
1648
  return;
@@ -1605,7 +1682,7 @@ Please link your local project to an existing Strapi Cloud project using the ${c
1605
1682
  };
1606
1683
  function defineCloudNamespace(command2, ctx) {
1607
1684
  const cloud = command2.command("cloud").description("Manage Strapi Cloud projects");
1608
- cloud.command("environments").description("Alias for cloud environment list").action(() => runAction("list", action)(ctx));
1685
+ cloud.command("environments").description("Alias for cloud environment list").action(() => runAction("list", action$1)(ctx));
1609
1686
  return cloud;
1610
1687
  }
1611
1688
  let environmentCmd = null;
@@ -1616,13 +1693,127 @@ const initializeEnvironmentCommand = (command2, ctx) => {
1616
1693
  }
1617
1694
  return environmentCmd;
1618
1695
  };
1619
- const command = ({ command: command2, ctx }) => {
1696
+ const command$1 = ({ command: command2, ctx }) => {
1620
1697
  const environmentCmd2 = initializeEnvironmentCommand(command2, ctx);
1621
- 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)(ctx));
1698
+ 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));
1622
1699
  };
1623
1700
  const listEnvironments = {
1624
1701
  name: "list-environments",
1625
1702
  description: "List Strapi Cloud environments",
1703
+ action: action$1,
1704
+ command: command$1
1705
+ };
1706
+ const QUIT_OPTION = "Quit";
1707
+ const action = async (ctx) => {
1708
+ const { getValidToken } = await tokenServiceFactory(ctx);
1709
+ const token = await getValidToken(ctx, promptLogin);
1710
+ const { logger } = ctx;
1711
+ if (!token) {
1712
+ return;
1713
+ }
1714
+ const project = await getLocalProject(ctx);
1715
+ if (!project) {
1716
+ logger.debug(`No valid local project configuration was found.`);
1717
+ return;
1718
+ }
1719
+ const cloudApiService = await cloudApiFactory(ctx, token);
1720
+ const environments = await getEnvironmentsList(ctx, cloudApiService, project);
1721
+ if (!environments) {
1722
+ logger.debug(`Fetching environments failed.`);
1723
+ return;
1724
+ }
1725
+ if (environments.length === 0) {
1726
+ logger.log(
1727
+ `The only available environment is already linked. You can add a new one from your project settings on the Strapi Cloud dashboard.`
1728
+ );
1729
+ return;
1730
+ }
1731
+ const answer = await promptUserForEnvironment(ctx, environments);
1732
+ if (!answer) {
1733
+ return;
1734
+ }
1735
+ await trackEvent(ctx, cloudApiService, "willLinkEnvironment", {
1736
+ projectName: project.name,
1737
+ environmentName: answer.targetEnvironment
1738
+ });
1739
+ try {
1740
+ await patch({ project: { targetEnvironment: answer.targetEnvironment } });
1741
+ } catch (e) {
1742
+ await trackEvent(ctx, cloudApiService, "didNotLinkEnvironment", {
1743
+ projectName: project.name,
1744
+ environmentName: answer.targetEnvironment
1745
+ });
1746
+ logger.debug("Failed to link environment", e);
1747
+ logger.error(
1748
+ "Failed to link the environment. If this issue persists, try re-linking your project or contact support."
1749
+ );
1750
+ process.exit(1);
1751
+ }
1752
+ logger.log(
1753
+ ` You have successfully linked your project to ${chalk.cyan(answer.targetEnvironment)}, on ${chalk.cyan(project.displayName)}. You are now able to deploy your project.`
1754
+ );
1755
+ await trackEvent(ctx, cloudApiService, "didLinkEnvironment", {
1756
+ projectName: project.name,
1757
+ environmentName: answer.targetEnvironment
1758
+ });
1759
+ };
1760
+ async function promptUserForEnvironment(ctx, environments) {
1761
+ const { logger } = ctx;
1762
+ try {
1763
+ const answer = await inquirer.prompt([
1764
+ {
1765
+ type: "list",
1766
+ name: "targetEnvironment",
1767
+ message: "Which environment do you want to link?",
1768
+ choices: [...environments, { name: chalk.grey(`(${QUIT_OPTION})`), value: null }]
1769
+ }
1770
+ ]);
1771
+ if (!answer.targetEnvironment) {
1772
+ return null;
1773
+ }
1774
+ return answer;
1775
+ } catch (e) {
1776
+ logger.debug("Failed to get user input", e);
1777
+ logger.error("An error occurred while trying to get your environment selection.");
1778
+ return null;
1779
+ }
1780
+ }
1781
+ async function getEnvironmentsList(ctx, cloudApiService, project) {
1782
+ const spinner = ctx.logger.spinner("Fetching environments...\n").start();
1783
+ try {
1784
+ const {
1785
+ data: { data: environmentsList }
1786
+ } = await cloudApiService.listLinkEnvironments({ name: project.name });
1787
+ if (!Array.isArray(environmentsList) || environmentsList.length === 0) {
1788
+ throw new Error("Environments not found in server response");
1789
+ }
1790
+ spinner.succeed();
1791
+ return environmentsList.filter(
1792
+ (environment) => environment.name !== project.targetEnvironment
1793
+ );
1794
+ } catch (e) {
1795
+ if (e.response && e.response.status === 404) {
1796
+ spinner.succeed();
1797
+ ctx.logger.warn(
1798
+ `
1799
+ The project associated with this folder does not exist in Strapi Cloud.
1800
+ Please link your local project to an existing Strapi Cloud project using the ${chalk.cyan(
1801
+ "link"
1802
+ )} command.`
1803
+ );
1804
+ } else {
1805
+ spinner.fail("An error occurred while fetching environments data from Strapi Cloud.");
1806
+ ctx.logger.debug("Failed to list environments", e);
1807
+ }
1808
+ }
1809
+ }
1810
+ const command = ({ command: command2, ctx }) => {
1811
+ const environmentCmd2 = initializeEnvironmentCommand(command2, ctx);
1812
+ 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));
1813
+ };
1814
+ const linkEnvironment = {
1815
+ name: "link-environment",
1816
+ description: "Link Strapi Cloud environment to a local project",
1626
1817
  action,
1627
1818
  command
1628
1819
  };
@@ -1632,12 +1823,21 @@ const cli = {
1632
1823
  login,
1633
1824
  logout,
1634
1825
  createProject,
1826
+ linkEnvironment,
1635
1827
  listProjects,
1636
1828
  listEnvironments
1637
1829
  };
1638
- const cloudCommands = [deployProject, link, login, logout, listProjects, listEnvironments];
1830
+ const cloudCommands = [
1831
+ deployProject,
1832
+ link,
1833
+ login,
1834
+ logout,
1835
+ linkEnvironment,
1836
+ listProjects,
1837
+ listEnvironments
1838
+ ];
1639
1839
  async function initCloudCLIConfig() {
1640
- const localConfig = await getLocalConfig();
1840
+ const localConfig = await getLocalConfig$1();
1641
1841
  if (!localConfig.deviceId) {
1642
1842
  localConfig.deviceId = crypto$1.randomUUID();
1643
1843
  }