iobroker.elero-usb-transmitter
Version:
Adapter to control Elero devices.
61 lines (60 loc) • 2.51 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());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.translateText = exports.isArray = exports.isObject = void 0;
const axios_1 = require("axios");
/**
* Tests whether the given variable is a real object and not an Array
* @param it The variable to test
*/
// eslint-disable-next-line @typescript-eslint/ban-types
function isObject(it) {
// This is necessary because:
// typeof null === 'object'
// typeof [] === 'object'
// [] instanceof Object === true
return Object.prototype.toString.call(it) === '[object Object]';
}
exports.isObject = isObject;
/**
* Tests whether the given variable is really an Array
* @param it The variable to test
*/
function isArray(it) {
if (Array.isArray != null)
return Array.isArray(it);
return Object.prototype.toString.call(it) === '[object Array]';
}
exports.isArray = isArray;
/**
* Translates text using the Google Translate API
* @param text The text to translate
* @param targetLang The target languate
*/
function translateText(text, targetLang) {
return __awaiter(this, void 0, void 0, function* () {
if (targetLang === 'en')
return text;
try {
const url = `http://translate.googleapis.com/translate_a/single?client=gtx&sl=en&tl=${targetLang}&dt=t&q=${encodeURIComponent(text)}&ie=UTF-8&oe=UTF-8`;
const response = yield (0, axios_1.default)({ url, timeout: 5000 });
if (isArray(response.data)) {
// we got a valid response
return response.data[0][0][0];
}
throw new Error('Invalid response for translate request');
}
catch (e) {
throw new Error(`Could not translate to "${targetLang}": ${e}`);
}
});
}
exports.translateText = translateText;