mirror of
https://github.com/bourquep/mysa-js-sdk.git
synced 2026-02-04 09:41:07 +00:00
Compare commits
28 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6dc6da2dde | ||
|
|
0cf7a1756c | ||
|
|
51b8f64dab | ||
|
|
14ee1d30eb | ||
|
|
4680ca2f85 | ||
|
|
3f020d5dc3 | ||
|
|
e93741525c | ||
|
|
9b945869aa | ||
|
|
becafbfacc | ||
|
|
c29e750f9c | ||
|
|
e3c93453ed | ||
|
|
17f277e844 | ||
|
|
6a88e52702 | ||
|
|
d6971453d2 | ||
|
|
8769928622 | ||
|
|
131f8677d9 | ||
|
|
ba5d29379a | ||
|
|
0dfb486ea1 | ||
|
|
2c483a835d | ||
|
|
7f89e9867a | ||
|
|
6b4e41828a | ||
|
|
be940daf91 | ||
|
|
847b9abf5e | ||
|
|
17d7e9b7b0 | ||
|
|
9df5030228 | ||
|
|
5ae54dd05d | ||
|
|
4039f5f165 | ||
|
|
45ae56f0f9 |
@@ -51,6 +51,12 @@ Then, run the example:
|
|||||||
npm run example
|
npm run example
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you prefer to see the raw data published by your Mysa smart thermostats, run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm run example:raw
|
||||||
|
```
|
||||||
|
|
||||||
## Using
|
## Using
|
||||||
|
|
||||||
The Mysa SDK provides a simple interface to interact with Mysa smart thermostats.
|
The Mysa SDK provides a simple interface to interact with Mysa smart thermostats.
|
||||||
|
|||||||
@@ -57,6 +57,11 @@ async function main() {
|
|||||||
|
|
||||||
const devices = await client.getDevices();
|
const devices = await client.getDevices();
|
||||||
|
|
||||||
|
if (process.env.MYSA_OUTPUT_RAW_DATA === 'true') {
|
||||||
|
client.emitter.on('rawRealtimeMessageReceived', (data) => {
|
||||||
|
rootLogger.info(data, 'Raw message received');
|
||||||
|
});
|
||||||
|
} else {
|
||||||
client.emitter.on('statusChanged', (status) => {
|
client.emitter.on('statusChanged', (status) => {
|
||||||
try {
|
try {
|
||||||
const device = devices.DevicesObj[status.deviceId];
|
const device = devices.DevicesObj[status.deviceId];
|
||||||
@@ -86,10 +91,16 @@ async function main() {
|
|||||||
rootLogger.error(`Error processing setpoint update for device '${change.deviceId}':`, error);
|
rootLogger.error(`Error processing setpoint update for device '${change.deviceId}':`, error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
for (const device of Object.entries(devices.DevicesObj)) {
|
for (const device of Object.entries(devices.DevicesObj)) {
|
||||||
|
const serial = await client.getDeviceSerialNumber(device[0]);
|
||||||
|
rootLogger.info(`Serial number for device '${device[0]}' (${device[1].Name}): ${serial}`);
|
||||||
|
|
||||||
await client.startRealtimeUpdates(device[0]);
|
await client.startRealtimeUpdates(device[0]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
main().catch(rootLogger.error);
|
main().catch((error) => {
|
||||||
|
rootLogger.error(error, 'Error in main');
|
||||||
|
});
|
||||||
|
|||||||
1378
package-lock.json
generated
1378
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
25
package.json
25
package.json
@@ -40,27 +40,32 @@
|
|||||||
"browser": false,
|
"browser": false,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"example": "tsx --watch ./example/main.ts",
|
"example": "tsx --watch ./example/main.ts",
|
||||||
|
"example:raw": "MYSA_OUTPUT_RAW_DATA=true tsx --watch ./example/main.ts",
|
||||||
"lint": "eslint --max-warnings 0 src/**/*.ts",
|
"lint": "eslint --max-warnings 0 src/**/*.ts",
|
||||||
"style-lint": "prettier -c .",
|
"style-lint": "prettier -c .",
|
||||||
"build": "tsup",
|
"build": "tsup",
|
||||||
"build:docs": "typedoc"
|
"build:docs": "typedoc"
|
||||||
},
|
},
|
||||||
|
"overrides": {
|
||||||
|
"brace-expansion": "^2.0.2"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/credential-providers": "3.817.0",
|
"@aws-sdk/client-iot": "3.830.0",
|
||||||
|
"@aws-sdk/credential-providers": "3.830.0",
|
||||||
"amazon-cognito-identity-js": "6.3.15",
|
"amazon-cognito-identity-js": "6.3.15",
|
||||||
"aws-iot-device-sdk-v2": "1.21.4",
|
"aws-iot-device-sdk-v2": "1.21.5",
|
||||||
"dayjs": "1.11.13",
|
"dayjs": "1.11.13",
|
||||||
"lodash": "4.17.21"
|
"lodash": "4.17.21"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "9.27.0",
|
"@eslint/js": "9.29.0",
|
||||||
"@semantic-release/npm": "12.0.1",
|
"@semantic-release/npm": "12.0.1",
|
||||||
"@types/lodash": "4.17.17",
|
"@types/lodash": "4.17.18",
|
||||||
"@types/node": "22.15.21",
|
"@types/node": "24.0.3",
|
||||||
"conventional-changelog-conventionalcommits": "9.0.0",
|
"conventional-changelog-conventionalcommits": "9.0.0",
|
||||||
"dotenv": "16.5.0",
|
"dotenv": "16.5.0",
|
||||||
"eslint": "9.27.0",
|
"eslint": "9.29.0",
|
||||||
"eslint-plugin-jsdoc": "50.6.17",
|
"eslint-plugin-jsdoc": "51.0.3",
|
||||||
"eslint-plugin-tsdoc": "0.4.0",
|
"eslint-plugin-tsdoc": "0.4.0",
|
||||||
"pino": "9.7.0",
|
"pino": "9.7.0",
|
||||||
"pino-pretty": "13.0.0",
|
"pino-pretty": "13.0.0",
|
||||||
@@ -69,10 +74,10 @@
|
|||||||
"prettier-plugin-organize-imports": "4.1.0",
|
"prettier-plugin-organize-imports": "4.1.0",
|
||||||
"semantic-release": "24.2.5",
|
"semantic-release": "24.2.5",
|
||||||
"tsup": "8.5.0",
|
"tsup": "8.5.0",
|
||||||
"tsx": "4.19.4",
|
"tsx": "4.20.3",
|
||||||
"typedoc": "0.28.4",
|
"typedoc": "0.28.5",
|
||||||
"typedoc-material-theme": "1.4.0",
|
"typedoc-material-theme": "1.4.0",
|
||||||
"typescript": "5.8.3",
|
"typescript": "5.8.3",
|
||||||
"typescript-eslint": "8.32.1"
|
"typescript-eslint": "8.34.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,8 @@ import { ChangeDeviceState } from '@/types/mqtt/in/ChangeDeviceState';
|
|||||||
import { InMessageType } from '@/types/mqtt/in/InMessageType';
|
import { InMessageType } from '@/types/mqtt/in/InMessageType';
|
||||||
import { StartPublishingDeviceStatus } from '@/types/mqtt/in/StartPublishingDeviceStatus';
|
import { StartPublishingDeviceStatus } from '@/types/mqtt/in/StartPublishingDeviceStatus';
|
||||||
import { OutMessageType } from '@/types/mqtt/out/OutMessageType';
|
import { OutMessageType } from '@/types/mqtt/out/OutMessageType';
|
||||||
import { Devices } from '@/types/rest/Devices';
|
import { Devices, DeviceStates, Firmwares } from '@/types/rest';
|
||||||
|
import { DescribeThingCommand, IoTClient } from '@aws-sdk/client-iot';
|
||||||
import { fromCognitoIdentityPool } from '@aws-sdk/credential-providers';
|
import { fromCognitoIdentityPool } from '@aws-sdk/credential-providers';
|
||||||
import {
|
import {
|
||||||
AuthenticationDetails,
|
AuthenticationDetails,
|
||||||
@@ -19,7 +20,7 @@ import {
|
|||||||
} from 'amazon-cognito-identity-js';
|
} from 'amazon-cognito-identity-js';
|
||||||
import { iot, mqtt } from 'aws-iot-device-sdk-v2';
|
import { iot, mqtt } from 'aws-iot-device-sdk-v2';
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
import duration from 'dayjs/plugin/duration';
|
import duration from 'dayjs/plugin/duration.js';
|
||||||
import { MysaApiError, UnauthenticatedError } from './Errors';
|
import { MysaApiError, UnauthenticatedError } from './Errors';
|
||||||
import { Logger, VoidLogger } from './Logger';
|
import { Logger, VoidLogger } from './Logger';
|
||||||
import { MysaApiClientEventTypes } from './MysaApiClientEventTypes';
|
import { MysaApiClientEventTypes } from './MysaApiClientEventTypes';
|
||||||
@@ -143,8 +144,23 @@ export class MysaApiClient {
|
|||||||
/**
|
/**
|
||||||
* Logs in the user with the given email address and password.
|
* Logs in the user with the given email address and password.
|
||||||
*
|
*
|
||||||
|
* This method authenticates the user with Mysa's Cognito user pool and establishes a session that can be used for
|
||||||
|
* subsequent API calls. Upon successful login, a 'sessionChanged' event is emitted.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
*
|
||||||
|
* ```typescript
|
||||||
|
* try {
|
||||||
|
* await client.login('user@example.com', 'password123');
|
||||||
|
* console.log('Login successful!');
|
||||||
|
* } catch (error) {
|
||||||
|
* console.error('Login failed:', error.message);
|
||||||
|
* }
|
||||||
|
* ```
|
||||||
|
*
|
||||||
* @param emailAddress - The email address of the user.
|
* @param emailAddress - The email address of the user.
|
||||||
* @param password - The password of the user.
|
* @param password - The password of the user.
|
||||||
|
* @throws {@link Error} When authentication fails due to invalid credentials or network issues.
|
||||||
*/
|
*/
|
||||||
async login(emailAddress: string, password: string): Promise<void> {
|
async login(emailAddress: string, password: string): Promise<void> {
|
||||||
this._cognitoUser = undefined;
|
this._cognitoUser = undefined;
|
||||||
@@ -175,7 +191,21 @@ export class MysaApiClient {
|
|||||||
/**
|
/**
|
||||||
* Retrieves the list of devices associated with the user.
|
* Retrieves the list of devices associated with the user.
|
||||||
*
|
*
|
||||||
|
* This method fetches all Mysa devices linked to the authenticated user's account, including device information such
|
||||||
|
* as models, locations, and configuration details.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
*
|
||||||
|
* ```typescript
|
||||||
|
* const devices = await client.getDevices();
|
||||||
|
* for (const [deviceId, device] of Object.entries(devices.DevicesObj)) {
|
||||||
|
* console.log(`Device: ${device.DisplayName} (${device.Model})`);
|
||||||
|
* }
|
||||||
|
* ```
|
||||||
|
*
|
||||||
* @returns A promise that resolves to the list of devices.
|
* @returns A promise that resolves to the list of devices.
|
||||||
|
* @throws {@link MysaApiError} When the API request fails.
|
||||||
|
* @throws {@link UnauthenticatedError} When the user is not authenticated.
|
||||||
*/
|
*/
|
||||||
async getDevices(): Promise<Devices> {
|
async getDevices(): Promise<Devices> {
|
||||||
this._logger.debug(`Fetching devices...`);
|
this._logger.debug(`Fetching devices...`);
|
||||||
@@ -184,7 +214,7 @@ export class MysaApiClient {
|
|||||||
|
|
||||||
const response = await this._fetcher(`${MysaApiBaseUrl}/devices`, {
|
const response = await this._fetcher(`${MysaApiBaseUrl}/devices`, {
|
||||||
headers: {
|
headers: {
|
||||||
Authorization: `${session.getAccessToken().getJwtToken()}`
|
Authorization: `${session.getIdToken().getJwtToken()}`
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -195,6 +225,138 @@ export class MysaApiClient {
|
|||||||
return response.json();
|
return response.json();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the serial number for a specific device.
|
||||||
|
*
|
||||||
|
* This method uses AWS IoT's DescribeThing API to fetch the serial number attribute for the specified device. This
|
||||||
|
* requires additional AWS IoT permissions and may not be available for all devices.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
*
|
||||||
|
* ```typescript
|
||||||
|
* const serialNumber = await client.getDeviceSerialNumber('device123');
|
||||||
|
* if (serialNumber) {
|
||||||
|
* console.log(`Device serial: ${serialNumber}`);
|
||||||
|
* } else {
|
||||||
|
* console.log('Serial number not available');
|
||||||
|
* }
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* @param deviceId - The ID of the device to get the serial number for.
|
||||||
|
* @returns A promise that resolves to the serial number, or undefined if not found.
|
||||||
|
* @throws {@link UnauthenticatedError} When the user is not authenticated.
|
||||||
|
*/
|
||||||
|
async getDeviceSerialNumber(deviceId: string): Promise<string | undefined> {
|
||||||
|
this._logger.debug(`Fetching serial number for device ${deviceId}...`);
|
||||||
|
|
||||||
|
const session = await this.getFreshSession();
|
||||||
|
|
||||||
|
// Get AWS credentials for IoT client
|
||||||
|
const credentialsProvider = fromCognitoIdentityPool({
|
||||||
|
clientConfig: {
|
||||||
|
region: AwsRegion
|
||||||
|
},
|
||||||
|
identityPoolId: CognitoIdentityPoolId,
|
||||||
|
logins: {
|
||||||
|
[CognitoLoginKey]: session.getIdToken().getJwtToken()
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const credentials = await credentialsProvider();
|
||||||
|
const iotClient = new IoTClient({
|
||||||
|
region: AwsRegion,
|
||||||
|
credentials: {
|
||||||
|
accessKeyId: credentials.accessKeyId,
|
||||||
|
secretAccessKey: credentials.secretAccessKey,
|
||||||
|
sessionToken: credentials.sessionToken
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
const command = new DescribeThingCommand({ thingName: deviceId });
|
||||||
|
const response = await iotClient.send(command);
|
||||||
|
return response.attributes?.['Serial'];
|
||||||
|
} catch (error) {
|
||||||
|
this._logger.warn(`Could not get serial number for device ${deviceId}:`, error);
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves firmware information for all devices.
|
||||||
|
*
|
||||||
|
* @returns A promise that resolves to the firmware information for all devices.
|
||||||
|
* @throws {@link MysaApiError} When the API request fails.
|
||||||
|
* @throws {@link UnauthenticatedError} When the user is not authenticated.
|
||||||
|
*/
|
||||||
|
async getDeviceFirmwares(): Promise<Firmwares> {
|
||||||
|
this._logger.debug(`Fetching device firmwares...`);
|
||||||
|
|
||||||
|
const session = await this.getFreshSession();
|
||||||
|
|
||||||
|
const response = await this._fetcher(`${MysaApiBaseUrl}/devices/firmware`, {
|
||||||
|
headers: {
|
||||||
|
Authorization: `${session.getIdToken().getJwtToken()}`
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new MysaApiError(response);
|
||||||
|
}
|
||||||
|
|
||||||
|
return response.json();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the current state information for all devices.
|
||||||
|
*
|
||||||
|
* @returns A promise that resolves to the current state of all devices.
|
||||||
|
* @throws {@link MysaApiError} When the API request fails.
|
||||||
|
* @throws {@link UnauthenticatedError} When the user is not authenticated.
|
||||||
|
*/
|
||||||
|
async getDeviceStates(): Promise<DeviceStates> {
|
||||||
|
this._logger.debug(`Fetching device states...`);
|
||||||
|
|
||||||
|
const session = await this.getFreshSession();
|
||||||
|
|
||||||
|
const response = await this._fetcher(`${MysaApiBaseUrl}/devices/state`, {
|
||||||
|
headers: {
|
||||||
|
Authorization: `${session.getIdToken().getJwtToken()}`
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new MysaApiError(response);
|
||||||
|
}
|
||||||
|
|
||||||
|
return response.json();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the state of a specific device by sending commands via MQTT.
|
||||||
|
*
|
||||||
|
* This method allows you to change the temperature set point and/or operating mode of a Mysa device. The command is
|
||||||
|
* sent through the MQTT connection for real-time device control.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
*
|
||||||
|
* ```typescript
|
||||||
|
* // Set temperature to 22°C
|
||||||
|
* await client.setDeviceState('device123', 22);
|
||||||
|
*
|
||||||
|
* // Turn device off
|
||||||
|
* await client.setDeviceState('device123', undefined, 'off');
|
||||||
|
*
|
||||||
|
* // Set temperature and mode
|
||||||
|
* await client.setDeviceState('device123', 20, 'heat');
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* @param deviceId - The ID of the device to control.
|
||||||
|
* @param setPoint - The target temperature set point (optional).
|
||||||
|
* @param mode - The operating mode to set ('off', 'heat', or undefined to leave unchanged).
|
||||||
|
* @throws {@link UnauthenticatedError} When the user is not authenticated.
|
||||||
|
* @throws {@link Error} When MQTT connection or command sending fails.
|
||||||
|
*/
|
||||||
async setDeviceState(deviceId: string, setPoint?: number, mode?: MysaDeviceMode) {
|
async setDeviceState(deviceId: string, setPoint?: number, mode?: MysaDeviceMode) {
|
||||||
this._logger.debug(`Setting device state for '${deviceId}'`);
|
this._logger.debug(`Setting device state for '${deviceId}'`);
|
||||||
|
|
||||||
@@ -249,13 +411,29 @@ export class MysaApiClient {
|
|||||||
/**
|
/**
|
||||||
* Starts receiving real-time updates for the specified device.
|
* Starts receiving real-time updates for the specified device.
|
||||||
*
|
*
|
||||||
|
* This method establishes an MQTT subscription to receive live status updates from the device, including temperature,
|
||||||
|
* humidity, set point changes, and other state information. The client will automatically send keep-alive messages to
|
||||||
|
* maintain the connection.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
*
|
||||||
|
* ```typescript
|
||||||
|
* // Start receiving updates and listen for events
|
||||||
|
* await client.startRealtimeUpdates('device123');
|
||||||
|
*
|
||||||
|
* client.emitter.on('statusChanged', (status) => {
|
||||||
|
* console.log(`Temperature: ${status.temperature}°C`);
|
||||||
|
* });
|
||||||
|
* ```
|
||||||
|
*
|
||||||
* @param deviceId - The ID of the device to start receiving updates for.
|
* @param deviceId - The ID of the device to start receiving updates for.
|
||||||
|
* @throws {@link Error} When MQTT connection or subscription fails.
|
||||||
*/
|
*/
|
||||||
async startRealtimeUpdates(deviceId: string) {
|
async startRealtimeUpdates(deviceId: string) {
|
||||||
this._logger.info(`Starting realtime updates for device '${deviceId}'`);
|
this._logger.info(`Starting real-time updates for device '${deviceId}'`);
|
||||||
|
|
||||||
if (this._realtimeDeviceIds.has(deviceId)) {
|
if (this._realtimeDeviceIds.has(deviceId)) {
|
||||||
this._logger.debug(`Realtime updates for device '${deviceId}' already started`);
|
this._logger.debug(`Real-time updates for device '${deviceId}' already started`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -293,9 +471,15 @@ export class MysaApiClient {
|
|||||||
/**
|
/**
|
||||||
* Stops receiving real-time updates for the specified device.
|
* Stops receiving real-time updates for the specified device.
|
||||||
*
|
*
|
||||||
|
* This method unsubscribes from the MQTT topic for the specified device and clears any associated timers to stop the
|
||||||
|
* keep-alive messages.
|
||||||
|
*
|
||||||
* @param deviceId - The ID of the device to stop receiving real-time updates for.
|
* @param deviceId - The ID of the device to stop receiving real-time updates for.
|
||||||
|
* @throws {@link Error} When MQTT unsubscription fails.
|
||||||
*/
|
*/
|
||||||
async stopRealtimeUpdates(deviceId: string) {
|
async stopRealtimeUpdates(deviceId: string) {
|
||||||
|
this._logger.info(`Stopping real-time updates for device '${deviceId}'`);
|
||||||
|
|
||||||
const timer = this._realtimeDeviceIds.get(deviceId);
|
const timer = this._realtimeDeviceIds.get(deviceId);
|
||||||
if (!timer) {
|
if (!timer) {
|
||||||
this._logger.warn(`No real-time updates are running for device '${deviceId}'`);
|
this._logger.warn(`No real-time updates are running for device '${deviceId}'`);
|
||||||
@@ -308,11 +492,19 @@ export class MysaApiClient {
|
|||||||
this._logger.debug(`Unsubscribing to MQTT topic '/v1/dev/${deviceId}/out'...`);
|
this._logger.debug(`Unsubscribing to MQTT topic '/v1/dev/${deviceId}/out'...`);
|
||||||
await mqttConnection.unsubscribe(`/v1/dev/${deviceId}/out`);
|
await mqttConnection.unsubscribe(`/v1/dev/${deviceId}/out`);
|
||||||
|
|
||||||
this._logger.debug(`Stopping real-time updates for device '${deviceId}'...`);
|
|
||||||
clearInterval(timer);
|
clearInterval(timer);
|
||||||
this._realtimeDeviceIds.delete(deviceId);
|
this._realtimeDeviceIds.delete(deviceId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ensures a valid, non-expired session is available.
|
||||||
|
*
|
||||||
|
* This method checks if the current session is valid and not expired. If the session is expired, it automatically
|
||||||
|
* refreshes it using the refresh token.
|
||||||
|
*
|
||||||
|
* @returns A promise that resolves to a valid CognitoUserSession.
|
||||||
|
* @throws {@link UnauthenticatedError} When no session exists or refresh fails.
|
||||||
|
*/
|
||||||
private async getFreshSession(): Promise<CognitoUserSession> {
|
private async getFreshSession(): Promise<CognitoUserSession> {
|
||||||
if (!this._cognitoUser || !this._cognitoUserSession) {
|
if (!this._cognitoUser || !this._cognitoUserSession) {
|
||||||
throw new UnauthenticatedError('An attempt was made to access a resource without a valid session.');
|
throw new UnauthenticatedError('An attempt was made to access a resource without a valid session.');
|
||||||
@@ -320,20 +512,20 @@ export class MysaApiClient {
|
|||||||
|
|
||||||
if (
|
if (
|
||||||
this._cognitoUserSession.isValid() &&
|
this._cognitoUserSession.isValid() &&
|
||||||
dayjs.unix(this._cognitoUserSession.getAccessToken().getExpiration()).isAfter()
|
dayjs.unix(this._cognitoUserSession.getIdToken().getExpiration()).isAfter()
|
||||||
) {
|
) {
|
||||||
this._logger.info('Session is valid, no need to refresh');
|
this._logger.debug('Session is valid, no need to refresh');
|
||||||
return Promise.resolve(this._cognitoUserSession);
|
return Promise.resolve(this._cognitoUserSession);
|
||||||
}
|
}
|
||||||
|
|
||||||
this._logger.info('Session is not valid or expired, refreshing...');
|
this._logger.debug('Session is not valid or expired, refreshing...');
|
||||||
return new Promise<CognitoUserSession>((resolve, reject) => {
|
return new Promise<CognitoUserSession>((resolve, reject) => {
|
||||||
this._cognitoUser!.refreshSession(this._cognitoUserSession!.getRefreshToken(), (error, session) => {
|
this._cognitoUser!.refreshSession(this._cognitoUserSession!.getRefreshToken(), (error, session) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
this._logger.error('Failed to refresh session:', error);
|
this._logger.error('Failed to refresh session:', error);
|
||||||
reject(new UnauthenticatedError('Unable to refresh the authentication session.'));
|
reject(new UnauthenticatedError('Unable to refresh the authentication session.'));
|
||||||
} else {
|
} else {
|
||||||
this._logger.info('Session refreshed successfully');
|
this._logger.debug('Session refreshed successfully');
|
||||||
this._cognitoUserSession = session;
|
this._cognitoUserSession = session;
|
||||||
this.emitter.emit('sessionChanged', this.session);
|
this.emitter.emit('sessionChanged', this.session);
|
||||||
resolve(session);
|
resolve(session);
|
||||||
@@ -342,6 +534,15 @@ export class MysaApiClient {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Establishes and returns an MQTT connection for real-time communication.
|
||||||
|
*
|
||||||
|
* This method creates a new MQTT connection if one doesn't exist, using AWS IoT WebSocket connections with Cognito
|
||||||
|
* credentials. The connection is cached and reused for subsequent calls.
|
||||||
|
*
|
||||||
|
* @returns A promise that resolves to an active MQTT connection.
|
||||||
|
* @throws {@link Error} When connection establishment fails.
|
||||||
|
*/
|
||||||
private async getMqttConnection(): Promise<mqtt.MqttClientConnection> {
|
private async getMqttConnection(): Promise<mqtt.MqttClientConnection> {
|
||||||
if (this._mqttConnection) {
|
if (this._mqttConnection) {
|
||||||
return this._mqttConnection;
|
return this._mqttConnection;
|
||||||
@@ -383,6 +584,15 @@ export class MysaApiClient {
|
|||||||
return this._mqttConnection;
|
return this._mqttConnection;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Processes incoming MQTT messages and emits appropriate events.
|
||||||
|
*
|
||||||
|
* This method parses MQTT payloads and converts them into typed events that can be listened to via the client's event
|
||||||
|
* emitter. It handles both v1 and v2 device message formats and emits events like 'statusChanged', 'setPointChanged',
|
||||||
|
* and 'stateChanged'.
|
||||||
|
*
|
||||||
|
* @param payload - The raw MQTT message payload to process.
|
||||||
|
*/
|
||||||
private processMqttMessage(payload: ArrayBuffer) {
|
private processMqttMessage(payload: ArrayBuffer) {
|
||||||
try {
|
try {
|
||||||
const parsedPayload = parseMqttPayload(payload);
|
const parsedPayload = parseMqttPayload(payload);
|
||||||
|
|||||||
17
src/types/rest/Firmwares.ts
Normal file
17
src/types/rest/Firmwares.ts
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
/** Device firmware information */
|
||||||
|
export interface FirmwareDevice {
|
||||||
|
/** Device ID */
|
||||||
|
Device: string;
|
||||||
|
/** Device firmware version */
|
||||||
|
InstalledVersion: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Collection of firmware devices indexed by device ID
|
||||||
|
*
|
||||||
|
* Maps device ID strings to their corresponding firmware device objects, providing a lookup table for all devices
|
||||||
|
* associated with a user account.
|
||||||
|
*/
|
||||||
|
export interface Firmwares {
|
||||||
|
Firmware: Record<string, FirmwareDevice>;
|
||||||
|
}
|
||||||
69
src/types/rest/States.ts
Normal file
69
src/types/rest/States.ts
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
/** Represents a timestamped value with metadata */
|
||||||
|
export interface TimestampedValue<T = number> {
|
||||||
|
/** Timestamp when the value was recorded */
|
||||||
|
t: number;
|
||||||
|
/** The actual value */
|
||||||
|
v: T;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Represents the state of a single device */
|
||||||
|
export interface DeviceState {
|
||||||
|
/** Device identifier */
|
||||||
|
Device: string;
|
||||||
|
/** Overall timestamp for the device state */
|
||||||
|
Timestamp: number;
|
||||||
|
/** Time the device has been on */
|
||||||
|
OnTime: TimestampedValue<number>;
|
||||||
|
/** Temperature set point */
|
||||||
|
SetPoint: TimestampedValue<number>;
|
||||||
|
/** Display brightness level */
|
||||||
|
Brightness: TimestampedValue<number>;
|
||||||
|
/** Schedule mode setting */
|
||||||
|
ScheduleMode: TimestampedValue<number>;
|
||||||
|
/** Hold time setting */
|
||||||
|
HoldTime: TimestampedValue<number>;
|
||||||
|
/** Wi-Fi signal strength */
|
||||||
|
Rssi: TimestampedValue<number>;
|
||||||
|
/** Thermostat mode */
|
||||||
|
TstatMode: TimestampedValue<number>;
|
||||||
|
/** Available heap memory */
|
||||||
|
FreeHeap: TimestampedValue<number>;
|
||||||
|
/** Sensor temperature reading */
|
||||||
|
SensorTemp: TimestampedValue<number>;
|
||||||
|
/** Current mode */
|
||||||
|
Mode: TimestampedValue<number>;
|
||||||
|
/** Voltage measurement */
|
||||||
|
Voltage: TimestampedValue<number>;
|
||||||
|
/** Temperature corrected for calibration */
|
||||||
|
CorrectedTemp: TimestampedValue<number>;
|
||||||
|
/** Duty cycle percentage */
|
||||||
|
Duty: TimestampedValue<number>;
|
||||||
|
/** Heat sink temperature */
|
||||||
|
HeatSink: TimestampedValue<number>;
|
||||||
|
/** Time the device has been off */
|
||||||
|
OffTime: TimestampedValue<number>;
|
||||||
|
/** Connection status */
|
||||||
|
Connected: TimestampedValue<boolean>;
|
||||||
|
/** Current consumption */
|
||||||
|
Current: TimestampedValue<number>;
|
||||||
|
/** Humidity reading */
|
||||||
|
Humidity: TimestampedValue<number>;
|
||||||
|
/** Lock status */
|
||||||
|
Lock: TimestampedValue<number>;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Collection of device states indexed by device ID
|
||||||
|
*
|
||||||
|
* Maps device ID strings to their corresponding device state objects, providing a lookup table for all devices
|
||||||
|
* associated with a user account.
|
||||||
|
*/
|
||||||
|
export interface DeviceStatesObj {
|
||||||
|
/** Device state objects indexed by their unique device ID strings */
|
||||||
|
[deviceId: string]: DeviceState;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Top-level interface for the device states REST API response. */
|
||||||
|
export interface DeviceStates {
|
||||||
|
DeviceStatesObj: DeviceStatesObj;
|
||||||
|
}
|
||||||
@@ -1 +1,3 @@
|
|||||||
export * from './Devices';
|
export * from './Devices';
|
||||||
|
export * from './Firmwares';
|
||||||
|
export * from './States';
|
||||||
|
|||||||
Reference in New Issue
Block a user