@iotize/cli
Version:
IoTize command line interface
73 lines • 3.91 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 ui_1 = require("src/ui");
const device_1 = require("../../options/device");
const device_client_js_1 = require("@iotize/device-client.js");
class MyOptions extends device_1.DeviceOptions {
}
exports.MyOptions = MyOptions;
let TapInfoCommand = class TapInfoCommand extends clime_1.Command {
constructor() {
super(...arguments);
this.command = 'info';
this.help = 'Show Tap basic info';
}
execute(options) {
return __awaiter(this, void 0, void 0, function* () {
const tap = yield options.getDevice(true, false, false);
yield this.run({ tap }, {
options: {}
});
// display.infonl(`Configuration version: ${(await tap.service.interface.getConfigVersion()).body()}`);
});
}
run(context, args) {
return __awaiter(this, void 0, void 0, function* () {
const { tap } = context;
ui_1.display.tapInfo('Serial number', yield tap.service.device.getSerialNumber());
ui_1.display.tapInfo('Firmware version', yield tap.service.device.getFirmwareVersion());
ui_1.display.tapInfo('Manufacturer', yield tap.service.device.getManufacturer());
ui_1.display.tapInfo('Model name', yield tap.service.device.getModelName());
ui_1.display.tapInfo('Application name', yield tap.service.interface.getAppName());
const protocols = (yield tap.service.interface.getAuthorizedHostProtocol()).body();
if (protocols.indexOf(device_client_js_1.HostProtocol.BLE) >= 0) {
ui_1.display.tapInfo('BLE mac address', yield tap.service.interface.getBleAddress());
}
if (protocols.indexOf(device_client_js_1.HostProtocol.WIFI) >= 0) {
ui_1.display.tapInfo('WiFi IP', yield tap.service.interface.getNetworkInfraIp());
}
});
}
};
__decorate([
clime_1.metadata,
__metadata("design:type", Function),
__metadata("design:paramtypes", [MyOptions]),
__metadata("design:returntype", Promise)
], TapInfoCommand.prototype, "execute", null);
TapInfoCommand = __decorate([
clime_1.command({
description: 'Print Tap info'
})
], TapInfoCommand);
exports.default = TapInfoCommand;
//# sourceMappingURL=info.js.map