ForestAdmin/toolbelt

View on GitHub
src/commands/push.js

Summary

Maintainability
B
5 hrs
Test Coverage
A
100%
const { Flags } = require('@oclif/core');
const AbstractAuthenticatedCommand = require('../abstract-authenticated-command').default;
const BranchManager = require('../services/branch-manager');
const ProjectManager = require('../services/project-manager');
const withCurrentProject = require('../services/with-current-project');

class PushCommand extends AbstractAuthenticatedCommand {
  constructor(argv, config, plan) {
    super(argv, config, plan);
    const { assertPresent, env, inquirer } = this.context;
    assertPresent({ env, inquirer });
    this.env = env;
    this.inquirer = inquirer;
  }

  async runAuthenticated() {
    const parsed = await this.parse(PushCommand);
    const envSecret = this.env.FOREST_ENV_SECRET;
    const commandOptions = { ...parsed.flags, ...parsed.args, envSecret };
    let config;

    try {
      config = await withCurrentProject({ ...this.env, ...commandOptions });

      if (!config.envSecret) {
        const environment = await new ProjectManager(config).getDevelopmentEnvironmentForUser(
          config.projectId,
        );
        config.envSecret = environment.secretKey;
      }
      const branches = await BranchManager.getBranches(config.envSecret);

      const currentBranch = branches.find(branch => branch.isCurrent);

      if (!currentBranch) {
        throw new Error('No current branch.');
      }

      if (!config.force) {
        const response = await this.inquirer.prompt([
          {
            type: 'confirm',
            name: 'confirm',
            message: `Push branch ${currentBranch.name} onto ${
              currentBranch.originEnvironment ? currentBranch.originEnvironment.name : 'its origin'
            }`,
          },
        ]);
        if (!response.confirm) return;
      }

      await BranchManager.pushBranch(config.envSecret);
      this.logger.success(
        `Branch ${currentBranch.name} successfully pushed onto ${currentBranch.originEnvironment.name}.`,
      );
    } catch (error) {
      const customError = await BranchManager.handleBranchError(error);
      this.logger.error(customError);
      this.exit(2);
    }
  }
}

PushCommand.aliases = ['branches:push'];

PushCommand.description = 'Push layout changes of your current branch to the branch origin.';

PushCommand.flags = {
  force: Flags.boolean({
    description: 'Skip push changes confirmation.',
  }),
  help: Flags.boolean({
    description: 'Display usage information.',
  }),
  projectId: Flags.integer({
    char: 'p',
    description: 'The id of the project to work on.',
    default: null,
  }),
};

module.exports = PushCommand;