@di-zed/yandex-smart-home
Version:
The Yandex Smart Home skills for the different device types.
71 lines (70 loc) • 2.88 kB
JavaScript
;
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());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @author DiZed Team
* @copyright Copyright (c) DiZed Team (https://github.com/di-zed/)
*/
const fs_1 = __importDefault(require("fs"));
const configProvider_1 = __importDefault(require("../providers/configProvider"));
/**
* Device Repository.
*/
class DeviceRepository {
/**
* Get Device by Device Model.
*
* @param deviceModel
* @returns Promise<Device | undefined>
*/
getDeviceByModel(deviceModel) {
return __awaiter(this, void 0, void 0, function* () {
const devices = yield this.getConfigDevices();
return devices.find((element) => { var _a; return ((_a = element.device_info) === null || _a === void 0 ? void 0 : _a.model) === deviceModel; });
});
}
/**
* Get Device Type by Device Model.
*
* @param deviceModel
* @returns Promise<string>
*/
getDeviceTypeByModel(deviceModel) {
return __awaiter(this, void 0, void 0, function* () {
const device = yield this.getDeviceByModel(deviceModel);
return (device === null || device === void 0 ? void 0 : device.type) ? device.type : '';
});
}
/**
* Get Devices from the Configuration file.
*
* @returns Promise<Device[]>
*/
getConfigDevices() {
return __awaiter(this, void 0, void 0, function* () {
try {
if (this.configDevices === undefined) {
const configFileDevices = configProvider_1.default.getConfigOption('configFileDevices');
const filePath = configFileDevices ? configFileDevices : `${__dirname}/../../config/devices.json`;
this.configDevices = yield JSON.parse(fs_1.default.readFileSync(filePath, { encoding: 'utf8', flag: 'r' }));
}
return this.configDevices;
}
catch (err) {
return [];
}
});
}
}
exports.default = new DeviceRepository();