@iotize/cli
Version:
IoTize command line interface
78 lines • 4.02 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 utility_1 = require("@iotize/common/utility");
const clime_1 = require("clime");
const ui_1 = require("src/ui");
const device_1 = require("../../options/device");
class MyOptions extends device_1.DeviceOptions {
}
__decorate([
clime_1.option({
toggle: true
}),
__metadata("design:type", Boolean)
], MyOptions.prototype, "showInput", void 0);
exports.MyOptions = MyOptions;
let ChangeUserPasswordCommand = class ChangeUserPasswordCommand extends clime_1.Command {
constructor() {
super(...arguments);
this.help = 'Change user password';
this.command = 'change password';
}
execute(options) {
return __awaiter(this, void 0, void 0, function* () {
const tap = yield options.getDevice(true, false, false);
yield this.run({ tap }, {
options
});
yield tap.disconnect();
});
}
run(context, params) {
var _a, _b;
return __awaiter(this, void 0, void 0, function* () {
const { tap } = context;
const { options } = params;
const profileName = yield ui_1.input.string('Username ?');
const oldPassword = ((_a = options) === null || _a === void 0 ? void 0 : _a.showInput) ? yield ui_1.input.string('Current password ?') : yield ui_1.input.password('Current password ?');
const newPassword = ((_b = options) === null || _b === void 0 ? void 0 : _b.showInput) ? yield ui_1.input.string('New password ?') : yield ui_1.input.password('New password ?');
yield tap.login(profileName, oldPassword);
yield utility_1.sleep(300);
const profileId = (yield tap.service.interface.getCurrentProfileId()).body();
ui_1.display.infonl(`Changing password for ${profileName} (id=${profileId})...`);
yield tap.changePassword(newPassword, profileId);
ui_1.display.success(`Password changed!`);
});
}
};
__decorate([
clime_1.metadata,
__metadata("design:type", Function),
__metadata("design:paramtypes", [MyOptions]),
__metadata("design:returntype", Promise)
], ChangeUserPasswordCommand.prototype, "execute", null);
ChangeUserPasswordCommand = __decorate([
clime_1.command({
description: 'Change user password'
})
], ChangeUserPasswordCommand);
exports.default = ChangeUserPasswordCommand;
//# sourceMappingURL=change-password.js.map