@viewdo/dxp-story-cli
Version:
DXP Story Management CLI
50 lines • 2.99 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.LoginCommand = void 0;
const CommandBase_1 = require("./support/CommandBase");
const typedi_1 = require("typedi");
const app_1 = require("../app");
let LoginCommand = class LoginCommand extends CommandBase_1.CommandBase {
run(options) {
return __awaiter(this, void 0, void 0, function* () {
const app = new app_1.App(options);
app.console_service.log(`Authenticating folder: ${app.root}`.blue);
let { force, client_id, code } = options;
if ((yield app.auth_manager.requireToken(options.client_id, options.client_secret, false)) && !force) {
app.console_service.log('If you want to obtain a new token, use flag --force'.grey);
return 1;
}
let email = app.auth_manager.email || (yield app.prompt_service
.askFor('Email', null, app.prompt_service.validateEmail));
if (!code) {
yield app.auth_manager.sendVerificationEmail(client_id, email);
app.console_service.log(`Sent a verification code to ${email}`.yellow);
code = yield app.prompt_service
.askFor('Enter the verification code we sent you', null, app.prompt_service.validateCode);
}
yield app.auth_manager.getTokenFromVerification(client_id, email, code);
app.console_service.log(`You are now authenticated ${email ? `as ${email}` : ''}`.green);
return 0;
});
}
};
exports.LoginCommand = LoginCommand;
exports.LoginCommand = LoginCommand = __decorate([
(0, typedi_1.Service)()
], LoginCommand);
//# sourceMappingURL=login.js.map