dt-common-device 3.0.7 → 3.0.9
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/audit/AuditProperties.d.ts +16 -0
- package/dist/audit/AuditUtils.d.ts +2 -0
- package/dist/audit/AuditUtils.js +36 -0
- package/dist/config/config.d.ts +2 -1
- package/dist/config/config.js +5 -0
- package/dist/device/local/events/EventHandler.js +6 -6
- package/dist/device/local/events/Events.d.ts +33 -12
- package/dist/device/local/events/Events.js +33 -12
- package/dist/device/local/repository/Schedule.repository.d.ts +2 -0
- package/dist/device/local/repository/Schedule.repository.js +14 -3
- package/dist/device/local/services/Schedule.service.d.ts +1 -0
- package/dist/device/local/services/Schedule.service.js +3 -0
- package/dist/events/InternalEventSubscription.js +0 -9
- package/dist/events/interfaces/IInternalEvent.d.ts +0 -13
- package/package.json +1 -1
- package/src/audit/AuditProperties.ts +16 -0
- package/src/audit/AuditUtils.ts +38 -0
- package/src/config/config.ts +6 -1
- package/src/device/local/repository/Schedule.repository.ts +20 -10
- package/src/device/local/services/Schedule.service.ts +4 -0
- package/src/events/InternalEventSubscription.ts +0 -25
- package/src/events/interfaces/IInternalEvent.ts +0 -14
- package/dist/device/cloud/interface.d.ts +0 -101
- package/dist/device/cloud/interface.js +0 -3
- package/dist/device/cloud/interfaces/IDeviceConnectionService.d.ts +0 -7
- package/dist/device/cloud/interfaces/IDeviceConnectionService.js +0 -3
- package/dist/device/cloud/interfaces/IDevicesService.d.ts +0 -9
- package/dist/device/cloud/services/Device.service.d.ts +0 -39
- package/dist/device/cloud/services/Device.service.js +0 -9
- package/dist/device/cloud/services/DeviceCloudService.d.ts +0 -42
- package/dist/device/cloud/services/DeviceCloudService.js +0 -59
- package/dist/device/cloud/services/DeviceHub.service.d.ts +0 -3
- package/dist/device/cloud/services/DeviceHub.service.js +0 -6
- package/dist/device/cloud/services/Hub.service.d.ts +0 -25
- package/dist/device/cloud/services/Hub.service.js +0 -9
- package/dist/device/cloud/services/SmartThingsDeviceService.d.ts +0 -38
- package/dist/device/cloud/services/SmartThingsDeviceService.js +0 -52
- package/dist/device/index.d.ts +0 -4
- package/dist/device/index.js +0 -20
- package/dist/device/local/interface.d.ts +0 -0
- package/dist/device/local/interface.js +0 -1
- package/dist/device/local/services/DeviceHub.service.d.ts +0 -11
- package/dist/device/local/services/DeviceHub.service.js +0 -40
- /package/dist/{device/cloud/interfaces/IDevicesService.js → audit/AuditProperties.js} +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface AuditProperties {
|
|
2
|
+
resource: string;
|
|
3
|
+
propertyId: string;
|
|
4
|
+
propertyName?: string;
|
|
5
|
+
userId?: string;
|
|
6
|
+
userName?: string;
|
|
7
|
+
deviceId: string;
|
|
8
|
+
deviceName: string;
|
|
9
|
+
zoneId?: string;
|
|
10
|
+
zoneName?: string;
|
|
11
|
+
accessGroupId?: string;
|
|
12
|
+
accessGroupName?: string;
|
|
13
|
+
scheduleId?: string;
|
|
14
|
+
scheduleName?: string;
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.buildAuditProperties = buildAuditProperties;
|
|
4
|
+
const AUDIT_FIELDS = [
|
|
5
|
+
"resource",
|
|
6
|
+
"propertyId",
|
|
7
|
+
"propertyName",
|
|
8
|
+
"userId",
|
|
9
|
+
"userName",
|
|
10
|
+
"deviceId",
|
|
11
|
+
"deviceName",
|
|
12
|
+
"zoneId",
|
|
13
|
+
"zoneName",
|
|
14
|
+
"accessGroupId",
|
|
15
|
+
"accessGroupName",
|
|
16
|
+
"scheduleId",
|
|
17
|
+
"scheduleName",
|
|
18
|
+
];
|
|
19
|
+
function buildAuditProperties(input) {
|
|
20
|
+
// Normalize keys to camelCase for matching
|
|
21
|
+
const normalized = { ...input };
|
|
22
|
+
// Build the audit object with all standard fields
|
|
23
|
+
const audit = {};
|
|
24
|
+
for (const field of AUDIT_FIELDS) {
|
|
25
|
+
// Try to find a matching key in input (case-insensitive)
|
|
26
|
+
const foundKey = Object.keys(normalized).find((k) => k.toLowerCase() === field.toLowerCase());
|
|
27
|
+
audit[field] = foundKey ? normalized[foundKey] : undefined;
|
|
28
|
+
}
|
|
29
|
+
// Merge in all other event-specific data (but don't overwrite audit fields)
|
|
30
|
+
for (const key of Object.keys(normalized)) {
|
|
31
|
+
if (!audit.hasOwnProperty(key)) {
|
|
32
|
+
audit[key] = normalized[key];
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return audit;
|
|
36
|
+
}
|
package/dist/config/config.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { InternalEventSubscription } from "../events";
|
|
2
|
-
import { IConfig } from "./config.types";
|
|
2
|
+
import { IConfig, ILogger } from "./config.types";
|
|
3
3
|
export declare function initialize(cfg: IConfig): Promise<void>;
|
|
4
4
|
export declare function getConfig(): IConfig;
|
|
5
|
+
export declare function getLogger(): ILogger;
|
|
5
6
|
export declare function getEventSubscription(): InternalEventSubscription | null;
|
|
6
7
|
export declare function checkRequiredEnv(): void;
|
|
7
8
|
export declare function ensureAuditInitialized(): void;
|
package/dist/config/config.js
CHANGED
|
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.initialize = initialize;
|
|
7
7
|
exports.getConfig = getConfig;
|
|
8
|
+
exports.getLogger = getLogger;
|
|
8
9
|
exports.getEventSubscription = getEventSubscription;
|
|
9
10
|
exports.checkRequiredEnv = checkRequiredEnv;
|
|
10
11
|
exports.ensureAuditInitialized = ensureAuditInitialized;
|
|
@@ -82,6 +83,10 @@ function getConfig() {
|
|
|
82
83
|
}
|
|
83
84
|
return config;
|
|
84
85
|
}
|
|
86
|
+
// Direct logger export for easier usage
|
|
87
|
+
function getLogger() {
|
|
88
|
+
return getConfig().LOGGER;
|
|
89
|
+
}
|
|
85
90
|
function getEventSubscription() {
|
|
86
91
|
return eventSubscription;
|
|
87
92
|
}
|
|
@@ -9,9 +9,9 @@ class EventHandler {
|
|
|
9
9
|
this.source = "dt-common-device";
|
|
10
10
|
}
|
|
11
11
|
async onDeviceCreate(body) {
|
|
12
|
-
await dt_pub_sub_1.eventDispatcher.publishEvent(Events_1.DT_EVENT_TYPES.DEVICE.
|
|
12
|
+
await dt_pub_sub_1.eventDispatcher.publishEvent(Events_1.DT_EVENT_TYPES.DEVICE.CREATE.SUCCESS, body, this.source);
|
|
13
13
|
const payload = {
|
|
14
|
-
eventType: Events_1.DT_EVENT_TYPES.DEVICE.
|
|
14
|
+
eventType: Events_1.DT_EVENT_TYPES.DEVICE.CREATE.SUCCESS,
|
|
15
15
|
properties: {
|
|
16
16
|
...body,
|
|
17
17
|
},
|
|
@@ -19,9 +19,9 @@ class EventHandler {
|
|
|
19
19
|
await (0, dt_audit_library_1.publishAudit)(payload);
|
|
20
20
|
}
|
|
21
21
|
async onDeviceUpdate(deviceId, body) {
|
|
22
|
-
await dt_pub_sub_1.eventDispatcher.publishEvent(Events_1.DT_EVENT_TYPES.DEVICE.
|
|
22
|
+
await dt_pub_sub_1.eventDispatcher.publishEvent(Events_1.DT_EVENT_TYPES.DEVICE.UPDATE.SUCCESS, { deviceId, body }, this.source);
|
|
23
23
|
const payload = {
|
|
24
|
-
eventType: Events_1.DT_EVENT_TYPES.DEVICE.
|
|
24
|
+
eventType: Events_1.DT_EVENT_TYPES.DEVICE.UPDATE.SUCCESS,
|
|
25
25
|
properties: {
|
|
26
26
|
...body,
|
|
27
27
|
},
|
|
@@ -29,9 +29,9 @@ class EventHandler {
|
|
|
29
29
|
await (0, dt_audit_library_1.publishAudit)(payload);
|
|
30
30
|
}
|
|
31
31
|
async onDeviceDelete(deviceId) {
|
|
32
|
-
await dt_pub_sub_1.eventDispatcher.publishEvent(Events_1.DT_EVENT_TYPES.DEVICE.
|
|
32
|
+
await dt_pub_sub_1.eventDispatcher.publishEvent(Events_1.DT_EVENT_TYPES.DEVICE.DELETE.SUCCESS, { deviceId }, this.source);
|
|
33
33
|
const payload = {
|
|
34
|
-
eventType: Events_1.DT_EVENT_TYPES.DEVICE.
|
|
34
|
+
eventType: Events_1.DT_EVENT_TYPES.DEVICE.DELETE.SUCCESS,
|
|
35
35
|
properties: {
|
|
36
36
|
deviceId,
|
|
37
37
|
},
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
export declare const DT_EVENT_TYPES: {
|
|
2
2
|
DEVICE: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
CREATE: {
|
|
4
|
+
SUCCESS: string;
|
|
5
|
+
FAILED: string;
|
|
6
|
+
};
|
|
7
|
+
UPDATE: {
|
|
8
|
+
SUCCESS: string;
|
|
9
|
+
FAILED: string;
|
|
10
|
+
};
|
|
11
|
+
DELETE: {
|
|
12
|
+
SUCCESS: string;
|
|
13
|
+
FAILED: string;
|
|
7
14
|
};
|
|
8
15
|
STATE: {
|
|
9
16
|
SET: string;
|
|
@@ -34,17 +41,31 @@ export declare const DT_EVENT_TYPES: {
|
|
|
34
41
|
};
|
|
35
42
|
};
|
|
36
43
|
CONNECTION: {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
44
|
+
CREATE: {
|
|
45
|
+
SUCCESS: string;
|
|
46
|
+
FAILED: string;
|
|
47
|
+
};
|
|
48
|
+
UPDATE: {
|
|
49
|
+
SUCCESS: string;
|
|
50
|
+
FAILED: string;
|
|
51
|
+
};
|
|
52
|
+
DELETE: {
|
|
53
|
+
SUCCESS: string;
|
|
54
|
+
FAILED: string;
|
|
41
55
|
};
|
|
42
56
|
};
|
|
43
57
|
PROPERTY: {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
58
|
+
CREATE: {
|
|
59
|
+
SUCCESS: string;
|
|
60
|
+
FAILED: string;
|
|
61
|
+
};
|
|
62
|
+
UPDATE: {
|
|
63
|
+
SUCCESS: string;
|
|
64
|
+
FAILED: string;
|
|
65
|
+
};
|
|
66
|
+
DELETE: {
|
|
67
|
+
SUCCESS: string;
|
|
68
|
+
FAILED: string;
|
|
48
69
|
};
|
|
49
70
|
PREFERENCES: {
|
|
50
71
|
UPDATED: string;
|
|
@@ -3,10 +3,17 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.DT_EVENT_TYPES = void 0;
|
|
4
4
|
exports.DT_EVENT_TYPES = {
|
|
5
5
|
DEVICE: {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
CREATE: {
|
|
7
|
+
SUCCESS: "device.create.success",
|
|
8
|
+
FAILED: "device.create.failed",
|
|
9
|
+
},
|
|
10
|
+
UPDATE: {
|
|
11
|
+
SUCCESS: "device.update.success",
|
|
12
|
+
FAILED: "device.update.failed",
|
|
13
|
+
},
|
|
14
|
+
DELETE: {
|
|
15
|
+
SUCCESS: "device.delete.success",
|
|
16
|
+
FAILED: "device.delete.failed",
|
|
10
17
|
},
|
|
11
18
|
STATE: {
|
|
12
19
|
SET: "device.state.set",
|
|
@@ -37,17 +44,31 @@ exports.DT_EVENT_TYPES = {
|
|
|
37
44
|
},
|
|
38
45
|
},
|
|
39
46
|
CONNECTION: {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
47
|
+
CREATE: {
|
|
48
|
+
SUCCESS: "connection.create.success",
|
|
49
|
+
FAILED: "connection.create.failed",
|
|
50
|
+
},
|
|
51
|
+
UPDATE: {
|
|
52
|
+
SUCCESS: "connection.update.success",
|
|
53
|
+
FAILED: "connection.update.failed",
|
|
54
|
+
},
|
|
55
|
+
DELETE: {
|
|
56
|
+
SUCCESS: "connection.delete.success",
|
|
57
|
+
FAILED: "connection.delete.failed",
|
|
44
58
|
},
|
|
45
59
|
},
|
|
46
60
|
PROPERTY: {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
61
|
+
CREATE: {
|
|
62
|
+
SUCCESS: "property.create.success",
|
|
63
|
+
FAILED: "property.create.failed",
|
|
64
|
+
},
|
|
65
|
+
UPDATE: {
|
|
66
|
+
SUCCESS: "property.update.success",
|
|
67
|
+
FAILED: "property.update.failed",
|
|
68
|
+
},
|
|
69
|
+
DELETE: {
|
|
70
|
+
SUCCESS: "property.delete.success",
|
|
71
|
+
FAILED: "property.delete.failed",
|
|
51
72
|
},
|
|
52
73
|
PREFERENCES: {
|
|
53
74
|
UPDATED: "property.preferences.updated",
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { ISchedule } from "../interfaces/ISchedule";
|
|
2
2
|
export declare class ScheduleRepository {
|
|
3
3
|
private readonly axiosInstance;
|
|
4
|
+
private readonly logger;
|
|
4
5
|
constructor();
|
|
5
6
|
getSchedule(scheduleId: string): Promise<any>;
|
|
6
7
|
getScheduleByZone(zoneId: string): Promise<any>;
|
|
7
8
|
setSchedule(scheduleId: string, schedule: ISchedule): Promise<any>;
|
|
9
|
+
deleteSchedule(scheduleId: string): Promise<any>;
|
|
8
10
|
}
|
|
@@ -49,6 +49,7 @@ let ScheduleRepository = (() => {
|
|
|
49
49
|
let _classThis;
|
|
50
50
|
var ScheduleRepository = _classThis = class {
|
|
51
51
|
constructor() {
|
|
52
|
+
this.logger = (0, config_1.getLogger)();
|
|
52
53
|
this.axiosInstance = (0, http_utils_1.getDeviceServiceAxiosInstance)();
|
|
53
54
|
}
|
|
54
55
|
async getSchedule(scheduleId) {
|
|
@@ -57,7 +58,7 @@ let ScheduleRepository = (() => {
|
|
|
57
58
|
return response.data;
|
|
58
59
|
}
|
|
59
60
|
catch (error) {
|
|
60
|
-
|
|
61
|
+
this.logger.error(`Failed to get schedule ${scheduleId}:`, error);
|
|
61
62
|
const errorMessage = error.response?.data?.message || error.message || "Unknown error";
|
|
62
63
|
throw new Error(`Failed to get schedule: ${errorMessage}`);
|
|
63
64
|
}
|
|
@@ -68,7 +69,7 @@ let ScheduleRepository = (() => {
|
|
|
68
69
|
return response.data;
|
|
69
70
|
}
|
|
70
71
|
catch (error) {
|
|
71
|
-
|
|
72
|
+
this.logger.error(`Failed to get schedule by zone ${zoneId}:`, error);
|
|
72
73
|
const errorMessage = error.response?.data?.message || error.message || "Unknown error";
|
|
73
74
|
throw new Error(`Failed to get schedule: ${errorMessage}`);
|
|
74
75
|
}
|
|
@@ -79,11 +80,21 @@ let ScheduleRepository = (() => {
|
|
|
79
80
|
return response.data;
|
|
80
81
|
}
|
|
81
82
|
catch (error) {
|
|
82
|
-
|
|
83
|
+
this.logger.error(`Failed to update schedule ${scheduleId}:`, error);
|
|
83
84
|
const errorMessage = error.response?.data?.message || error.message || "Unknown error";
|
|
84
85
|
throw new Error(`Failed to update schedule: ${errorMessage}`);
|
|
85
86
|
}
|
|
86
87
|
}
|
|
88
|
+
async deleteSchedule(scheduleId) {
|
|
89
|
+
try {
|
|
90
|
+
const response = await this.axiosInstance.delete(`/devices/schedules/${scheduleId}`);
|
|
91
|
+
return response.data;
|
|
92
|
+
}
|
|
93
|
+
catch (error) {
|
|
94
|
+
this.logger.error(`Failed to delete schedule from DB ${scheduleId}:`, error);
|
|
95
|
+
throw new Error(`Failed to delete schedule from DB: ${error.message}`);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
87
98
|
};
|
|
88
99
|
__setFunctionName(_classThis, "ScheduleRepository");
|
|
89
100
|
(() => {
|
|
@@ -19,5 +19,8 @@ class LocalScheduleService {
|
|
|
19
19
|
async getScheduleByZone(zoneId) {
|
|
20
20
|
return await this.scheduleRepository.getScheduleByZone(zoneId);
|
|
21
21
|
}
|
|
22
|
+
async deleteSchedule(scheduleId) {
|
|
23
|
+
return await this.scheduleRepository.deleteSchedule(scheduleId);
|
|
24
|
+
}
|
|
22
25
|
}
|
|
23
26
|
exports.LocalScheduleService = LocalScheduleService;
|
|
@@ -42,15 +42,6 @@ class InternalEventSubscription {
|
|
|
42
42
|
case InternalEventType.SCHEDULE_DELETE:
|
|
43
43
|
await this.safeCallHandler(() => this.internalEventHandler.onScheduleDelete(eventData));
|
|
44
44
|
break;
|
|
45
|
-
case InternalEventType.RESERVATION_CREATE:
|
|
46
|
-
await this.safeCallHandler(() => this.internalEventHandler.onReservationCreate(eventData));
|
|
47
|
-
break;
|
|
48
|
-
case InternalEventType.RESERVATION_UPDATE:
|
|
49
|
-
await this.safeCallHandler(() => this.internalEventHandler.onReservationUpdate(eventData));
|
|
50
|
-
break;
|
|
51
|
-
case InternalEventType.RESERVATION_CANCEL:
|
|
52
|
-
await this.safeCallHandler(() => this.internalEventHandler.onReservationCancel(eventData));
|
|
53
|
-
break;
|
|
54
45
|
case InternalEventType.SERVICE_DOWN:
|
|
55
46
|
await this.safeCallHandler(() => this.internalEventHandler.onServiceDown(eventData));
|
|
56
47
|
break;
|
|
@@ -13,16 +13,6 @@ export interface ScheduleEventData {
|
|
|
13
13
|
action: string;
|
|
14
14
|
[key: string]: any;
|
|
15
15
|
}
|
|
16
|
-
export interface ReservationEventData {
|
|
17
|
-
reservationId: string;
|
|
18
|
-
propertyId: string;
|
|
19
|
-
deviceId?: string;
|
|
20
|
-
userId?: string;
|
|
21
|
-
startTime: string;
|
|
22
|
-
endTime: string;
|
|
23
|
-
status: string;
|
|
24
|
-
[key: string]: any;
|
|
25
|
-
}
|
|
26
16
|
export interface ServiceEventData {
|
|
27
17
|
serviceId: string;
|
|
28
18
|
serviceName: string;
|
|
@@ -36,7 +26,4 @@ export interface IInternalEvent {
|
|
|
36
26
|
onScheduleUpdate(data: ScheduleEventData): Promise<void>;
|
|
37
27
|
onScheduleDelete(data: ScheduleEventData): Promise<void>;
|
|
38
28
|
onServiceDown(data: ServiceEventData): Promise<void>;
|
|
39
|
-
onReservationCreate(data: ReservationEventData): Promise<void>;
|
|
40
|
-
onReservationUpdate(data: ReservationEventData): Promise<void>;
|
|
41
|
-
onReservationCancel(data: ReservationEventData): Promise<void>;
|
|
42
29
|
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface AuditProperties {
|
|
2
|
+
resource: string;
|
|
3
|
+
propertyId: string;
|
|
4
|
+
propertyName?: string;
|
|
5
|
+
userId?: string;
|
|
6
|
+
userName?: string;
|
|
7
|
+
deviceId: string;
|
|
8
|
+
deviceName: string;
|
|
9
|
+
zoneId?: string;
|
|
10
|
+
zoneName?: string;
|
|
11
|
+
accessGroupId?: string;
|
|
12
|
+
accessGroupName?: string;
|
|
13
|
+
scheduleId?: string;
|
|
14
|
+
scheduleName?: string;
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { AuditProperties } from "./AuditProperties";
|
|
2
|
+
|
|
3
|
+
const AUDIT_FIELDS = [
|
|
4
|
+
"resource",
|
|
5
|
+
"propertyId",
|
|
6
|
+
"propertyName",
|
|
7
|
+
"userId",
|
|
8
|
+
"userName",
|
|
9
|
+
"deviceId",
|
|
10
|
+
"deviceName",
|
|
11
|
+
"zoneId",
|
|
12
|
+
"zoneName",
|
|
13
|
+
"accessGroupId",
|
|
14
|
+
"accessGroupName",
|
|
15
|
+
"scheduleId",
|
|
16
|
+
"scheduleName",
|
|
17
|
+
];
|
|
18
|
+
|
|
19
|
+
export function buildAuditProperties(input: AuditProperties) {
|
|
20
|
+
// Normalize keys to camelCase for matching
|
|
21
|
+
const normalized = { ...input };
|
|
22
|
+
// Build the audit object with all standard fields
|
|
23
|
+
const audit: Record<string, any> = {};
|
|
24
|
+
for (const field of AUDIT_FIELDS) {
|
|
25
|
+
// Try to find a matching key in input (case-insensitive)
|
|
26
|
+
const foundKey = Object.keys(normalized).find(
|
|
27
|
+
(k) => k.toLowerCase() === field.toLowerCase()
|
|
28
|
+
);
|
|
29
|
+
audit[field] = foundKey ? normalized[foundKey] : undefined;
|
|
30
|
+
}
|
|
31
|
+
// Merge in all other event-specific data (but don't overwrite audit fields)
|
|
32
|
+
for (const key of Object.keys(normalized)) {
|
|
33
|
+
if (!audit.hasOwnProperty(key)) {
|
|
34
|
+
audit[key] = normalized[key];
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
return audit;
|
|
38
|
+
}
|
package/src/config/config.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { connectDatabase } from "../db/db";
|
|
|
3
3
|
import dotenv from "dotenv";
|
|
4
4
|
import { InternalEventSubscription } from "../events";
|
|
5
5
|
import { validateServiceUrl } from "../utils/http.utils";
|
|
6
|
-
import { IConfig } from "./config.types";
|
|
6
|
+
import { IConfig, ILogger } from "./config.types";
|
|
7
7
|
|
|
8
8
|
dotenv.config();
|
|
9
9
|
|
|
@@ -86,6 +86,11 @@ export function getConfig(): IConfig {
|
|
|
86
86
|
return config;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
+
// Direct logger export for easier usage
|
|
90
|
+
export function getLogger(): ILogger {
|
|
91
|
+
return getConfig().LOGGER;
|
|
92
|
+
}
|
|
93
|
+
|
|
89
94
|
export function getEventSubscription(): InternalEventSubscription | null {
|
|
90
95
|
return eventSubscription;
|
|
91
96
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { Service } from "typedi";
|
|
2
|
-
import {
|
|
2
|
+
import { getLogger } from "../../../config/config";
|
|
3
3
|
import { ISchedule } from "../interfaces/ISchedule";
|
|
4
4
|
import { getDeviceServiceAxiosInstance } from "../../../utils/http.utils";
|
|
5
5
|
|
|
6
6
|
@Service()
|
|
7
7
|
export class ScheduleRepository {
|
|
8
8
|
private readonly axiosInstance;
|
|
9
|
+
private readonly logger = getLogger();
|
|
9
10
|
|
|
10
11
|
constructor() {
|
|
11
12
|
this.axiosInstance = getDeviceServiceAxiosInstance();
|
|
@@ -18,7 +19,7 @@ export class ScheduleRepository {
|
|
|
18
19
|
);
|
|
19
20
|
return response.data;
|
|
20
21
|
} catch (error: any) {
|
|
21
|
-
|
|
22
|
+
this.logger.error(`Failed to get schedule ${scheduleId}:`, error);
|
|
22
23
|
const errorMessage =
|
|
23
24
|
error.response?.data?.message || error.message || "Unknown error";
|
|
24
25
|
throw new Error(`Failed to get schedule: ${errorMessage}`);
|
|
@@ -32,10 +33,7 @@ export class ScheduleRepository {
|
|
|
32
33
|
);
|
|
33
34
|
return response.data;
|
|
34
35
|
} catch (error: any) {
|
|
35
|
-
|
|
36
|
-
`Failed to get schedule by zone ${zoneId}:`,
|
|
37
|
-
error
|
|
38
|
-
);
|
|
36
|
+
this.logger.error(`Failed to get schedule by zone ${zoneId}:`, error);
|
|
39
37
|
const errorMessage =
|
|
40
38
|
error.response?.data?.message || error.message || "Unknown error";
|
|
41
39
|
throw new Error(`Failed to get schedule: ${errorMessage}`);
|
|
@@ -50,13 +48,25 @@ export class ScheduleRepository {
|
|
|
50
48
|
);
|
|
51
49
|
return response.data;
|
|
52
50
|
} catch (error: any) {
|
|
53
|
-
|
|
54
|
-
`Failed to update schedule ${scheduleId}:`,
|
|
55
|
-
error
|
|
56
|
-
);
|
|
51
|
+
this.logger.error(`Failed to update schedule ${scheduleId}:`, error);
|
|
57
52
|
const errorMessage =
|
|
58
53
|
error.response?.data?.message || error.message || "Unknown error";
|
|
59
54
|
throw new Error(`Failed to update schedule: ${errorMessage}`);
|
|
60
55
|
}
|
|
61
56
|
}
|
|
57
|
+
|
|
58
|
+
async deleteSchedule(scheduleId: string) {
|
|
59
|
+
try {
|
|
60
|
+
const response = await this.axiosInstance.delete(
|
|
61
|
+
`/devices/schedules/${scheduleId}`
|
|
62
|
+
);
|
|
63
|
+
return response.data;
|
|
64
|
+
} catch (error: any) {
|
|
65
|
+
this.logger.error(
|
|
66
|
+
`Failed to delete schedule from DB ${scheduleId}:`,
|
|
67
|
+
error
|
|
68
|
+
);
|
|
69
|
+
throw new Error(`Failed to delete schedule from DB: ${error.message}`);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
62
72
|
}
|
|
@@ -19,4 +19,8 @@ export class LocalScheduleService {
|
|
|
19
19
|
async getScheduleByZone(zoneId: string) {
|
|
20
20
|
return await this.scheduleRepository.getScheduleByZone(zoneId);
|
|
21
21
|
}
|
|
22
|
+
|
|
23
|
+
async deleteSchedule(scheduleId: string) {
|
|
24
|
+
return await this.scheduleRepository.deleteSchedule(scheduleId);
|
|
25
|
+
}
|
|
22
26
|
}
|
|
@@ -4,7 +4,6 @@ import {
|
|
|
4
4
|
IInternalEvent,
|
|
5
5
|
HeartbeatEventData,
|
|
6
6
|
ScheduleEventData,
|
|
7
|
-
ReservationEventData,
|
|
8
7
|
ServiceEventData,
|
|
9
8
|
} from "./interfaces/IInternalEvent";
|
|
10
9
|
import { ILogger } from "../config/config.types";
|
|
@@ -73,30 +72,6 @@ export class InternalEventSubscription {
|
|
|
73
72
|
);
|
|
74
73
|
break;
|
|
75
74
|
|
|
76
|
-
case InternalEventType.RESERVATION_CREATE:
|
|
77
|
-
await this.safeCallHandler(() =>
|
|
78
|
-
this.internalEventHandler.onReservationCreate(
|
|
79
|
-
eventData as ReservationEventData
|
|
80
|
-
)
|
|
81
|
-
);
|
|
82
|
-
break;
|
|
83
|
-
|
|
84
|
-
case InternalEventType.RESERVATION_UPDATE:
|
|
85
|
-
await this.safeCallHandler(() =>
|
|
86
|
-
this.internalEventHandler.onReservationUpdate(
|
|
87
|
-
eventData as ReservationEventData
|
|
88
|
-
)
|
|
89
|
-
);
|
|
90
|
-
break;
|
|
91
|
-
|
|
92
|
-
case InternalEventType.RESERVATION_CANCEL:
|
|
93
|
-
await this.safeCallHandler(() =>
|
|
94
|
-
this.internalEventHandler.onReservationCancel(
|
|
95
|
-
eventData as ReservationEventData
|
|
96
|
-
)
|
|
97
|
-
);
|
|
98
|
-
break;
|
|
99
|
-
|
|
100
75
|
case InternalEventType.SERVICE_DOWN:
|
|
101
76
|
await this.safeCallHandler(() =>
|
|
102
77
|
this.internalEventHandler.onServiceDown(
|
|
@@ -16,17 +16,6 @@ export interface ScheduleEventData {
|
|
|
16
16
|
[key: string]: any;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
export interface ReservationEventData {
|
|
20
|
-
reservationId: string;
|
|
21
|
-
propertyId: string;
|
|
22
|
-
deviceId?: string;
|
|
23
|
-
userId?: string;
|
|
24
|
-
startTime: string;
|
|
25
|
-
endTime: string;
|
|
26
|
-
status: string;
|
|
27
|
-
[key: string]: any;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
19
|
export interface ServiceEventData {
|
|
31
20
|
serviceId: string;
|
|
32
21
|
serviceName: string;
|
|
@@ -41,7 +30,4 @@ export interface IInternalEvent {
|
|
|
41
30
|
onScheduleUpdate(data: ScheduleEventData): Promise<void>;
|
|
42
31
|
onScheduleDelete(data: ScheduleEventData): Promise<void>;
|
|
43
32
|
onServiceDown(data: ServiceEventData): Promise<void>;
|
|
44
|
-
onReservationCreate(data: ReservationEventData): Promise<void>;
|
|
45
|
-
onReservationUpdate(data: ReservationEventData): Promise<void>;
|
|
46
|
-
onReservationCancel(data: ReservationEventData): Promise<void>;
|
|
47
33
|
}
|
|
@@ -1,101 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,59 +0,0 @@
|
|
|
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;
|
|
@@ -1,25 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
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;
|
package/dist/device/index.d.ts
DELETED
package/dist/device/index.js
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1,11 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
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;
|
|
File without changes
|