homebridge-connexoon
Version:
A Homebridge plugin providing support for the Connexoon, TaHoma and Cozytouch platforms and accessories.
21 lines (17 loc) • 489 B
JavaScript
const SERVER = {
Cozytouch: 'ha110-1.overkiz.com',
TaHoma: 'ha101-1.overkiz.com',
Connexoon: 'ha101-1.overkiz.com',
ConnexoonRTS: 'ha201-1.overkiz.com',
TaHomaUSA: 'ha401-1.overkiz.com',
};
class Server {
constructor(service = 'ConnexoonRTS') {
this.service = service;
this.domain = SERVER[service];
}
getUrlForQuery(query) {
return `https://${this.domain}/enduser-mobile-web/enduserAPI${query}`;
}
}
module.exports = Server;