@strapi/cloud-cli 0.0.0-next.b558642be856459a3e6c076f5d76fffbfc5fc5a1 → 0.0.0-next.bb6ff32f5168f3e380d3d9acba90a9d53bfcfb89

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
@@ -1,6 +1,7 @@
1
1
  import crypto$1 from "crypto";
2
2
  import * as fse from "fs-extra";
3
3
  import fse__default from "fs-extra";
4
+ import inquirer from "inquirer";
4
5
  import * as path from "path";
5
6
  import path__default from "path";
6
7
  import chalk from "chalk";
@@ -9,7 +10,6 @@ import * as crypto from "node:crypto";
9
10
  import { env } from "@strapi/utils";
10
11
  import * as tar from "tar";
11
12
  import { minimatch } from "minimatch";
12
- import inquirer from "inquirer";
13
13
  import { defaults, has } from "lodash/fp";
14
14
  import os from "os";
15
15
  import XDGAppPaths from "xdg-app-paths";
@@ -134,7 +134,7 @@ async function saveLocalConfig(data) {
134
134
  await fse__default.writeJson(configFilePath, data, { encoding: "utf8", spaces: 2, mode: 384 });
135
135
  }
136
136
  const name = "@strapi/cloud-cli";
137
- const version = "5.0.2";
137
+ const version = "5.3.0";
138
138
  const description = "Commands to interact with the Strapi Cloud";
139
139
  const keywords = [
140
140
  "strapi",
@@ -208,7 +208,7 @@ const devDependencies = {
208
208
  tsconfig: "workspace:*"
209
209
  };
210
210
  const engines = {
211
- node: ">=18.0.0 <=20.x.x",
211
+ node: ">=18.0.0 <=22.x.x",
212
212
  npm: ">=6.0.0"
213
213
  };
214
214
  const packageJson = {
@@ -258,7 +258,7 @@ async function cloudApiFactory({ logger }, token) {
258
258
  deploy({ filePath, project }, { onUploadProgress }) {
259
259
  return axiosCloudAPI.post(
260
260
  `/deploy/${project.name}`,
261
- { file: fse__default.createReadStream(filePath) },
261
+ { file: fse__default.createReadStream(filePath), targetEnvironment: project.targetEnvironment },
262
262
  {
263
263
  headers: {
264
264
  "Content-Type": "multipart/form-data"
@@ -329,6 +329,20 @@ async function cloudApiFactory({ logger }, token) {
329
329
  throw error;
330
330
  }
331
331
  },
332
+ async listEnvironments({ name: name2 }) {
333
+ try {
334
+ const response = await axiosCloudAPI.get(`/projects/${name2}/environments`);
335
+ if (response.status !== 200) {
336
+ throw new Error("Error fetching cloud environments from the server.");
337
+ }
338
+ return response;
339
+ } catch (error) {
340
+ logger.debug(
341
+ "🥲 Oops! Couldn't retrieve your project's environments from the server. Please try again."
342
+ );
343
+ throw error;
344
+ }
345
+ },
332
346
  async getProject({ name: name2 }) {
333
347
  try {
334
348
  const response = await axiosCloudAPI.get(`/projects/${name2}`);
@@ -901,7 +915,7 @@ async function createProject$1(ctx, cloudApi, projectInput) {
901
915
  throw e;
902
916
  }
903
917
  }
904
- const action$4 = async (ctx) => {
918
+ const action$5 = async (ctx) => {
905
919
  const { logger } = ctx;
906
920
  const { getValidToken, eraseToken } = await tokenServiceFactory(ctx);
907
921
  const token = await getValidToken(ctx, promptLogin);
@@ -1030,6 +1044,32 @@ const buildLogsServiceFactory = ({ logger }) => {
1030
1044
  });
1031
1045
  };
1032
1046
  };
1047
+ const QUIT_OPTION$1 = "Quit";
1048
+ async function promptForEnvironment(environments) {
1049
+ const choices = environments.map((env2) => ({ name: env2, value: env2 }));
1050
+ const { selectedEnvironment } = await inquirer.prompt([
1051
+ {
1052
+ type: "list",
1053
+ name: "selectedEnvironment",
1054
+ message: "Select the environment to deploy:",
1055
+ choices: [...choices, { name: chalk.grey(`(${QUIT_OPTION$1})`), value: null }]
1056
+ }
1057
+ ]);
1058
+ if (selectedEnvironment === null) {
1059
+ process.exit(1);
1060
+ }
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
+ return selectedEnvironment;
1072
+ }
1033
1073
  async function upload(ctx, project, token, maxProjectFileSize) {
1034
1074
  const cloudApi = await cloudApiFactory(ctx, token);
1035
1075
  try {
@@ -1108,11 +1148,11 @@ async function upload(ctx, project, token, maxProjectFileSize) {
1108
1148
  process.exit(1);
1109
1149
  }
1110
1150
  }
1111
- async function getProject(ctx) {
1151
+ async function getProject$1(ctx) {
1112
1152
  const { project } = await retrieve();
1113
1153
  if (!project) {
1114
1154
  try {
1115
- return await action$4(ctx);
1155
+ return await action$5(ctx);
1116
1156
  } catch (e) {
1117
1157
  ctx.logger.error("An error occurred while deploying the project. Please try again later.");
1118
1158
  ctx.logger.debug(e);
@@ -1133,22 +1173,24 @@ async function getConfig({
1133
1173
  return null;
1134
1174
  }
1135
1175
  }
1136
- const action$3 = async (ctx) => {
1176
+ const action$4 = async (ctx, opts) => {
1137
1177
  const { getValidToken } = await tokenServiceFactory(ctx);
1138
1178
  const token = await getValidToken(ctx, promptLogin);
1139
1179
  if (!token) {
1140
1180
  return;
1141
1181
  }
1142
- const project = await getProject(ctx);
1182
+ const project = await getProject$1(ctx);
1143
1183
  if (!project) {
1144
1184
  return;
1145
1185
  }
1146
1186
  const cloudApiService = await cloudApiFactory(ctx, token);
1187
+ let environments;
1147
1188
  try {
1148
1189
  const {
1149
1190
  data: { data: projectData, metadata }
1150
1191
  } = await cloudApiService.getProject({ name: project.name });
1151
1192
  const isProjectSuspended = projectData.suspendedAt;
1193
+ environments = projectData.environments;
1152
1194
  if (isProjectSuspended) {
1153
1195
  ctx.logger.log(
1154
1196
  "\n Oops! This project has been suspended. \n\n Please reactivate it from the dashboard to continue deploying: "
@@ -1195,6 +1237,17 @@ Please link your local project to an existing Strapi Cloud project using the ${c
1195
1237
  );
1196
1238
  maxSize = 1e8;
1197
1239
  }
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;
1245
+ }
1246
+ targetEnvironment = opts.environment;
1247
+ } else {
1248
+ targetEnvironment = environments.length > 1 ? await promptForEnvironment(environments) : environments[0];
1249
+ }
1250
+ project.targetEnvironment = targetEnvironment;
1198
1251
  const buildId = await upload(ctx, project, token, maxSize);
1199
1252
  if (!buildId) {
1200
1253
  return;
@@ -1244,14 +1297,14 @@ const runAction = (name2, action2) => (...args) => {
1244
1297
  process.exit(1);
1245
1298
  });
1246
1299
  };
1247
- const command$5 = ({ ctx }) => {
1248
- 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").action(() => runAction("deploy", action$3)(ctx));
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));
1249
1302
  };
1250
1303
  const deployProject = {
1251
1304
  name: "deploy-project",
1252
1305
  description: "Deploy a Strapi Cloud project",
1253
- action: action$3,
1254
- command: command$5
1306
+ action: action$4,
1307
+ command: command$6
1255
1308
  };
1256
1309
  const QUIT_OPTION = "Quit";
1257
1310
  async function getExistingConfig(ctx) {
@@ -1335,7 +1388,7 @@ async function getUserSelection(ctx, projects) {
1335
1388
  return null;
1336
1389
  }
1337
1390
  }
1338
- const action$2 = async (ctx) => {
1391
+ const action$3 = async (ctx) => {
1339
1392
  const { getValidToken } = await tokenServiceFactory(ctx);
1340
1393
  const token = await getValidToken(ctx, promptLogin);
1341
1394
  const { logger } = ctx;
@@ -1390,16 +1443,16 @@ const action$2 = async (ctx) => {
1390
1443
  });
1391
1444
  }
1392
1445
  };
1393
- const command$4 = ({ command: command2, ctx }) => {
1394
- 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$2)(ctx));
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));
1395
1448
  };
1396
1449
  const link = {
1397
1450
  name: "link-project",
1398
1451
  description: "Link a local directory to a Strapi Cloud project",
1399
- action: action$2,
1400
- command: command$4
1452
+ action: action$3,
1453
+ command: command$5
1401
1454
  };
1402
- const command$3 = ({ ctx }) => {
1455
+ const command$4 = ({ ctx }) => {
1403
1456
  return createCommand("cloud:login").alias("login").description("Strapi Cloud Login").addHelpText(
1404
1457
  "after",
1405
1458
  "\nAfter running this command, you will be prompted to enter your authentication information."
@@ -1409,10 +1462,10 @@ const login = {
1409
1462
  name: "login",
1410
1463
  description: "Strapi Cloud Login",
1411
1464
  action: loginAction,
1412
- command: command$3
1465
+ command: command$4
1413
1466
  };
1414
1467
  const openModule = import("open");
1415
- const action$1 = async (ctx) => {
1468
+ const action$2 = async (ctx) => {
1416
1469
  const { logger } = ctx;
1417
1470
  const { retrieveToken, eraseToken } = await tokenServiceFactory(ctx);
1418
1471
  const token = await retrieveToken();
@@ -1444,25 +1497,25 @@ const action$1 = async (ctx) => {
1444
1497
  }
1445
1498
  await trackEvent(ctx, cloudApiService, "didLogout", { loginMethod: "cli" });
1446
1499
  };
1447
- const command$2 = ({ ctx }) => {
1448
- 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$1)(ctx));
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));
1449
1502
  };
1450
1503
  const logout = {
1451
1504
  name: "logout",
1452
1505
  description: "Strapi Cloud Logout",
1453
- action: action$1,
1454
- command: command$2
1506
+ action: action$2,
1507
+ command: command$3
1455
1508
  };
1456
- const command$1 = ({ ctx }) => {
1457
- 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$4)(ctx));
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));
1458
1511
  };
1459
1512
  const createProject = {
1460
1513
  name: "create-project",
1461
1514
  description: "Create a new project",
1462
- action: action$4,
1463
- command: command$1
1515
+ action: action$5,
1516
+ command: command$2
1464
1517
  };
1465
- const action = async (ctx) => {
1518
+ const action$1 = async (ctx) => {
1466
1519
  const { getValidToken } = await tokenServiceFactory(ctx);
1467
1520
  const token = await getValidToken(ctx, promptLogin);
1468
1521
  const { logger } = ctx;
@@ -1482,12 +1535,94 @@ const action = async (ctx) => {
1482
1535
  spinner.fail("An error occurred while fetching your projects from Strapi Cloud.");
1483
1536
  }
1484
1537
  };
1485
- const command = ({ command: command2, ctx }) => {
1486
- 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));
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));
1487
1540
  };
1488
1541
  const listProjects = {
1489
1542
  name: "list-projects",
1490
1543
  description: "List Strapi Cloud projects",
1544
+ action: action$1,
1545
+ command: command$1
1546
+ };
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) => {
1562
+ const { getValidToken } = await tokenServiceFactory(ctx);
1563
+ const token = await getValidToken(ctx, promptLogin);
1564
+ const { logger } = ctx;
1565
+ if (!token) {
1566
+ return;
1567
+ }
1568
+ const project = await getProject(ctx);
1569
+ if (!project) {
1570
+ ctx.logger.debug(`No valid local project configuration was found.`);
1571
+ return;
1572
+ }
1573
+ const cloudApiService = await cloudApiFactory(ctx, token);
1574
+ const spinner = logger.spinner("Fetching environments...").start();
1575
+ await trackEvent(ctx, cloudApiService, "willListEnvironment", {
1576
+ projectInternalName: project.name
1577
+ });
1578
+ try {
1579
+ const {
1580
+ data: { data: environmentsList }
1581
+ } = await cloudApiService.listEnvironments({ name: project.name });
1582
+ spinner.succeed();
1583
+ logger.log(environmentsList);
1584
+ await trackEvent(ctx, cloudApiService, "didListEnvironment", {
1585
+ projectInternalName: project.name
1586
+ });
1587
+ } catch (e) {
1588
+ if (e.response && e.response.status === 404) {
1589
+ spinner.succeed();
1590
+ logger.warn(
1591
+ `
1592
+ The project associated with this folder does not exist in Strapi Cloud.
1593
+ Please link your local project to an existing Strapi Cloud project using the ${chalk.cyan(
1594
+ "link"
1595
+ )} command`
1596
+ );
1597
+ } else {
1598
+ spinner.fail("An error occurred while fetching environments data from Strapi Cloud.");
1599
+ logger.debug("Failed to list environments", e);
1600
+ }
1601
+ await trackEvent(ctx, cloudApiService, "didNotListEnvironment", {
1602
+ projectInternalName: project.name
1603
+ });
1604
+ }
1605
+ };
1606
+ function defineCloudNamespace(command2, ctx) {
1607
+ 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));
1609
+ return cloud;
1610
+ }
1611
+ let environmentCmd = null;
1612
+ const initializeEnvironmentCommand = (command2, ctx) => {
1613
+ if (!environmentCmd) {
1614
+ const cloud = defineCloudNamespace(command2, ctx);
1615
+ environmentCmd = cloud.command("environment").description("Manage environments");
1616
+ }
1617
+ return environmentCmd;
1618
+ };
1619
+ const command = ({ command: command2, ctx }) => {
1620
+ 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));
1622
+ };
1623
+ const listEnvironments = {
1624
+ name: "list-environments",
1625
+ description: "List Strapi Cloud environments",
1491
1626
  action,
1492
1627
  command
1493
1628
  };
@@ -1497,9 +1632,10 @@ const cli = {
1497
1632
  login,
1498
1633
  logout,
1499
1634
  createProject,
1500
- listProjects
1635
+ listProjects,
1636
+ listEnvironments
1501
1637
  };
1502
- const cloudCommands = [deployProject, link, login, logout, listProjects];
1638
+ const cloudCommands = [deployProject, link, login, logout, listProjects, listEnvironments];
1503
1639
  async function initCloudCLIConfig() {
1504
1640
  const localConfig = await getLocalConfig();
1505
1641
  if (!localConfig.deviceId) {