dt-common-device 1.2.3 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/device/cloud/interface.d.ts +101 -0
- package/dist/device/cloud/interface.js +3 -0
- package/dist/device/cloud/interfaces/IDeviceConnectionService.d.ts +7 -0
- package/dist/device/cloud/interfaces/IDeviceConnectionService.js +3 -0
- package/dist/device/cloud/interfaces/IDevicesService.d.ts +9 -0
- package/dist/device/cloud/interfaces/IDevicesService.js +2 -0
- package/dist/device/cloud/services/Device.service.d.ts +39 -0
- package/dist/device/cloud/services/Device.service.js +9 -0
- package/dist/device/cloud/services/DeviceCloudService.d.ts +42 -0
- package/dist/device/cloud/services/DeviceCloudService.js +59 -0
- package/dist/device/cloud/services/DeviceHub.service.d.ts +3 -0
- package/dist/device/cloud/services/DeviceHub.service.js +6 -0
- package/dist/device/cloud/services/Hub.service.d.ts +25 -0
- package/dist/device/cloud/services/Hub.service.js +9 -0
- package/dist/device/cloud/services/SmartThingsDeviceService.d.ts +38 -0
- package/dist/device/cloud/services/SmartThingsDeviceService.js +52 -0
- package/dist/device/index.d.ts +4 -0
- package/dist/device/index.js +20 -0
- package/dist/device/local/interface.d.ts +0 -0
- package/dist/device/local/interface.js +1 -0
- package/dist/device/local/interfaces/IConnection.d.ts +1 -1
- package/dist/device/local/interfaces/ISchedule.d.ts +25 -0
- package/dist/device/local/interfaces/ISchedule.js +2 -0
- package/dist/device/local/repository/Property.repository.d.ts +1 -0
- package/dist/device/local/repository/Property.repository.js +12 -1
- package/dist/device/local/repository/Schedule.repository.d.ts +8 -0
- package/dist/device/local/repository/Schedule.repository.js +102 -0
- package/dist/device/local/services/DeviceHub.service.d.ts +11 -0
- package/dist/device/local/services/DeviceHub.service.js +40 -0
- package/dist/device/local/services/Property.service.d.ts +1 -0
- package/dist/device/local/services/Property.service.js +4 -0
- package/dist/device/local/services/Schedule.service.d.ts +8 -0
- package/dist/device/local/services/Schedule.service.js +23 -0
- package/dist/device/local/services/index.d.ts +1 -0
- package/dist/device/local/services/index.js +3 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
- package/src/device/local/interfaces/ISchedule.ts +40 -0
- package/src/device/local/repository/Property.repository.ts +14 -1
- package/src/device/local/repository/Schedule.repository.ts +56 -0
- package/src/device/local/services/Property.service.ts +5 -0
- package/src/device/local/services/Schedule.service.ts +22 -0
- package/src/device/local/services/index.ts +1 -0
- package/src/index.ts +1 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { IConnection, IConnectionConnectParams, IDevice, IDeviceAccountResponse, IDeviceCommand, ISmartthingsDeviceCommand, ICommandResponse } from "./types";
|
|
2
|
+
/**
|
|
3
|
+
* Class interface for device cloud operations and connection management
|
|
4
|
+
*/
|
|
5
|
+
export interface IDeviceCloudService {
|
|
6
|
+
/**
|
|
7
|
+
* Creates a new connection for device management
|
|
8
|
+
* @param data - Connection data
|
|
9
|
+
* @param userId - User identifier
|
|
10
|
+
* @returns Promise with connection result
|
|
11
|
+
*/
|
|
12
|
+
createConnection(data: IConnection, userId: string): Promise<any>;
|
|
13
|
+
/**
|
|
14
|
+
* Gets device account information for a connection
|
|
15
|
+
* @param connection - Connection object
|
|
16
|
+
* @returns Promise with device account response
|
|
17
|
+
*/
|
|
18
|
+
getDeviceAccount(connection: IConnection): Promise<IDeviceAccountResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Gets all devices for a connection
|
|
21
|
+
* @param connection - Connection object
|
|
22
|
+
* @returns Promise with array of devices
|
|
23
|
+
*/
|
|
24
|
+
getDevices(connection: IConnection): Promise<IDevice[]>;
|
|
25
|
+
/**
|
|
26
|
+
* Filters devices based on connection and device list
|
|
27
|
+
* @param connection - Connection object
|
|
28
|
+
* @param devices - Array of devices to filter
|
|
29
|
+
* @returns Promise with filtered devices
|
|
30
|
+
*/
|
|
31
|
+
filterDevices(connection: IConnection, devices: any[]): Promise<IDevice[]>;
|
|
32
|
+
/**
|
|
33
|
+
* Connects to a device service
|
|
34
|
+
* @param connection - Connection object
|
|
35
|
+
* @param connectionConnect - Connection parameters
|
|
36
|
+
* @returns Promise with connection result
|
|
37
|
+
*/
|
|
38
|
+
connect(connection: IConnection, connectionConnect: IConnectionConnectParams): Promise<any>;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Interface for device command operations
|
|
42
|
+
*/
|
|
43
|
+
export interface IDeviceCommandManager {
|
|
44
|
+
/**
|
|
45
|
+
* Invokes a command on a device
|
|
46
|
+
* @param command - Device command to execute
|
|
47
|
+
* @param deviceId - Device identifier
|
|
48
|
+
* @returns Promise with command response
|
|
49
|
+
*/
|
|
50
|
+
invokeCommand(command: IDeviceCommand, deviceId: string): Promise<ICommandResponse>;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Interface for SmartThings specific device command operations
|
|
54
|
+
*/
|
|
55
|
+
export interface ISmartthingsDeviceCommandManager extends IDeviceCommandManager {
|
|
56
|
+
/**
|
|
57
|
+
* Performs device action for SmartThings
|
|
58
|
+
* @param commands - Array of SmartThings device commands
|
|
59
|
+
* @param deviceId - Device identifier
|
|
60
|
+
* @param accessToken - Access token for authentication
|
|
61
|
+
* @returns Promise with action result
|
|
62
|
+
*/
|
|
63
|
+
performDeviceAction(commands: ISmartthingsDeviceCommand[], deviceId: string, accessToken: string): Promise<any>;
|
|
64
|
+
/**
|
|
65
|
+
* Gets device status for SmartThings
|
|
66
|
+
* @param deviceId - Device identifier
|
|
67
|
+
* @param accessToken - Access token for authentication
|
|
68
|
+
* @returns Promise with device status
|
|
69
|
+
*/
|
|
70
|
+
getDeviceStatus(deviceId: string, accessToken: string): Promise<any>;
|
|
71
|
+
/**
|
|
72
|
+
* Gets device lock status for SmartThings
|
|
73
|
+
* @param deviceId - Device identifier
|
|
74
|
+
* @param accessToken - Access token for authentication
|
|
75
|
+
* @returns Promise with lock status
|
|
76
|
+
*/
|
|
77
|
+
getDeviceLockStatus(deviceId: string, accessToken: string): Promise<any>;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Interface for device command factory
|
|
81
|
+
*/
|
|
82
|
+
export interface IDeviceCommandManagerFactory {
|
|
83
|
+
/**
|
|
84
|
+
* Creates a device command manager for a specific connection provider
|
|
85
|
+
* @param connectionProvider - Connection provider type
|
|
86
|
+
* @param connection - Connection object
|
|
87
|
+
* @returns Device command manager instance
|
|
88
|
+
*/
|
|
89
|
+
createDeviceCommandManager(connectionProvider: string, connection: IConnection): IDeviceCommandManager;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Interface for device command classes
|
|
93
|
+
*/
|
|
94
|
+
export interface IDeviceCommandClass {
|
|
95
|
+
/**
|
|
96
|
+
* Creates a SmartThings device command from a generic device command
|
|
97
|
+
* @param deviceCommand - Generic device command
|
|
98
|
+
* @returns SmartThings device command
|
|
99
|
+
*/
|
|
100
|
+
fromDeviceCommand(deviceCommand: IDeviceCommand): ISmartthingsDeviceCommand;
|
|
101
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IConnection, IConnectionConnectParams, IDeviceAccountResponse } from "../types";
|
|
2
|
+
export interface IDeviceConnectionService {
|
|
3
|
+
createConnection(data: IConnection, userId: string): Promise<any>;
|
|
4
|
+
getDeviceAccount(connection: IConnection): Promise<IDeviceAccountResponse>;
|
|
5
|
+
getDevices(connection: IConnection): Promise<any>;
|
|
6
|
+
connect(connection: IConnection, connectionConnect: IConnectionConnectParams): Promise<any>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IConnection } from "../types";
|
|
2
|
+
export interface IDeviceService {
|
|
3
|
+
getDevices(connection: IConnection): Promise<Record<string, any>[]>;
|
|
4
|
+
getDevice(connectionId: string, deviceId: string): Promise<Record<string, any>>;
|
|
5
|
+
getStatus(connectionId: string, deviceId: string): Promise<string | null>;
|
|
6
|
+
getState(deviceId: string): Promise<Record<string, any>>;
|
|
7
|
+
getGateways(connectionId: string): Promise<any[] | null>;
|
|
8
|
+
getGatewayDetails(connectionId: string, gatewayId: string): Promise<any>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { IDeviceService } from "../interfaces";
|
|
2
|
+
import { IConnection, IDevice } from "../types";
|
|
3
|
+
export declare abstract class DeviceService implements IDeviceService {
|
|
4
|
+
deviceId: string;
|
|
5
|
+
propertyId: string;
|
|
6
|
+
name: string;
|
|
7
|
+
hubId: string[];
|
|
8
|
+
deviceType: {
|
|
9
|
+
id: string;
|
|
10
|
+
type: string;
|
|
11
|
+
};
|
|
12
|
+
status: {
|
|
13
|
+
online: boolean;
|
|
14
|
+
error?: {
|
|
15
|
+
type?: string;
|
|
16
|
+
message?: string;
|
|
17
|
+
};
|
|
18
|
+
lastUpdated?: string;
|
|
19
|
+
};
|
|
20
|
+
state?: Record<string, any>;
|
|
21
|
+
metaData?: Record<string, any>;
|
|
22
|
+
zone?: {
|
|
23
|
+
id: string;
|
|
24
|
+
name: string;
|
|
25
|
+
zoneType: string;
|
|
26
|
+
parentZone?: {
|
|
27
|
+
id: string;
|
|
28
|
+
name: string;
|
|
29
|
+
zoneType: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
connection: IConnection;
|
|
33
|
+
constructor(device: IDevice);
|
|
34
|
+
abstract getDevices(connection: IConnection): Promise<Record<string, any>[]>;
|
|
35
|
+
abstract getDevice(connectionId: string, deviceId: string): Promise<any>;
|
|
36
|
+
abstract getBattery(deviceId: string): Promise<number | string>;
|
|
37
|
+
abstract getStatus(connectionId: string, deviceId: string): Promise<string>;
|
|
38
|
+
abstract getState(deviceId: string): Promise<string>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { IDeviceCloudService } from "../interface";
|
|
2
|
+
import { IConnection, IDevice, IDeviceAccountResponse, IConnectionConnectParams } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Device Cloud Service Class
|
|
5
|
+
* Implements IDeviceCloudService interface with empty implementations
|
|
6
|
+
* Implementation will be provided by the consuming project
|
|
7
|
+
*/
|
|
8
|
+
export declare class DeviceCloudService implements IDeviceCloudService {
|
|
9
|
+
/**
|
|
10
|
+
* Creates a new connection for device management
|
|
11
|
+
* @param data - Connection data
|
|
12
|
+
* @param userId - User identifier
|
|
13
|
+
* @returns Promise with connection result
|
|
14
|
+
*/
|
|
15
|
+
createConnection(data: IConnection, userId: string): Promise<any>;
|
|
16
|
+
/**
|
|
17
|
+
* Gets device account information for a connection
|
|
18
|
+
* @param connection - Connection object
|
|
19
|
+
* @returns Promise with device account response
|
|
20
|
+
*/
|
|
21
|
+
getDeviceAccount(connection: IConnection): Promise<IDeviceAccountResponse>;
|
|
22
|
+
/**
|
|
23
|
+
* Gets all devices for a connection
|
|
24
|
+
* @param connection - Connection object
|
|
25
|
+
* @returns Promise with array of devices
|
|
26
|
+
*/
|
|
27
|
+
getDevices(connection: IConnection): Promise<IDevice[]>;
|
|
28
|
+
/**
|
|
29
|
+
* Filters devices based on connection and device list
|
|
30
|
+
* @param connection - Connection object
|
|
31
|
+
* @param devices - Array of devices to filter
|
|
32
|
+
* @returns Promise with filtered devices
|
|
33
|
+
*/
|
|
34
|
+
filterDevices(connection: IConnection, devices: any[]): Promise<IDevice[]>;
|
|
35
|
+
/**
|
|
36
|
+
* Connects to a device service
|
|
37
|
+
* @param connection - Connection object
|
|
38
|
+
* @param connectionConnect - Connection parameters
|
|
39
|
+
* @returns Promise with connection result
|
|
40
|
+
*/
|
|
41
|
+
connect(connection: IConnection, connectionConnect: IConnectionConnectParams): Promise<any>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeviceCloudService = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Device Cloud Service Class
|
|
6
|
+
* Implements IDeviceCloudService interface with empty implementations
|
|
7
|
+
* Implementation will be provided by the consuming project
|
|
8
|
+
*/
|
|
9
|
+
class DeviceCloudService {
|
|
10
|
+
/**
|
|
11
|
+
* Creates a new connection for device management
|
|
12
|
+
* @param data - Connection data
|
|
13
|
+
* @param userId - User identifier
|
|
14
|
+
* @returns Promise with connection result
|
|
15
|
+
*/
|
|
16
|
+
async createConnection(data, userId) {
|
|
17
|
+
// Implementation will be provided by the consuming project
|
|
18
|
+
throw new Error("createConnection method not implemented");
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Gets device account information for a connection
|
|
22
|
+
* @param connection - Connection object
|
|
23
|
+
* @returns Promise with device account response
|
|
24
|
+
*/
|
|
25
|
+
async getDeviceAccount(connection) {
|
|
26
|
+
// Implementation will be provided by the consuming project
|
|
27
|
+
throw new Error("getDeviceAccount method not implemented");
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Gets all devices for a connection
|
|
31
|
+
* @param connection - Connection object
|
|
32
|
+
* @returns Promise with array of devices
|
|
33
|
+
*/
|
|
34
|
+
async getDevices(connection) {
|
|
35
|
+
// Implementation will be provided by the consuming project
|
|
36
|
+
throw new Error("getDevices method not implemented");
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Filters devices based on connection and device list
|
|
40
|
+
* @param connection - Connection object
|
|
41
|
+
* @param devices - Array of devices to filter
|
|
42
|
+
* @returns Promise with filtered devices
|
|
43
|
+
*/
|
|
44
|
+
async filterDevices(connection, devices) {
|
|
45
|
+
// Implementation will be provided by the consuming project
|
|
46
|
+
throw new Error("filterDevices method not implemented");
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Connects to a device service
|
|
50
|
+
* @param connection - Connection object
|
|
51
|
+
* @param connectionConnect - Connection parameters
|
|
52
|
+
* @returns Promise with connection result
|
|
53
|
+
*/
|
|
54
|
+
async connect(connection, connectionConnect) {
|
|
55
|
+
// Implementation will be provided by the consuming project
|
|
56
|
+
throw new Error("connect method not implemented");
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.DeviceCloudService = DeviceCloudService;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { IHubService } from "../interfaces";
|
|
2
|
+
import { IConnection, IDevice } from "../types";
|
|
3
|
+
export declare abstract class HubService implements IHubService {
|
|
4
|
+
deviceId: string;
|
|
5
|
+
propertyId: string;
|
|
6
|
+
name: string;
|
|
7
|
+
deviceType: {
|
|
8
|
+
id: string;
|
|
9
|
+
type: string;
|
|
10
|
+
};
|
|
11
|
+
status: {
|
|
12
|
+
online: boolean;
|
|
13
|
+
error?: {
|
|
14
|
+
type?: string;
|
|
15
|
+
message?: string;
|
|
16
|
+
};
|
|
17
|
+
lastUpdated?: string;
|
|
18
|
+
};
|
|
19
|
+
metaData?: Record<string, any>;
|
|
20
|
+
connection: IConnection;
|
|
21
|
+
constructor(hub: IDevice);
|
|
22
|
+
abstract getHubs(connectionId: string): Promise<any[] | null>;
|
|
23
|
+
abstract getHub(connectionId: string, hubId: string): Promise<Record<string, any>>;
|
|
24
|
+
abstract getStatus(connectionId: string, hubId: string): Promise<string>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ISmartthingsDeviceCommandManager } from "../interface";
|
|
2
|
+
import { IDeviceCommand, ISmartthingsDeviceCommand, ICommandResponse } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* SmartThings Device Service Class
|
|
5
|
+
* Implements ISmartthingsDeviceCommandManager interface with empty implementations
|
|
6
|
+
* Implementation will be provided by the consuming project
|
|
7
|
+
*/
|
|
8
|
+
export declare class SmartThingsDeviceService implements ISmartthingsDeviceCommandManager {
|
|
9
|
+
/**
|
|
10
|
+
* Invokes a command on a device
|
|
11
|
+
* @param command - Device command to execute
|
|
12
|
+
* @param deviceId - Device identifier
|
|
13
|
+
* @returns Promise with command response
|
|
14
|
+
*/
|
|
15
|
+
invokeCommand(command: IDeviceCommand, deviceId: string): Promise<ICommandResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Performs device action for SmartThings
|
|
18
|
+
* @param commands - Array of SmartThings device commands
|
|
19
|
+
* @param deviceId - Device identifier
|
|
20
|
+
* @param accessToken - Access token for authentication
|
|
21
|
+
* @returns Promise with action result
|
|
22
|
+
*/
|
|
23
|
+
performDeviceAction(commands: ISmartthingsDeviceCommand[], deviceId: string, accessToken: string): Promise<any>;
|
|
24
|
+
/**
|
|
25
|
+
* Gets device status for SmartThings
|
|
26
|
+
* @param deviceId - Device identifier
|
|
27
|
+
* @param accessToken - Access token for authentication
|
|
28
|
+
* @returns Promise with device status
|
|
29
|
+
*/
|
|
30
|
+
getDeviceStatus(deviceId: string, accessToken: string): Promise<any>;
|
|
31
|
+
/**
|
|
32
|
+
* Gets device lock status for SmartThings
|
|
33
|
+
* @param deviceId - Device identifier
|
|
34
|
+
* @param accessToken - Access token for authentication
|
|
35
|
+
* @returns Promise with lock status
|
|
36
|
+
*/
|
|
37
|
+
getDeviceLockStatus(deviceId: string, accessToken: string): Promise<any>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SmartThingsDeviceService = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* SmartThings Device Service Class
|
|
6
|
+
* Implements ISmartthingsDeviceCommandManager interface with empty implementations
|
|
7
|
+
* Implementation will be provided by the consuming project
|
|
8
|
+
*/
|
|
9
|
+
class SmartThingsDeviceService {
|
|
10
|
+
/**
|
|
11
|
+
* Invokes a command on a device
|
|
12
|
+
* @param command - Device command to execute
|
|
13
|
+
* @param deviceId - Device identifier
|
|
14
|
+
* @returns Promise with command response
|
|
15
|
+
*/
|
|
16
|
+
async invokeCommand(command, deviceId) {
|
|
17
|
+
// Implementation will be provided by the consuming project
|
|
18
|
+
throw new Error("invokeCommand method not implemented");
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Performs device action for SmartThings
|
|
22
|
+
* @param commands - Array of SmartThings device commands
|
|
23
|
+
* @param deviceId - Device identifier
|
|
24
|
+
* @param accessToken - Access token for authentication
|
|
25
|
+
* @returns Promise with action result
|
|
26
|
+
*/
|
|
27
|
+
async performDeviceAction(commands, deviceId, accessToken) {
|
|
28
|
+
// Implementation will be provided by the consuming project
|
|
29
|
+
throw new Error("performDeviceAction method not implemented");
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Gets device status for SmartThings
|
|
33
|
+
* @param deviceId - Device identifier
|
|
34
|
+
* @param accessToken - Access token for authentication
|
|
35
|
+
* @returns Promise with device status
|
|
36
|
+
*/
|
|
37
|
+
async getDeviceStatus(deviceId, accessToken) {
|
|
38
|
+
// Implementation will be provided by the consuming project
|
|
39
|
+
throw new Error("getDeviceStatus method not implemented");
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Gets device lock status for SmartThings
|
|
43
|
+
* @param deviceId - Device identifier
|
|
44
|
+
* @param accessToken - Access token for authentication
|
|
45
|
+
* @returns Promise with lock status
|
|
46
|
+
*/
|
|
47
|
+
async getDeviceLockStatus(deviceId, accessToken) {
|
|
48
|
+
// Implementation will be provided by the consuming project
|
|
49
|
+
throw new Error("getDeviceLockStatus method not implemented");
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
exports.SmartThingsDeviceService = SmartThingsDeviceService;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// DeviceThread Common Library - Device Module
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
16
|
+
};
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
// Export cloud device interfaces
|
|
19
|
+
__exportStar(require("./cloud/interface"), exports);
|
|
20
|
+
__exportStar(require("./cloud/types"), exports);
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export interface ISchedule {
|
|
2
|
+
id?: string;
|
|
3
|
+
name: string;
|
|
4
|
+
deviceId: string;
|
|
5
|
+
scheduleId: string | null;
|
|
6
|
+
state: {
|
|
7
|
+
targetTemperature?: number;
|
|
8
|
+
temperatureUnit?: "C" | "F";
|
|
9
|
+
mode?: "cool" | "heat" | "fan" | "dry" | "auto";
|
|
10
|
+
swing?: "stopped" | "rangeFull" | "fixedTop" | "fixedMiddleTop" | "fixedMiddle" | "fixedMiddleBottom" | "fixedBottom";
|
|
11
|
+
fanLevel?: "auto" | "low" | "medium" | "high";
|
|
12
|
+
};
|
|
13
|
+
startTime: string;
|
|
14
|
+
endTime: string;
|
|
15
|
+
recurringDays: ("Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday")[];
|
|
16
|
+
createTime?: string;
|
|
17
|
+
nextTime?: string;
|
|
18
|
+
nextTimeSecondsFromNow?: number;
|
|
19
|
+
targetTimeLocal: string;
|
|
20
|
+
timezone: string;
|
|
21
|
+
scheduleInheritedFrom: "zone" | "device";
|
|
22
|
+
zoneId: string;
|
|
23
|
+
userId: string;
|
|
24
|
+
status?: "SET" | "UNSET";
|
|
25
|
+
}
|
|
@@ -64,12 +64,23 @@ let PropertyRepository = (() => {
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
async getProperty(propertyId) {
|
|
67
|
-
const property = await this.postgres.query("SELECT * FROM
|
|
67
|
+
const property = await this.postgres.query("SELECT * FROM dt_properties WHERE id = $1", [propertyId]);
|
|
68
68
|
if (property.rows.length > 0) {
|
|
69
69
|
return property.rows[0];
|
|
70
70
|
}
|
|
71
71
|
return null;
|
|
72
72
|
}
|
|
73
|
+
async getAllProperties() {
|
|
74
|
+
try {
|
|
75
|
+
//Retrieve all the properties ids from the database
|
|
76
|
+
const properties = await this.postgres.query("SELECT id FROM dt_properties");
|
|
77
|
+
return properties.rows.map((property) => property.id);
|
|
78
|
+
}
|
|
79
|
+
catch (error) {
|
|
80
|
+
console.log(error);
|
|
81
|
+
throw new Error("Failed to get all properties");
|
|
82
|
+
}
|
|
83
|
+
}
|
|
73
84
|
};
|
|
74
85
|
__setFunctionName(_classThis, "PropertyRepository");
|
|
75
86
|
(() => {
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ISchedule } from "../interfaces/ISchedule";
|
|
2
|
+
export declare class ScheduleRepository {
|
|
3
|
+
private readonly baseUrl;
|
|
4
|
+
constructor();
|
|
5
|
+
getSchedule(scheduleId: string): Promise<any>;
|
|
6
|
+
getScheduleByZone(zoneId: string): Promise<any>;
|
|
7
|
+
setSchedule(scheduleId: string, schedule: ISchedule): Promise<any>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
3
|
+
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
4
|
+
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
5
|
+
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
|
|
6
|
+
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
|
|
7
|
+
var _, done = false;
|
|
8
|
+
for (var i = decorators.length - 1; i >= 0; i--) {
|
|
9
|
+
var context = {};
|
|
10
|
+
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
|
|
11
|
+
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
|
|
12
|
+
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
|
|
13
|
+
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
|
|
14
|
+
if (kind === "accessor") {
|
|
15
|
+
if (result === void 0) continue;
|
|
16
|
+
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
|
|
17
|
+
if (_ = accept(result.get)) descriptor.get = _;
|
|
18
|
+
if (_ = accept(result.set)) descriptor.set = _;
|
|
19
|
+
if (_ = accept(result.init)) initializers.unshift(_);
|
|
20
|
+
}
|
|
21
|
+
else if (_ = accept(result)) {
|
|
22
|
+
if (kind === "field") initializers.unshift(_);
|
|
23
|
+
else descriptor[key] = _;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
27
|
+
done = true;
|
|
28
|
+
};
|
|
29
|
+
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
30
|
+
var useValue = arguments.length > 2;
|
|
31
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
32
|
+
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
33
|
+
}
|
|
34
|
+
return useValue ? value : void 0;
|
|
35
|
+
};
|
|
36
|
+
var __setFunctionName = (this && this.__setFunctionName) || function (f, name, prefix) {
|
|
37
|
+
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
|
|
38
|
+
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
39
|
+
};
|
|
40
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
41
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
42
|
+
};
|
|
43
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44
|
+
exports.ScheduleRepository = void 0;
|
|
45
|
+
const typedi_1 = require("typedi");
|
|
46
|
+
const config_1 = require("../../../config/config");
|
|
47
|
+
const axios_1 = __importDefault(require("axios"));
|
|
48
|
+
let ScheduleRepository = (() => {
|
|
49
|
+
let _classDecorators = [(0, typedi_1.Service)()];
|
|
50
|
+
let _classDescriptor;
|
|
51
|
+
let _classExtraInitializers = [];
|
|
52
|
+
let _classThis;
|
|
53
|
+
var ScheduleRepository = _classThis = class {
|
|
54
|
+
constructor() {
|
|
55
|
+
const { DEVICE_SERVICE } = (0, config_1.getConfig)();
|
|
56
|
+
if (!DEVICE_SERVICE) {
|
|
57
|
+
throw new Error("DEVICE_SERVICE is not configured. Call initialize() first with DEVICE_SERVICE.");
|
|
58
|
+
}
|
|
59
|
+
this.baseUrl = DEVICE_SERVICE;
|
|
60
|
+
}
|
|
61
|
+
async getSchedule(scheduleId) {
|
|
62
|
+
try {
|
|
63
|
+
const response = await axios_1.default.get(`${this.baseUrl}/devices/schedule?id=${scheduleId}`);
|
|
64
|
+
return response.data;
|
|
65
|
+
}
|
|
66
|
+
catch (error) {
|
|
67
|
+
console.log(error);
|
|
68
|
+
throw new Error(`Failed to get schedule: ${error.response.data.message}`);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
async getScheduleByZone(zoneId) {
|
|
72
|
+
try {
|
|
73
|
+
const response = await axios_1.default.get(`${this.baseUrl}/devices/schedules?zoneId=${zoneId}`);
|
|
74
|
+
return response.data;
|
|
75
|
+
}
|
|
76
|
+
catch (error) {
|
|
77
|
+
console.log(error);
|
|
78
|
+
throw new Error(`Failed to get schedule: ${error.response.data.message}`);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
async setSchedule(scheduleId, schedule) {
|
|
82
|
+
try {
|
|
83
|
+
const response = await axios_1.default.put(`${this.baseUrl}/devices/schedules/${scheduleId}`, schedule);
|
|
84
|
+
return response.data;
|
|
85
|
+
}
|
|
86
|
+
catch (error) {
|
|
87
|
+
console.log(error);
|
|
88
|
+
throw new Error(`Failed to update schedule: ${error.response.data.message}`);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
__setFunctionName(_classThis, "ScheduleRepository");
|
|
93
|
+
(() => {
|
|
94
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
|
|
95
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
96
|
+
ScheduleRepository = _classThis = _classDescriptor.value;
|
|
97
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
98
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
99
|
+
})();
|
|
100
|
+
return ScheduleRepository = _classThis;
|
|
101
|
+
})();
|
|
102
|
+
exports.ScheduleRepository = ScheduleRepository;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IHubCreateParams } from "../interfaces";
|
|
2
|
+
export declare class DeviceHubService {
|
|
3
|
+
private readonly baseUrl;
|
|
4
|
+
constructor();
|
|
5
|
+
addHub(body: IHubCreateParams): Promise<any>;
|
|
6
|
+
getHubs(hubIds: string[]): Promise<any>;
|
|
7
|
+
getHub(hubId: string): Promise<any>;
|
|
8
|
+
updateHub(hubId: string, body: any): Promise<any>;
|
|
9
|
+
deleteHub(hubId: string): Promise<any>;
|
|
10
|
+
deleteAllHubs(hubIds: string[]): Promise<any>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.DeviceHubService = void 0;
|
|
7
|
+
const axios_1 = __importDefault(require("axios"));
|
|
8
|
+
const config_1 = require("../../../config/config");
|
|
9
|
+
class DeviceHubService {
|
|
10
|
+
constructor() {
|
|
11
|
+
const { DEVICE_SERVICE } = (0, config_1.getConfig)();
|
|
12
|
+
if (!DEVICE_SERVICE) {
|
|
13
|
+
throw new Error("DEVICE_SERVICE is not configured. Call initialize() first with DEVICE_SERVICE.");
|
|
14
|
+
}
|
|
15
|
+
this.baseUrl = DEVICE_SERVICE;
|
|
16
|
+
}
|
|
17
|
+
async addHub(body) {
|
|
18
|
+
return await axios_1.default.post(`${this.baseUrl}/devices/hubs`, body);
|
|
19
|
+
}
|
|
20
|
+
//get hubs takes an array of hub ids as query params
|
|
21
|
+
async getHubs(hubIds) {
|
|
22
|
+
const query = hubIds && hubIds.length ? `?ids=${hubIds.join(",")}` : "";
|
|
23
|
+
return await axios_1.default.get(`${this.baseUrl}/devices/hubs${query}`);
|
|
24
|
+
}
|
|
25
|
+
//get hub takes a hub id in params
|
|
26
|
+
async getHub(hubId) {
|
|
27
|
+
return await axios_1.default.get(`${this.baseUrl}/devices/hubs/${hubId}`);
|
|
28
|
+
}
|
|
29
|
+
async updateHub(hubId, body) {
|
|
30
|
+
return await axios_1.default.put(`${this.baseUrl}/devices/hubs/${hubId}`, body);
|
|
31
|
+
}
|
|
32
|
+
async deleteHub(hubId) {
|
|
33
|
+
return await axios_1.default.delete(`${this.baseUrl}/devices/hubs/${hubId}`);
|
|
34
|
+
}
|
|
35
|
+
async deleteAllHubs(hubIds) {
|
|
36
|
+
const query = hubIds.length ? `?ids=${hubIds.join(",")}` : "";
|
|
37
|
+
return await axios_1.default.delete(`${this.baseUrl}/devices/hubs${query}`);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
exports.DeviceHubService = DeviceHubService;
|
|
@@ -4,4 +4,5 @@ export declare class LocalPropertyService {
|
|
|
4
4
|
getPropertyPreferences(propertyId: string): Promise<import("../interfaces/IProperty").IPropertySettings | null>;
|
|
5
5
|
getProperty(propertyId: string): Promise<import("../interfaces/IProperty").IProperty | null>;
|
|
6
6
|
getPropertyTimeZone(propertyId: string): Promise<string>;
|
|
7
|
+
getAllProperties(): Promise<any[]>;
|
|
7
8
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ISchedule } from "../interfaces/ISchedule";
|
|
2
|
+
export declare class LocalScheduleService {
|
|
3
|
+
private readonly scheduleRepository;
|
|
4
|
+
constructor();
|
|
5
|
+
getSchedule(scheduleId: string): Promise<any>;
|
|
6
|
+
setSchedule(scheduleId: string, schedule: ISchedule): Promise<any>;
|
|
7
|
+
getScheduleByZone(zoneId: string): Promise<any>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.LocalScheduleService = void 0;
|
|
7
|
+
const typedi_1 = __importDefault(require("typedi"));
|
|
8
|
+
const Schedule_repository_1 = require("../repository/Schedule.repository");
|
|
9
|
+
class LocalScheduleService {
|
|
10
|
+
constructor() {
|
|
11
|
+
this.scheduleRepository = typedi_1.default.get(Schedule_repository_1.ScheduleRepository);
|
|
12
|
+
}
|
|
13
|
+
async getSchedule(scheduleId) {
|
|
14
|
+
return await this.scheduleRepository.getSchedule(scheduleId);
|
|
15
|
+
}
|
|
16
|
+
async setSchedule(scheduleId, schedule) {
|
|
17
|
+
return await this.scheduleRepository.setSchedule(scheduleId, schedule);
|
|
18
|
+
}
|
|
19
|
+
async getScheduleByZone(zoneId) {
|
|
20
|
+
return await this.scheduleRepository.getScheduleByZone(zoneId);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.LocalScheduleService = LocalScheduleService;
|
|
@@ -2,3 +2,4 @@ export { LocalDeviceService } from "./Device.service";
|
|
|
2
2
|
export { LocalHubService } from "./Hub.service";
|
|
3
3
|
export { LocalConnectionService } from "./Connection.service";
|
|
4
4
|
export { LocalPropertyService } from "./Property.service";
|
|
5
|
+
export { LocalScheduleService } from "./Schedule.service";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LocalPropertyService = exports.LocalConnectionService = exports.LocalHubService = exports.LocalDeviceService = void 0;
|
|
3
|
+
exports.LocalScheduleService = exports.LocalPropertyService = exports.LocalConnectionService = exports.LocalHubService = exports.LocalDeviceService = void 0;
|
|
4
4
|
var Device_service_1 = require("./Device.service");
|
|
5
5
|
Object.defineProperty(exports, "LocalDeviceService", { enumerable: true, get: function () { return Device_service_1.LocalDeviceService; } });
|
|
6
6
|
var Hub_service_1 = require("./Hub.service");
|
|
@@ -9,3 +9,5 @@ var Connection_service_1 = require("./Connection.service");
|
|
|
9
9
|
Object.defineProperty(exports, "LocalConnectionService", { enumerable: true, get: function () { return Connection_service_1.LocalConnectionService; } });
|
|
10
10
|
var Property_service_1 = require("./Property.service");
|
|
11
11
|
Object.defineProperty(exports, "LocalPropertyService", { enumerable: true, get: function () { return Property_service_1.LocalPropertyService; } });
|
|
12
|
+
var Schedule_service_1 = require("./Schedule.service");
|
|
13
|
+
Object.defineProperty(exports, "LocalScheduleService", { enumerable: true, get: function () { return Schedule_service_1.LocalScheduleService; } });
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { CloudDevice, DeviceFactory, CloudConnection, CloudDeviceService, } from "./device/cloud/entities";
|
|
2
|
-
export { LocalDeviceService, LocalHubService, LocalConnectionService, LocalPropertyService, } from "./device/local/services";
|
|
2
|
+
export { LocalDeviceService, LocalHubService, LocalConnectionService, LocalPropertyService, LocalScheduleService, } from "./device/local/services";
|
|
3
3
|
export * from "./device/cloud/interfaces";
|
|
4
4
|
export * from "./device/cloud/types";
|
|
5
5
|
export * from "./device/local/interfaces";
|
package/dist/index.js
CHANGED
|
@@ -15,7 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
16
16
|
};
|
|
17
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
exports.getConfig = exports.initialize = exports.LocalPropertyService = exports.LocalConnectionService = exports.LocalHubService = exports.LocalDeviceService = exports.CloudDeviceService = exports.CloudConnection = exports.DeviceFactory = exports.CloudDevice = void 0;
|
|
18
|
+
exports.getConfig = exports.initialize = exports.LocalScheduleService = exports.LocalPropertyService = exports.LocalConnectionService = exports.LocalHubService = exports.LocalDeviceService = exports.CloudDeviceService = exports.CloudConnection = exports.DeviceFactory = exports.CloudDevice = void 0;
|
|
19
19
|
// Cloud exports
|
|
20
20
|
var entities_1 = require("./device/cloud/entities");
|
|
21
21
|
Object.defineProperty(exports, "CloudDevice", { enumerable: true, get: function () { return entities_1.CloudDevice; } });
|
|
@@ -27,6 +27,7 @@ Object.defineProperty(exports, "LocalDeviceService", { enumerable: true, get: fu
|
|
|
27
27
|
Object.defineProperty(exports, "LocalHubService", { enumerable: true, get: function () { return services_1.LocalHubService; } });
|
|
28
28
|
Object.defineProperty(exports, "LocalConnectionService", { enumerable: true, get: function () { return services_1.LocalConnectionService; } });
|
|
29
29
|
Object.defineProperty(exports, "LocalPropertyService", { enumerable: true, get: function () { return services_1.LocalPropertyService; } });
|
|
30
|
+
Object.defineProperty(exports, "LocalScheduleService", { enumerable: true, get: function () { return services_1.LocalScheduleService; } });
|
|
30
31
|
__exportStar(require("./device/cloud/interfaces"), exports);
|
|
31
32
|
__exportStar(require("./device/cloud/types"), exports);
|
|
32
33
|
// Local exports
|
package/package.json
CHANGED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export interface ISchedule {
|
|
2
|
+
id?: string;
|
|
3
|
+
name: string;
|
|
4
|
+
deviceId: string;
|
|
5
|
+
scheduleId: string | null; // generated from cloud api, optional
|
|
6
|
+
state: {
|
|
7
|
+
targetTemperature?: number;
|
|
8
|
+
temperatureUnit?: "C" | "F";
|
|
9
|
+
mode?: "cool" | "heat" | "fan" | "dry" | "auto";
|
|
10
|
+
swing?:
|
|
11
|
+
| "stopped"
|
|
12
|
+
| "rangeFull"
|
|
13
|
+
| "fixedTop"
|
|
14
|
+
| "fixedMiddleTop"
|
|
15
|
+
| "fixedMiddle"
|
|
16
|
+
| "fixedMiddleBottom"
|
|
17
|
+
| "fixedBottom";
|
|
18
|
+
fanLevel?: "auto" | "low" | "medium" | "high";
|
|
19
|
+
};
|
|
20
|
+
startTime: string; // ISO date string
|
|
21
|
+
endTime: string; // ISO date string
|
|
22
|
+
recurringDays: (
|
|
23
|
+
| "Monday"
|
|
24
|
+
| "Tuesday"
|
|
25
|
+
| "Wednesday"
|
|
26
|
+
| "Thursday"
|
|
27
|
+
| "Friday"
|
|
28
|
+
| "Saturday"
|
|
29
|
+
| "Sunday"
|
|
30
|
+
)[];
|
|
31
|
+
createTime?: string; // ISO date string, optional
|
|
32
|
+
nextTime?: string; // ISO date string, optional
|
|
33
|
+
nextTimeSecondsFromNow?: number;
|
|
34
|
+
targetTimeLocal: string; // ISO date string
|
|
35
|
+
timezone: string;
|
|
36
|
+
scheduleInheritedFrom: "zone" | "device";
|
|
37
|
+
zoneId: string;
|
|
38
|
+
userId: string;
|
|
39
|
+
status?: "SET" | "UNSET";
|
|
40
|
+
}
|
|
@@ -29,7 +29,7 @@ export class PropertyRepository {
|
|
|
29
29
|
|
|
30
30
|
async getProperty(propertyId: string): Promise<IProperty | null> {
|
|
31
31
|
const property = await this.postgres.query(
|
|
32
|
-
"SELECT * FROM
|
|
32
|
+
"SELECT * FROM dt_properties WHERE id = $1",
|
|
33
33
|
[propertyId]
|
|
34
34
|
);
|
|
35
35
|
if (property.rows.length > 0) {
|
|
@@ -37,4 +37,17 @@ export class PropertyRepository {
|
|
|
37
37
|
}
|
|
38
38
|
return null;
|
|
39
39
|
}
|
|
40
|
+
|
|
41
|
+
async getAllProperties() {
|
|
42
|
+
try {
|
|
43
|
+
//Retrieve all the properties ids from the database
|
|
44
|
+
const properties = await this.postgres.query(
|
|
45
|
+
"SELECT id FROM dt_properties"
|
|
46
|
+
);
|
|
47
|
+
return properties.rows.map((property) => property.id);
|
|
48
|
+
} catch (error) {
|
|
49
|
+
console.log(error);
|
|
50
|
+
throw new Error("Failed to get all properties");
|
|
51
|
+
}
|
|
52
|
+
}
|
|
40
53
|
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { Service } from "typedi";
|
|
2
|
+
import { getConfig } from "../../../config/config";
|
|
3
|
+
import axios from "axios";
|
|
4
|
+
import { ISchedule } from "../interfaces/ISchedule";
|
|
5
|
+
|
|
6
|
+
@Service()
|
|
7
|
+
export class ScheduleRepository {
|
|
8
|
+
private readonly baseUrl: string;
|
|
9
|
+
constructor() {
|
|
10
|
+
const { DEVICE_SERVICE } = getConfig();
|
|
11
|
+
if (!DEVICE_SERVICE) {
|
|
12
|
+
throw new Error(
|
|
13
|
+
"DEVICE_SERVICE is not configured. Call initialize() first with DEVICE_SERVICE."
|
|
14
|
+
);
|
|
15
|
+
}
|
|
16
|
+
this.baseUrl = DEVICE_SERVICE;
|
|
17
|
+
}
|
|
18
|
+
async getSchedule(scheduleId: string) {
|
|
19
|
+
try {
|
|
20
|
+
const response = await axios.get(
|
|
21
|
+
`${this.baseUrl}/devices/schedule?id=${scheduleId}`
|
|
22
|
+
);
|
|
23
|
+
return response.data;
|
|
24
|
+
} catch (error: any) {
|
|
25
|
+
console.log(error);
|
|
26
|
+
throw new Error(`Failed to get schedule: ${error.response.data.message}`);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
async getScheduleByZone(zoneId: string) {
|
|
31
|
+
try {
|
|
32
|
+
const response = await axios.get(
|
|
33
|
+
`${this.baseUrl}/devices/schedules?zoneId=${zoneId}`
|
|
34
|
+
);
|
|
35
|
+
return response.data;
|
|
36
|
+
} catch (error: any) {
|
|
37
|
+
console.log(error);
|
|
38
|
+
throw new Error(`Failed to get schedule: ${error.response.data.message}`);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
async setSchedule(scheduleId: string, schedule: ISchedule) {
|
|
43
|
+
try {
|
|
44
|
+
const response = await axios.put(
|
|
45
|
+
`${this.baseUrl}/devices/schedules/${scheduleId}`,
|
|
46
|
+
schedule
|
|
47
|
+
);
|
|
48
|
+
return response.data;
|
|
49
|
+
} catch (error: any) {
|
|
50
|
+
console.log(error);
|
|
51
|
+
throw new Error(
|
|
52
|
+
`Failed to update schedule: ${error.response.data.message}`
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import Container from "typedi";
|
|
2
|
+
import { ScheduleRepository } from "../repository/Schedule.repository";
|
|
3
|
+
import { ISchedule } from "../interfaces/ISchedule";
|
|
4
|
+
|
|
5
|
+
export class LocalScheduleService {
|
|
6
|
+
private readonly scheduleRepository: ScheduleRepository;
|
|
7
|
+
constructor() {
|
|
8
|
+
this.scheduleRepository = Container.get(ScheduleRepository);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
async getSchedule(scheduleId: string) {
|
|
12
|
+
return await this.scheduleRepository.getSchedule(scheduleId);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
async setSchedule(scheduleId: string, schedule: ISchedule) {
|
|
16
|
+
return await this.scheduleRepository.setSchedule(scheduleId, schedule);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
async getScheduleByZone(zoneId: string) {
|
|
20
|
+
return await this.scheduleRepository.getScheduleByZone(zoneId);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -2,3 +2,4 @@ export { LocalDeviceService } from "./Device.service";
|
|
|
2
2
|
export { LocalHubService } from "./Hub.service";
|
|
3
3
|
export { LocalConnectionService } from "./Connection.service";
|
|
4
4
|
export { LocalPropertyService } from "./Property.service";
|
|
5
|
+
export { LocalScheduleService } from "./Schedule.service";
|