@iotize/cli
Version:
IoTize command line interface
54 lines • 2.89 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 __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
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 });
const clime_1 = require("clime");
const cloud_auth_api_1 = require("../../../lib/cloud-auth/cloud-auth-api");
const ui_1 = require("../../../ui");
class MyOptions {
}
exports.MyOptions = MyOptions;
let CloudLoginCommand = class CloudLoginCommand extends clime_1.Command {
execute(options) {
return __awaiter(this, void 0, void 0, function* () {
const authApi = new cloud_auth_api_1.CloudAuthApi();
const username = yield ui_1.input.string(`Username`);
const password = yield ui_1.input.password(`Password`);
// TODO login request
const response = yield authApi.login(username, password);
const config = global.configProvider.config();
// TODO store access token
config.set('cloud.session', response);
ui_1.display.success(`Logged in to IoTize Cloud with username ${username}`);
});
}
};
__decorate([
clime_1.metadata,
__metadata("design:type", Function),
__metadata("design:paramtypes", [MyOptions]),
__metadata("design:returntype", Promise)
], CloudLoginCommand.prototype, "execute", null);
CloudLoginCommand = __decorate([
clime_1.command({
description: 'Cloud login'
})
], CloudLoginCommand);
exports.default = CloudLoginCommand;
//# sourceMappingURL=login.js.map