mirror of
https://github.com/skydiver/ewelink-api.git
synced 2025-12-21 21:33:11 +01:00
* updated dependencies * code linting * added new app id & app secret * cleanup requests payloads * remove unused function * update test cases * enabled firmware tests * refactor getDevice to use right api endpoint * error messages improvements * error messages improvements * error messages improvements * error messages improvements * error messages improvements * payload cleanup * refactor setDevicePowerState to use right api endpoint * update test exepectation * removed deprecated class * updated tests to reflect new error codes * error messages improvements * refactoring project structure: devices methods refactoring project sturcture * refactoring project structure: firmware methods * refactoring project structure: temperature/humidity * refactoring project structure: credentials methods * refactoring project structure: power usage methods * refactoring project structure: power state methods * refactoring project structure: websocket methods * removed deprecated login method from docs * refactoring project structure: power usage methods * refactoring project structure: zeroconf classes * refactoring project structure: websocket classes * refactoring project structure: zeroconf classes * refactor and cleanup * refactoring project structure: firmware methods * moved parsers to own directory * update tests with methods renames * export missing temperature/humidity methods * removed unused package * refactor and cleanup * fix test expectation * refactoring project structure: moved data files * refactoring project structure: moved data files * refactoring project structure: moved helpers files * refactoring project structure: moved helpers files * refactoring project structure: moved payload files * refactor and cleanup * refactor getDevicePowerState * setDevicePowerState returns channel * convert error 400 to 404 for clarity * updated test cases * remove console.log * cache path for zeroconf cache files * installed nock * using nock to simulate server requests during testing * moved credentials file to config folder * update request url when using nock * refactor nock helper file * move cooldown delay to setupTests file * updating testing instructions * restored delete code block * fix wrong error code * accept phone number to login to ewelink * added test cases for initialize main class * improvements on class initialization parameters * allow login using phone number * rename test file * updated test case * fixed regression bug * Release v3.0.0 - use node-fetch (#87) * replaced deprecated request library with node-fetch * refactor: moved makeRequest to own mixin file * refactor to use node-fetch * fixes * update config * created helper method * constant rename * ignore files from final package * version bump
100 lines
2.0 KiB
JavaScript
100 lines
2.0 KiB
JavaScript
const mixins = require('./src/mixins');
|
|
const errors = require('./src/data/errors');
|
|
|
|
class eWeLink {
|
|
constructor({
|
|
region = 'us',
|
|
email = null,
|
|
phoneNumber = null,
|
|
password = null,
|
|
at = null,
|
|
apiKey = null,
|
|
devicesCache = null,
|
|
arpTable = null,
|
|
}) {
|
|
const check = this.checkLoginParameters({
|
|
region,
|
|
email,
|
|
phoneNumber,
|
|
password,
|
|
at,
|
|
apiKey,
|
|
devicesCache,
|
|
arpTable,
|
|
});
|
|
|
|
if (check === false) {
|
|
throw new Error(errors.invalidCredentials);
|
|
}
|
|
|
|
this.region = region;
|
|
this.phoneNumber = phoneNumber;
|
|
this.email = email;
|
|
this.password = password;
|
|
this.at = at;
|
|
this.apiKey = apiKey;
|
|
this.devicesCache = devicesCache;
|
|
this.arpTable = arpTable;
|
|
}
|
|
|
|
// eslint-disable-next-line class-methods-use-this
|
|
checkLoginParameters(params) {
|
|
const { email, phoneNumber, password, devicesCache, arpTable, at } = params;
|
|
|
|
if (email !== null && phoneNumber !== null) {
|
|
return false;
|
|
}
|
|
|
|
if (
|
|
(email !== null && password !== null) ||
|
|
(phoneNumber !== null && password !== null) ||
|
|
(devicesCache !== null && arpTable !== null) ||
|
|
at !== null
|
|
) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Generate eWeLink API URL
|
|
*
|
|
* @returns {string}
|
|
*/
|
|
getApiUrl() {
|
|
return `https://${this.region}-api.coolkit.cc:8080/api`;
|
|
}
|
|
|
|
/**
|
|
* Generate eWeLink OTA API URL
|
|
* @returns {string}
|
|
*/
|
|
getOtaUrl() {
|
|
return `https://${this.region}-ota.coolkit.cc:8080/otaother`;
|
|
}
|
|
|
|
/**
|
|
* Generate eWeLink WebSocket URL
|
|
*
|
|
* @returns {string}
|
|
*/
|
|
getApiWebSocket() {
|
|
return `wss://${this.region}-pconnect3.coolkit.cc:8080/api/ws`;
|
|
}
|
|
|
|
/**
|
|
* Generate Zeroconf URL
|
|
* @param device
|
|
* @returns {string}
|
|
*/
|
|
getZeroconfUrl(device) {
|
|
const ip = this.getDeviceIP(device);
|
|
return `http://${ip}:8081/zeroconf`;
|
|
}
|
|
}
|
|
|
|
Object.assign(eWeLink.prototype, mixins);
|
|
|
|
module.exports = eWeLink;
|