node-red-contrib-homekit-bridged 2.0.0-dev.1 → 2.0.0-dev.10
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/build/lib/HAPHostNode.js +185 -146
- package/build/lib/HAPServiceNode.js +200 -177
- package/build/lib/HAPServiceNode2.js +208 -177
- package/build/lib/NRCHKBError.js +23 -2
- package/build/lib/PairingQRCode.js +62 -0
- package/build/lib/Storage.js +152 -90
- package/build/lib/api.js +654 -290
- package/build/lib/camera/CameraControl.js +125 -0
- package/build/lib/camera/CameraDelegate.js +507 -0
- package/build/lib/camera/MP4StreamingServer.js +159 -0
- package/build/lib/hap/HAPCharacteristic.js +25 -4
- package/build/lib/hap/HAPService.js +25 -4
- package/build/lib/hap/eve-app/EveCharacteristics.js +124 -81
- package/build/lib/hap/eve-app/EveServices.js +50 -17
- package/build/lib/hap/hap-nodejs.js +32 -0
- package/build/lib/migration/HomeKitService2Migration.js +34 -0
- package/build/lib/migration/NodeMigration.js +75 -0
- package/build/lib/types/AccessoryInformationType.js +15 -1
- package/build/lib/types/CameraConfigType.js +15 -1
- package/build/lib/types/CustomCharacteristicType.js +15 -1
- package/build/lib/types/HAPHostConfigType.js +15 -1
- package/build/lib/types/HAPHostNodeType.js +15 -1
- package/build/lib/types/HAPService2ConfigType.js +15 -1
- package/build/lib/types/HAPService2NodeType.js +15 -1
- package/build/lib/types/HAPServiceConfigType.js +15 -1
- package/build/lib/types/HAPServiceNodeType.js +15 -1
- package/build/lib/types/HAPStatusConfigType.js +15 -1
- package/build/lib/types/HAPStatusNodeType.js +15 -1
- package/build/lib/types/HostType.js +28 -7
- package/build/lib/types/NodeType.js +15 -1
- package/build/lib/types/PublishTimersType.js +15 -1
- package/build/lib/types/UniFiControllerConfigType.js +16 -0
- package/build/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.js +28 -7
- package/build/lib/types/hap-nodejs/HapCategories.js +64 -43
- package/build/lib/types/storage/SerializedHostType.js +15 -1
- package/build/lib/types/storage/StorageType.js +34 -10
- package/build/lib/unifi/ProtectDiscovery.js +80 -0
- package/build/lib/utils/AccessoryUtils.js +152 -112
- package/build/lib/utils/BridgeUtils.js +95 -39
- package/build/lib/utils/CharacteristicUtils.js +5 -49
- package/build/lib/utils/CharacteristicUtils2.js +5 -49
- package/build/lib/utils/CharacteristicUtilsBase.js +81 -0
- package/build/lib/utils/NodeStatusUtils.js +89 -40
- package/build/lib/utils/ServiceUtils.js +433 -368
- package/build/lib/utils/ServiceUtils2.js +519 -304
- package/build/lib/utils/index.js +11 -12
- package/build/nodes/bridge.html +206 -168
- package/build/nodes/bridge.js +27 -9
- package/build/nodes/locales/en-US/node-red-contrib-homekit-bridged.json +22 -0
- package/build/nodes/nrchkb.html +1753 -117
- package/build/nodes/nrchkb.js +66 -88
- package/build/nodes/plugin-instance.html +509 -0
- package/build/nodes/plugin-instance.js +46 -0
- package/build/nodes/service.html +557 -306
- package/build/nodes/service.js +5 -6
- package/build/nodes/service2.html +1735 -455
- package/build/nodes/service2.js +5 -8
- package/build/nodes/standalone.html +208 -176
- package/build/nodes/standalone.js +27 -9
- package/build/nodes/status.html +51 -18
- package/build/nodes/status.js +47 -41
- package/build/nodes/unifi-controller.html +92 -0
- package/build/nodes/unifi-controller.js +20 -0
- package/build/plugins/embedded/homebridge-camera-ffmpeg/index.js +479 -0
- package/build/plugins/embedded/homebridge-unifi-protect/index.js +521 -0
- package/build/plugins/embedded/index.js +58 -0
- package/build/plugins/nrchkb-homekit-plugins.js +17 -0
- package/build/plugins/registry/index.js +203 -0
- package/build/plugins/registry/types.js +16 -0
- package/build/scripts/migrate-homekit-service-flows.js +47 -0
- package/examples/demo/01 - ALL Demos single import.json +1885 -1885
- package/examples/demo/02 - Air Purifier.json +279 -279
- package/examples/demo/03 - Air Quality sensor with Battery.json +254 -254
- package/examples/demo/04 - Dimmable Bulb.json +172 -172
- package/examples/demo/05 - Color Bulb (HSV).json +195 -195
- package/examples/demo/06 - Fan (simple, 3 speeds).json +240 -240
- package/examples/demo/07 - Fan (with speed, oscillate, rotation direction).json +175 -175
- package/examples/demo/08 - CO2 detector.json +224 -224
- package/examples/demo/09 - CO (carbon monoxide) example.json +255 -255
- package/examples/demo/10 - Door window contact sensor.json +234 -234
- package/examples/demos (advanced)/01 - Television with inputs and speaker.json +541 -541
- package/examples/switch/01 - Plain Switch.json +178 -178
- package/package.json +95 -82
- package/build/lib/HAPHostNode.d.ts +0 -1
- package/build/lib/HAPServiceNode.d.ts +0 -1
- package/build/lib/HAPServiceNode2.d.ts +0 -1
- package/build/lib/NRCHKBError.d.ts +0 -3
- package/build/lib/Storage.d.ts +0 -30
- package/build/lib/api.d.ts +0 -1
- package/build/lib/hap/HAPCharacteristic.d.ts +0 -9
- package/build/lib/hap/HAPService.d.ts +0 -6
- package/build/lib/hap/eve-app/EveCharacteristics.d.ts +0 -20
- package/build/lib/hap/eve-app/EveServices.d.ts +0 -5
- package/build/lib/types/AccessoryInformationType.d.ts +0 -11
- package/build/lib/types/CameraConfigType.d.ts +0 -24
- package/build/lib/types/CustomCharacteristicType.d.ts +0 -6
- package/build/lib/types/HAPHostConfigType.d.ts +0 -22
- package/build/lib/types/HAPHostNodeType.d.ts +0 -14
- package/build/lib/types/HAPService2ConfigType.d.ts +0 -6
- package/build/lib/types/HAPService2NodeType.d.ts +0 -7
- package/build/lib/types/HAPServiceConfigType.d.ts +0 -26
- package/build/lib/types/HAPServiceNodeType.d.ts +0 -38
- package/build/lib/types/HAPStatusConfigType.d.ts +0 -5
- package/build/lib/types/HAPStatusNodeType.d.ts +0 -12
- package/build/lib/types/HostType.d.ts +0 -5
- package/build/lib/types/NodeType.d.ts +0 -3
- package/build/lib/types/PublishTimersType.d.ts +0 -4
- package/build/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.d.ts +0 -5
- package/build/lib/types/hap-nodejs/HapCategories.d.ts +0 -41
- package/build/lib/types/storage/SerializedHostType.d.ts +0 -5
- package/build/lib/types/storage/StorageType.d.ts +0 -8
- package/build/lib/utils/AccessoryUtils.d.ts +0 -1
- package/build/lib/utils/BridgeUtils.d.ts +0 -1
- package/build/lib/utils/CharacteristicUtils.d.ts +0 -1
- package/build/lib/utils/CharacteristicUtils2.d.ts +0 -1
- package/build/lib/utils/NodeStatusUtils.d.ts +0 -17
- package/build/lib/utils/ServiceUtils.d.ts +0 -1
- package/build/lib/utils/ServiceUtils2.d.ts +0 -1
- package/build/lib/utils/index.d.ts +0 -1
- package/build/nodes/bridge.d.ts +0 -1
- package/build/nodes/nrchkb.d.ts +0 -1
- package/build/nodes/service.d.ts +0 -1
- package/build/nodes/service2.d.ts +0 -1
- package/build/nodes/standalone.d.ts +0 -1
- package/build/nodes/status.d.ts +0 -1
|
@@ -1,115 +1,155 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
const
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
var import_hap_nodejs = require("@homebridge/hap-nodejs");
|
|
3
|
+
var import_logger = require("@nrchkb/logger");
|
|
4
|
+
const accessoryCache = /* @__PURE__ */ new WeakMap();
|
|
5
|
+
const buildAccessoryUtils = (node) => {
|
|
6
|
+
const { Service, Characteristic } = require("@homebridge/hap-nodejs");
|
|
7
|
+
const log = (0, import_logger.logger)("NRCHKB", "AccessoryUtils", node.config.name, node);
|
|
8
|
+
const getOrCreate = (host, accessoryInformation, subtypeUUID) => {
|
|
9
|
+
let accessory;
|
|
10
|
+
const services = [];
|
|
11
|
+
let hostCache = accessoryCache.get(host);
|
|
12
|
+
if (!hostCache) {
|
|
13
|
+
hostCache = /* @__PURE__ */ new Map();
|
|
14
|
+
accessoryCache.set(host, hostCache);
|
|
15
|
+
}
|
|
16
|
+
log.debug(
|
|
17
|
+
`Looking for accessory with service subtype ${subtypeUUID} ...`
|
|
18
|
+
);
|
|
19
|
+
if (hostCache.has(subtypeUUID)) {
|
|
20
|
+
accessory = hostCache.get(subtypeUUID);
|
|
21
|
+
log.trace(`Found accessory in cache for subtype ${subtypeUUID}`);
|
|
22
|
+
} else {
|
|
23
|
+
accessory = host.bridgedAccessories.find((a) => {
|
|
24
|
+
const service = a.services.find((s) => {
|
|
25
|
+
return s.subtype === subtypeUUID;
|
|
19
26
|
});
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
return
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
27
|
+
return service !== void 0;
|
|
28
|
+
});
|
|
29
|
+
if (accessory) {
|
|
30
|
+
hostCache.set(subtypeUUID, accessory);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
if (accessory) {
|
|
34
|
+
const accessoryInformationService2 = accessory.getService(Service.AccessoryInformation) || accessory.addService(Service.AccessoryInformation);
|
|
35
|
+
if (accessoryInformationService2.getCharacteristic(
|
|
36
|
+
Characteristic.Manufacturer
|
|
37
|
+
).value !== accessoryInformation.manufacturer || accessoryInformationService2.getCharacteristic(
|
|
38
|
+
Characteristic.Model
|
|
39
|
+
).value !== accessoryInformation.model || accessoryInformationService2.getCharacteristic(
|
|
40
|
+
Characteristic.Name
|
|
41
|
+
).value !== accessoryInformation.name || accessoryInformationService2.getCharacteristic(
|
|
42
|
+
Characteristic.SerialNumber
|
|
43
|
+
).value !== accessoryInformation.serialNo) {
|
|
44
|
+
log.debug(
|
|
45
|
+
"... Manufacturer, Model, Name or Serial Number changed! Replacing it."
|
|
46
|
+
);
|
|
47
|
+
accessory.services.filter(
|
|
48
|
+
(service) => service.UUID !== Service.AccessoryInformation.UUID
|
|
49
|
+
).forEach((service) => {
|
|
50
|
+
accessory?.removeService(service);
|
|
51
|
+
services.push(service);
|
|
52
|
+
});
|
|
53
|
+
host.removeBridgedAccessories([accessory]);
|
|
54
|
+
accessory.destroy();
|
|
55
|
+
hostCache.delete(subtypeUUID);
|
|
56
|
+
accessory = void 0;
|
|
57
|
+
} else {
|
|
58
|
+
log.debug("... found it! Updating it.");
|
|
59
|
+
}
|
|
60
|
+
} else {
|
|
61
|
+
log.debug(
|
|
62
|
+
`... didn't find it. Adding new accessory with name ${accessoryInformation.name} and UUID ${accessoryInformation.UUID}`
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
let accessoryInformationService;
|
|
66
|
+
if (!accessory) {
|
|
67
|
+
accessory = new import_hap_nodejs.Accessory(
|
|
68
|
+
accessoryInformation.name,
|
|
69
|
+
accessoryInformation.UUID
|
|
70
|
+
);
|
|
71
|
+
services.forEach((service) => {
|
|
72
|
+
accessory?.addService(service);
|
|
73
|
+
});
|
|
74
|
+
accessoryInformationService = accessory?.getService(Service.AccessoryInformation) || accessory?.addService(Service.AccessoryInformation);
|
|
75
|
+
accessoryInformationService?.setCharacteristic(
|
|
76
|
+
Characteristic.Name,
|
|
77
|
+
accessoryInformation.name
|
|
78
|
+
).setCharacteristic(
|
|
79
|
+
Characteristic.Manufacturer,
|
|
80
|
+
accessoryInformation.manufacturer
|
|
81
|
+
).setCharacteristic(
|
|
82
|
+
Characteristic.SerialNumber,
|
|
83
|
+
accessoryInformation.serialNo
|
|
84
|
+
).setCharacteristic(
|
|
85
|
+
Characteristic.Model,
|
|
86
|
+
accessoryInformation.model
|
|
87
|
+
);
|
|
88
|
+
const revisionRegex = /\d+\.\d+\.\d+/;
|
|
89
|
+
if (accessoryInformation.firmwareRev?.match(revisionRegex)) {
|
|
90
|
+
accessoryInformationService?.setCharacteristic(
|
|
91
|
+
Characteristic.FirmwareRevision,
|
|
92
|
+
accessoryInformation.firmwareRev
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
if (accessoryInformation.hardwareRev?.match(revisionRegex)) {
|
|
96
|
+
accessoryInformationService?.setCharacteristic(
|
|
97
|
+
Characteristic.HardwareRevision,
|
|
98
|
+
accessoryInformation.hardwareRev
|
|
99
|
+
);
|
|
100
|
+
}
|
|
101
|
+
if (accessoryInformation.softwareRev?.match(revisionRegex)) {
|
|
102
|
+
accessoryInformationService?.setCharacteristic(
|
|
103
|
+
Characteristic.SoftwareRevision,
|
|
104
|
+
accessoryInformation.softwareRev
|
|
105
|
+
);
|
|
106
|
+
}
|
|
107
|
+
host.addBridgedAccessories([accessory]);
|
|
108
|
+
} else {
|
|
109
|
+
accessoryInformationService = accessory?.getService(Service.AccessoryInformation) || accessory?.addService(Service.AccessoryInformation);
|
|
110
|
+
}
|
|
111
|
+
accessoryInformationService?.setCharacteristic(
|
|
112
|
+
Characteristic.Identify,
|
|
113
|
+
true
|
|
114
|
+
);
|
|
115
|
+
log.debug(
|
|
116
|
+
`Bridge now has ${host.bridgedAccessories.length} accessories.`
|
|
117
|
+
);
|
|
118
|
+
return accessory;
|
|
119
|
+
};
|
|
120
|
+
const onIdentify = (paired, callback) => {
|
|
121
|
+
if (paired) {
|
|
122
|
+
log.debug(
|
|
123
|
+
`Identify called on paired Accessory ${node.accessory.displayName}`
|
|
124
|
+
);
|
|
125
|
+
} else {
|
|
126
|
+
log.debug(
|
|
127
|
+
`Identify called on unpaired Accessory ${node.accessory.displayName}`
|
|
128
|
+
);
|
|
129
|
+
}
|
|
130
|
+
const nodes = node.childNodes ?? [];
|
|
131
|
+
for (let i = 0, len = nodes.length; i < len; i++) {
|
|
132
|
+
const topic = nodes[i].config.topic ? nodes[i].config.topic : nodes[i].topic_in;
|
|
133
|
+
const msg = {
|
|
134
|
+
payload: { Identify: 1 },
|
|
135
|
+
name: nodes[i].name,
|
|
136
|
+
topic
|
|
137
|
+
};
|
|
138
|
+
const statusId = nodes[i].nodeStatusUtils.setStatus({
|
|
139
|
+
fill: "yellow",
|
|
140
|
+
shape: "dot",
|
|
141
|
+
text: "Identify : 1"
|
|
142
|
+
});
|
|
143
|
+
setTimeout(() => {
|
|
144
|
+
nodes[i].nodeStatusUtils.clearStatus(statusId);
|
|
145
|
+
}, 3e3);
|
|
146
|
+
nodes[i].send([msg, msg]);
|
|
147
|
+
}
|
|
148
|
+
callback();
|
|
149
|
+
};
|
|
150
|
+
return {
|
|
151
|
+
getOrCreate,
|
|
152
|
+
onIdentify
|
|
153
|
+
};
|
|
115
154
|
};
|
|
155
|
+
module.exports = buildAccessoryUtils;
|
|
@@ -1,44 +1,100 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __copyProps = (to, from, except, desc) => {
|
|
9
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
10
|
+
for (let key of __getOwnPropNames(from))
|
|
11
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
12
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
+
}
|
|
14
|
+
return to;
|
|
4
15
|
};
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
17
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
18
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
19
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
20
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
22
|
+
mod
|
|
23
|
+
));
|
|
24
|
+
var import_logger = require("@nrchkb/logger");
|
|
25
|
+
var import_HostType = __toESM(require("../types/HostType"));
|
|
26
|
+
const PUBLISH_CHECK_INTERVAL_MS = 250;
|
|
27
|
+
const buildBridgeUtils = () => {
|
|
28
|
+
const getConfiguredHostId = (node, serviceNode) => {
|
|
29
|
+
if (!serviceNode) {
|
|
30
|
+
return void 0;
|
|
31
|
+
}
|
|
32
|
+
if (serviceNode.config.isParent) {
|
|
33
|
+
return serviceNode.config.hostType == import_HostType.default.BRIDGE ? serviceNode.config.bridge : serviceNode.config.accessoryId;
|
|
34
|
+
}
|
|
35
|
+
const parentNode = node.RED.nodes.getNode(
|
|
36
|
+
serviceNode.config.parentService
|
|
37
|
+
);
|
|
38
|
+
return parentNode?.hostNode?.id ?? getConfiguredHostId(node, parentNode);
|
|
39
|
+
};
|
|
40
|
+
const getServiceHostId = (node, serviceNode) => serviceNode.hostNode?.id ?? getConfiguredHostId(node, serviceNode);
|
|
41
|
+
const canPublishHost = (node) => {
|
|
42
|
+
let hasPendingService = false;
|
|
43
|
+
node.RED.nodes.eachNode((currentNode) => {
|
|
44
|
+
if (hasPendingService) {
|
|
45
|
+
return;
|
|
46
|
+
}
|
|
47
|
+
if (currentNode.type !== "homekit-service" && currentNode.type !== "homekit-service2") {
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
const serviceNode = node.RED.nodes.getNode(currentNode.id);
|
|
51
|
+
if (serviceNode && getServiceHostId(node, serviceNode) === node.hostNode.id && !serviceNode.configured) {
|
|
52
|
+
hasPendingService = true;
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
return !hasPendingService;
|
|
56
|
+
};
|
|
57
|
+
const delayedPublish = (node) => {
|
|
58
|
+
const log = (0, import_logger.logger)("NRCHKB", "BridgeUtils", node.config.name, node);
|
|
59
|
+
if (!node.hostNode.published) {
|
|
60
|
+
if (node.publishTimers[node.hostNode.id] !== void 0) {
|
|
61
|
+
clearTimeout(node.publishTimers[node.hostNode.id]);
|
|
62
|
+
}
|
|
63
|
+
const hostTypeName = node.hostNode.hostType == import_HostType.default.BRIDGE ? "Bridge" : "Standalone Accessory";
|
|
64
|
+
const tryPublish = () => {
|
|
65
|
+
try {
|
|
66
|
+
if (!node.hostNode.published) {
|
|
67
|
+
if (!canPublishHost(node)) {
|
|
68
|
+
node.publishTimers[node.hostNode.id] = setTimeout(
|
|
69
|
+
tryPublish,
|
|
70
|
+
PUBLISH_CHECK_INTERVAL_MS
|
|
71
|
+
);
|
|
72
|
+
return;
|
|
14
73
|
}
|
|
15
|
-
const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
catch (error) {
|
|
31
|
-
log.error(`${hostTypeName} publish failed due to ${error}`);
|
|
32
|
-
node.nodeStatusUtils.setStatus({
|
|
33
|
-
fill: 'red',
|
|
34
|
-
shape: 'ring',
|
|
35
|
-
text: 'Error while publishing ' + hostTypeName
|
|
36
|
-
});
|
|
37
|
-
}
|
|
38
|
-
}, 5000);
|
|
74
|
+
const published = node.hostNode.publish();
|
|
75
|
+
if (published) {
|
|
76
|
+
log.debug(`${hostTypeName} published`);
|
|
77
|
+
} else {
|
|
78
|
+
log.error(`${hostTypeName} not published`);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
} catch (error) {
|
|
82
|
+
log.error(`${hostTypeName} publish failed due to ${error}`);
|
|
83
|
+
node.nodeStatusUtils.setStatus({
|
|
84
|
+
fill: "red",
|
|
85
|
+
shape: "ring",
|
|
86
|
+
text: `Error while publishing ${hostTypeName}`
|
|
87
|
+
});
|
|
39
88
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
89
|
+
};
|
|
90
|
+
node.publishTimers[node.hostNode.id] = setTimeout(
|
|
91
|
+
tryPublish,
|
|
92
|
+
PUBLISH_CHECK_INTERVAL_MS
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
};
|
|
96
|
+
return {
|
|
97
|
+
delayedPublish
|
|
98
|
+
};
|
|
44
99
|
};
|
|
100
|
+
module.exports = buildBridgeUtils;
|
|
@@ -1,51 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
const
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
const log = (0, logger_1.logger)('NRCHKB', 'CharacteristicUtils', node.config.name, node);
|
|
7
|
-
const ServiceUtils = require('./ServiceUtils')(node);
|
|
8
|
-
const load = function (service, config) {
|
|
9
|
-
let characteristicProperties = {};
|
|
10
|
-
if (config.characteristicProperties &&
|
|
11
|
-
config.characteristicProperties.length > 0) {
|
|
12
|
-
characteristicProperties = JSON.parse(config.characteristicProperties.replace(/\${(.*?)}/g, (_, envName) => node.RED.util.evaluateNodeProperty(envName, 'env', node, {})));
|
|
13
|
-
log.trace('Evaluating value:');
|
|
14
|
-
log.trace(config.characteristicProperties);
|
|
15
|
-
log.trace('Evaluated as:');
|
|
16
|
-
log.trace(JSON.stringify(characteristicProperties));
|
|
17
|
-
for (const key in characteristicProperties) {
|
|
18
|
-
if (!characteristicProperties.hasOwnProperty(key))
|
|
19
|
-
continue;
|
|
20
|
-
const characteristic = service.getCharacteristic(hap_nodejs_1.Characteristic[key]);
|
|
21
|
-
if (characteristic && characteristicProperties[key]) {
|
|
22
|
-
log.debug(`Found Characteristic Properties for ${key}`);
|
|
23
|
-
characteristic.setProps(characteristicProperties[key]);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
return characteristicProperties;
|
|
28
|
-
};
|
|
29
|
-
const subscribeAndGetSupported = function (service) {
|
|
30
|
-
const supported = [];
|
|
31
|
-
const allCharacteristics = service.characteristics.concat(service.optionalCharacteristics);
|
|
32
|
-
node.onCharacteristicGet = ServiceUtils.onCharacteristicGet;
|
|
33
|
-
node.onCharacteristicSet = ServiceUtils.onCharacteristicSet(service.characteristics);
|
|
34
|
-
node.onCharacteristicChange = ServiceUtils.onCharacteristicChange(service.characteristics);
|
|
35
|
-
allCharacteristics.map((characteristic) => {
|
|
36
|
-
const cKey = characteristic.constructor.name;
|
|
37
|
-
supported.push(cKey);
|
|
38
|
-
characteristic.on('get', node.onCharacteristicGet);
|
|
39
|
-
characteristic.on('set', node.onCharacteristicSet);
|
|
40
|
-
characteristic.on('change', node.onCharacteristicChange);
|
|
41
|
-
if (characteristic.displayName === 'Current Temperature') {
|
|
42
|
-
characteristic.props.minValue = -100;
|
|
43
|
-
}
|
|
44
|
-
});
|
|
45
|
-
return [...new Set(supported)];
|
|
46
|
-
};
|
|
47
|
-
return {
|
|
48
|
-
load: load,
|
|
49
|
-
subscribeAndGetSupported: subscribeAndGetSupported
|
|
50
|
-
};
|
|
2
|
+
const buildCharacteristicUtilsBase = require("./CharacteristicUtilsBase");
|
|
3
|
+
const buildServiceUtils = require("./ServiceUtils");
|
|
4
|
+
const buildCharacteristicUtils = (node) => {
|
|
5
|
+
return buildCharacteristicUtilsBase(node, buildServiceUtils, { getHandlerUsesCharacteristics: false });
|
|
51
6
|
};
|
|
7
|
+
module.exports = buildCharacteristicUtils;
|
|
@@ -1,51 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
const
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
const log = (0, logger_1.logger)('NRCHKB', 'CharacteristicUtils', node.config.name, node);
|
|
7
|
-
const ServiceUtils = require('./ServiceUtils2')(node);
|
|
8
|
-
const load = function (service, config) {
|
|
9
|
-
let characteristicProperties = {};
|
|
10
|
-
if (config.characteristicProperties &&
|
|
11
|
-
config.characteristicProperties.length > 0) {
|
|
12
|
-
characteristicProperties = JSON.parse(config.characteristicProperties.replace(/\${(.*?)}/g, (_, envName) => node.RED.util.evaluateNodeProperty(envName, 'env', node, {})));
|
|
13
|
-
log.trace('Evaluating value:');
|
|
14
|
-
log.trace(config.characteristicProperties);
|
|
15
|
-
log.trace('Evaluated as:');
|
|
16
|
-
log.trace(JSON.stringify(characteristicProperties));
|
|
17
|
-
for (const key in characteristicProperties) {
|
|
18
|
-
if (!characteristicProperties.hasOwnProperty(key))
|
|
19
|
-
continue;
|
|
20
|
-
const characteristic = service.getCharacteristic(hap_nodejs_1.Characteristic[key]);
|
|
21
|
-
if (characteristic && characteristicProperties[key]) {
|
|
22
|
-
log.debug(`Found Characteristic Properties for ${key}`);
|
|
23
|
-
characteristic.setProps(characteristicProperties[key]);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
return characteristicProperties;
|
|
28
|
-
};
|
|
29
|
-
const subscribeAndGetSupported = function (service) {
|
|
30
|
-
const supported = [];
|
|
31
|
-
const allCharacteristics = service.characteristics.concat(service.optionalCharacteristics);
|
|
32
|
-
node.onCharacteristicGet = ServiceUtils.onCharacteristicGet(service.characteristics);
|
|
33
|
-
node.onCharacteristicSet = ServiceUtils.onCharacteristicSet(service.characteristics);
|
|
34
|
-
node.onCharacteristicChange = ServiceUtils.onCharacteristicChange(service.characteristics);
|
|
35
|
-
allCharacteristics.map((characteristic) => {
|
|
36
|
-
const cKey = characteristic.constructor.name;
|
|
37
|
-
supported.push(cKey);
|
|
38
|
-
characteristic.on('get', node.onCharacteristicGet);
|
|
39
|
-
characteristic.on('set', node.onCharacteristicSet);
|
|
40
|
-
characteristic.on('change', node.onCharacteristicChange);
|
|
41
|
-
if (characteristic.displayName === 'Current Temperature') {
|
|
42
|
-
characteristic.props.minValue = -100;
|
|
43
|
-
}
|
|
44
|
-
});
|
|
45
|
-
return [...new Set(supported)];
|
|
46
|
-
};
|
|
47
|
-
return {
|
|
48
|
-
load: load,
|
|
49
|
-
subscribeAndGetSupported: subscribeAndGetSupported
|
|
50
|
-
};
|
|
2
|
+
const buildCharacteristicUtilsBase = require("./CharacteristicUtilsBase");
|
|
3
|
+
const buildServiceUtils2 = require("./ServiceUtils2");
|
|
4
|
+
const buildCharacteristicUtils2 = (node) => {
|
|
5
|
+
return buildCharacteristicUtilsBase(node, buildServiceUtils2, { getHandlerUsesCharacteristics: true });
|
|
51
6
|
};
|
|
7
|
+
module.exports = buildCharacteristicUtils2;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var import_hap_nodejs = require("@homebridge/hap-nodejs");
|
|
3
|
+
var import_logger = require("@nrchkb/logger");
|
|
4
|
+
const ENV_VAR_REGEX = /\${(.*?)}/g;
|
|
5
|
+
const buildCharacteristicUtilsBase = (node, serviceUtilsFactory, options) => {
|
|
6
|
+
const log = (0, import_logger.logger)("NRCHKB", "CharacteristicUtils", node.config.name, node);
|
|
7
|
+
const ServiceUtils = serviceUtilsFactory(node);
|
|
8
|
+
const load = (service, config) => {
|
|
9
|
+
let characteristicProperties = {};
|
|
10
|
+
if (config.characteristicProperties && config.characteristicProperties.length > 0) {
|
|
11
|
+
try {
|
|
12
|
+
characteristicProperties = JSON.parse(
|
|
13
|
+
config.characteristicProperties.replace(
|
|
14
|
+
ENV_VAR_REGEX,
|
|
15
|
+
(_, envName) => node.RED.util.evaluateNodeProperty(
|
|
16
|
+
envName,
|
|
17
|
+
"env",
|
|
18
|
+
node,
|
|
19
|
+
{}
|
|
20
|
+
)
|
|
21
|
+
)
|
|
22
|
+
);
|
|
23
|
+
} catch (error) {
|
|
24
|
+
log.error(
|
|
25
|
+
`Invalid characteristicProperties JSON, ignoring custom properties: ${error}`
|
|
26
|
+
);
|
|
27
|
+
node.nodeStatusUtils.setStatus({
|
|
28
|
+
fill: "red",
|
|
29
|
+
shape: "ring",
|
|
30
|
+
text: "Invalid characteristic properties"
|
|
31
|
+
});
|
|
32
|
+
return characteristicProperties;
|
|
33
|
+
}
|
|
34
|
+
log.trace("Evaluating value:");
|
|
35
|
+
log.trace(config.characteristicProperties);
|
|
36
|
+
log.trace("Evaluated as:");
|
|
37
|
+
log.trace(JSON.stringify(characteristicProperties));
|
|
38
|
+
for (const key in characteristicProperties) {
|
|
39
|
+
if (!Object.hasOwn(characteristicProperties, key)) continue;
|
|
40
|
+
const characteristic = service.getCharacteristic(
|
|
41
|
+
// @ts-expect-error
|
|
42
|
+
import_hap_nodejs.Characteristic[key]
|
|
43
|
+
);
|
|
44
|
+
if (characteristic && characteristicProperties[key]) {
|
|
45
|
+
log.debug(`Found Characteristic Properties for ${key}`);
|
|
46
|
+
characteristic.setProps(characteristicProperties[key]);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
return characteristicProperties;
|
|
51
|
+
};
|
|
52
|
+
const subscribeAndGetSupported = (service) => {
|
|
53
|
+
const supported = /* @__PURE__ */ new Set();
|
|
54
|
+
const allCharacteristics = service.characteristics.concat(
|
|
55
|
+
service.optionalCharacteristics
|
|
56
|
+
);
|
|
57
|
+
node.onCharacteristicGet = options.getHandlerUsesCharacteristics ? ServiceUtils.onCharacteristicGet(service.characteristics) : ServiceUtils.onCharacteristicGet;
|
|
58
|
+
node.onCharacteristicSet = ServiceUtils.onCharacteristicSet(
|
|
59
|
+
service.characteristics
|
|
60
|
+
);
|
|
61
|
+
node.onCharacteristicChange = ServiceUtils.onCharacteristicChange(
|
|
62
|
+
service.characteristics
|
|
63
|
+
);
|
|
64
|
+
allCharacteristics.forEach((characteristic) => {
|
|
65
|
+
const cKey = characteristic.constructor.name;
|
|
66
|
+
supported.add(cKey);
|
|
67
|
+
characteristic.on("get", node.onCharacteristicGet);
|
|
68
|
+
characteristic.on("set", node.onCharacteristicSet);
|
|
69
|
+
characteristic.on("change", node.onCharacteristicChange);
|
|
70
|
+
if (characteristic.displayName === "Current Temperature") {
|
|
71
|
+
characteristic.props.minValue = -100;
|
|
72
|
+
}
|
|
73
|
+
});
|
|
74
|
+
return supported;
|
|
75
|
+
};
|
|
76
|
+
return {
|
|
77
|
+
load,
|
|
78
|
+
subscribeAndGetSupported
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
module.exports = buildCharacteristicUtilsBase;
|