UNPKG

@di-zed/yandex-smart-home

Version:

The Yandex Smart Home skills for the different device types.

58 lines (57 loc) 2.26 kB
"use strict"; 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")); /** * MQTT Repository. */ class MqttRepository { /** * Get MQTT information from the Configuration file. * * @returns Promise<MqttInterface> */ getConfig() { return __awaiter(this, void 0, void 0, function* () { if (this.config === undefined) { const configFileMqtt = configProvider_1.default.getConfigOption('configFileMqtt'); const filePath = configFileMqtt ? configFileMqtt : `${__dirname}/../../config/mqtt.json`; this.config = yield JSON.parse(fs_1.default.readFileSync(filePath, { encoding: 'utf8', flag: 'r' })); } return this.config; }); } /** * Get Topics from the Configuration file. * * @returns Promise<MqttTopicInterface[]> */ getConfigTopics() { return __awaiter(this, void 0, void 0, function* () { try { const config = yield this.getConfig(); return config.topics; } catch (err) { return []; } }); } } exports.default = new MqttRepository();