node-red-contrib-homekit-bridged 2.0.0-dev.4 → 2.0.0-dev.7

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.
Files changed (125) hide show
  1. package/build/lib/HAPHostNode.js +183 -141
  2. package/build/lib/HAPServiceNode.js +199 -172
  3. package/build/lib/HAPServiceNode2.js +207 -172
  4. package/build/lib/NRCHKBError.js +23 -2
  5. package/build/lib/PairingQRCode.js +62 -0
  6. package/build/lib/Storage.js +157 -92
  7. package/build/lib/api.js +654 -288
  8. package/build/lib/camera/CameraControl.js +125 -0
  9. package/build/lib/camera/CameraDelegate.js +507 -0
  10. package/build/lib/camera/MP4StreamingServer.js +159 -0
  11. package/build/lib/hap/HAPCharacteristic.js +25 -4
  12. package/build/lib/hap/HAPService.js +25 -4
  13. package/build/lib/hap/eve-app/EveCharacteristics.js +124 -81
  14. package/build/lib/hap/eve-app/EveServices.js +50 -17
  15. package/build/lib/hap/hap-nodejs.js +32 -0
  16. package/build/lib/migration/HomeKitService2Migration.js +34 -0
  17. package/build/lib/migration/NodeMigration.js +75 -0
  18. package/build/lib/types/AccessoryInformationType.js +15 -1
  19. package/build/lib/types/CameraConfigType.js +15 -1
  20. package/build/lib/types/CustomCharacteristicType.js +15 -1
  21. package/build/lib/types/HAPHostConfigType.js +15 -1
  22. package/build/lib/types/HAPHostNodeType.js +15 -1
  23. package/build/lib/types/HAPService2ConfigType.js +15 -1
  24. package/build/lib/types/HAPService2NodeType.js +15 -1
  25. package/build/lib/types/HAPServiceConfigType.js +15 -1
  26. package/build/lib/types/HAPServiceNodeType.js +15 -1
  27. package/build/lib/types/HAPStatusConfigType.js +15 -1
  28. package/build/lib/types/HAPStatusNodeType.js +15 -1
  29. package/build/lib/types/HostType.js +28 -7
  30. package/build/lib/types/NodeType.js +15 -1
  31. package/build/lib/types/PublishTimersType.js +15 -1
  32. package/build/lib/types/UniFiControllerConfigType.js +16 -0
  33. package/build/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.js +28 -7
  34. package/build/lib/types/hap-nodejs/HapCategories.js +64 -43
  35. package/build/lib/types/storage/SerializedHostType.js +15 -1
  36. package/build/lib/types/storage/StorageType.js +34 -10
  37. package/build/lib/unifi/ProtectDiscovery.js +80 -0
  38. package/build/lib/utils/AccessoryUtils.js +152 -110
  39. package/build/lib/utils/BridgeUtils.js +82 -39
  40. package/build/lib/utils/CharacteristicUtils.js +5 -49
  41. package/build/lib/utils/CharacteristicUtils2.js +5 -49
  42. package/build/lib/utils/CharacteristicUtilsBase.js +81 -0
  43. package/build/lib/utils/NodeStatusUtils.js +89 -40
  44. package/build/lib/utils/ServiceUtils.js +434 -373
  45. package/build/lib/utils/ServiceUtils2.js +514 -307
  46. package/build/lib/utils/index.js +10 -11
  47. package/build/nodes/bridge.html +184 -166
  48. package/build/nodes/bridge.js +27 -9
  49. package/build/nodes/locales/en-US/node-red-contrib-homekit-bridged.json +22 -0
  50. package/build/nodes/nrchkb.html +1601 -88
  51. package/build/nodes/nrchkb.js +66 -88
  52. package/build/nodes/plugin-instance.html +499 -0
  53. package/build/nodes/plugin-instance.js +46 -0
  54. package/build/nodes/service.html +517 -299
  55. package/build/nodes/service.js +5 -6
  56. package/build/nodes/service2.html +1683 -460
  57. package/build/nodes/service2.js +5 -8
  58. package/build/nodes/standalone.html +187 -174
  59. package/build/nodes/standalone.js +27 -9
  60. package/build/nodes/status.html +51 -18
  61. package/build/nodes/status.js +47 -40
  62. package/build/nodes/unifi-controller.html +92 -0
  63. package/build/nodes/unifi-controller.js +20 -0
  64. package/build/plugins/embedded/homebridge-camera-ffmpeg/index.js +479 -0
  65. package/build/plugins/embedded/homebridge-unifi-protect/index.js +521 -0
  66. package/build/plugins/embedded/index.js +58 -0
  67. package/build/plugins/nrchkb-homekit-plugins.js +17 -0
  68. package/build/plugins/registry/index.js +203 -0
  69. package/build/plugins/registry/types.js +16 -0
  70. package/build/scripts/migrate-homekit-service-flows.js +47 -0
  71. package/examples/demo/01 - ALL Demos single import.json +1885 -1885
  72. package/examples/demo/02 - Air Purifier.json +279 -279
  73. package/examples/demo/03 - Air Quality sensor with Battery.json +254 -254
  74. package/examples/demo/04 - Dimmable Bulb.json +172 -172
  75. package/examples/demo/05 - Color Bulb (HSV).json +195 -195
  76. package/examples/demo/06 - Fan (simple, 3 speeds).json +240 -240
  77. package/examples/demo/07 - Fan (with speed, oscillate, rotation direction).json +175 -175
  78. package/examples/demo/08 - CO2 detector.json +224 -224
  79. package/examples/demo/09 - CO (carbon monoxide) example.json +255 -255
  80. package/examples/demo/10 - Door window contact sensor.json +234 -234
  81. package/examples/demos (advanced)/01 - Television with inputs and speaker.json +541 -541
  82. package/examples/switch/01 - Plain Switch.json +178 -178
  83. package/package.json +95 -84
  84. package/build/lib/HAPHostNode.d.ts +0 -1
  85. package/build/lib/HAPServiceNode.d.ts +0 -1
  86. package/build/lib/HAPServiceNode2.d.ts +0 -1
  87. package/build/lib/NRCHKBError.d.ts +0 -3
  88. package/build/lib/Storage.d.ts +0 -30
  89. package/build/lib/api.d.ts +0 -1
  90. package/build/lib/hap/HAPCharacteristic.d.ts +0 -9
  91. package/build/lib/hap/HAPService.d.ts +0 -6
  92. package/build/lib/hap/eve-app/EveCharacteristics.d.ts +0 -20
  93. package/build/lib/hap/eve-app/EveServices.d.ts +0 -5
  94. package/build/lib/types/AccessoryInformationType.d.ts +0 -11
  95. package/build/lib/types/CameraConfigType.d.ts +0 -24
  96. package/build/lib/types/CustomCharacteristicType.d.ts +0 -6
  97. package/build/lib/types/HAPHostConfigType.d.ts +0 -22
  98. package/build/lib/types/HAPHostNodeType.d.ts +0 -14
  99. package/build/lib/types/HAPService2ConfigType.d.ts +0 -6
  100. package/build/lib/types/HAPService2NodeType.d.ts +0 -7
  101. package/build/lib/types/HAPServiceConfigType.d.ts +0 -26
  102. package/build/lib/types/HAPServiceNodeType.d.ts +0 -38
  103. package/build/lib/types/HAPStatusConfigType.d.ts +0 -5
  104. package/build/lib/types/HAPStatusNodeType.d.ts +0 -12
  105. package/build/lib/types/HostType.d.ts +0 -5
  106. package/build/lib/types/NodeType.d.ts +0 -3
  107. package/build/lib/types/PublishTimersType.d.ts +0 -4
  108. package/build/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.d.ts +0 -5
  109. package/build/lib/types/hap-nodejs/HapCategories.d.ts +0 -41
  110. package/build/lib/types/storage/SerializedHostType.d.ts +0 -5
  111. package/build/lib/types/storage/StorageType.d.ts +0 -8
  112. package/build/lib/utils/AccessoryUtils.d.ts +0 -1
  113. package/build/lib/utils/BridgeUtils.d.ts +0 -1
  114. package/build/lib/utils/CharacteristicUtils.d.ts +0 -1
  115. package/build/lib/utils/CharacteristicUtils2.d.ts +0 -1
  116. package/build/lib/utils/NodeStatusUtils.d.ts +0 -17
  117. package/build/lib/utils/ServiceUtils.d.ts +0 -1
  118. package/build/lib/utils/ServiceUtils2.d.ts +0 -1
  119. package/build/lib/utils/index.d.ts +0 -1
  120. package/build/nodes/bridge.d.ts +0 -1
  121. package/build/nodes/nrchkb.d.ts +0 -1
  122. package/build/nodes/service.d.ts +0 -1
  123. package/build/nodes/service2.d.ts +0 -1
  124. package/build/nodes/standalone.d.ts +0 -1
  125. package/build/nodes/status.d.ts +0 -1
@@ -1,113 +1,155 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const logger_1 = require("@nrchkb/logger");
4
- module.exports = (node) => {
5
- const HapNodeJS = require('@homebridge/hap-nodejs');
6
- const Accessory = HapNodeJS.Accessory;
7
- const Service = HapNodeJS.Service;
8
- const Characteristic = HapNodeJS.Characteristic;
9
- const log = (0, logger_1.logger)('NRCHKB', 'AccessoryUtils', node.config.name, node);
10
- const getOrCreate = (host, accessoryInformation, subtypeUUID) => {
11
- var _a, _b, _c;
12
- let accessory;
13
- const services = [];
14
- log.debug(`Looking for accessory with service subtype ${subtypeUUID} ...`);
15
- accessory = host.bridgedAccessories.find((a) => {
16
- const service = a.services.find((s) => {
17
- return s.subtype === subtypeUUID;
18
- });
19
- return service !== undefined;
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;
20
26
  });
21
- if (accessory) {
22
- const accessoryInformationService = accessory.getService(Service.AccessoryInformation) ||
23
- accessory.addService(Service.AccessoryInformation);
24
- if (accessoryInformationService.getCharacteristic(Characteristic.Manufacturer).value !== accessoryInformation.manufacturer ||
25
- accessoryInformationService.getCharacteristic(Characteristic.Model)
26
- .value !== accessoryInformation.model ||
27
- accessoryInformationService.getCharacteristic(Characteristic.Name)
28
- .value !== accessoryInformation.name ||
29
- accessoryInformationService.getCharacteristic(Characteristic.SerialNumber).value !== accessoryInformation.serialNo) {
30
- log.debug('... Manufacturer, Model, Name or Serial Number changed! Replacing it.');
31
- accessory.services
32
- .filter((service) => service.UUID !== Service.AccessoryInformation.UUID)
33
- .forEach((service) => {
34
- accessory === null || accessory === void 0 ? void 0 : accessory.removeService(service);
35
- services.push(service);
36
- });
37
- host.removeBridgedAccessory(accessory, false);
38
- accessory.destroy();
39
- accessory = undefined;
40
- }
41
- else {
42
- log.debug('... found it! Updating it.');
43
- }
44
- }
45
- else {
46
- log.debug(`... didn't find it. Adding new accessory with name ${accessoryInformation.name} and UUID ${accessoryInformation.UUID}`);
47
- }
48
- let accessoryInformationService;
49
- if (!accessory) {
50
- accessory = new Accessory(accessoryInformation.name, accessoryInformation.UUID);
51
- services.forEach((service) => {
52
- accessory === null || accessory === void 0 ? void 0 : accessory.addService(service);
53
- });
54
- accessoryInformationService =
55
- (accessory === null || accessory === void 0 ? void 0 : accessory.getService(Service.AccessoryInformation)) ||
56
- (accessory === null || accessory === void 0 ? void 0 : accessory.addService(Service.AccessoryInformation));
57
- accessoryInformationService === null || accessoryInformationService === void 0 ? void 0 : accessoryInformationService.setCharacteristic(Characteristic.Name, accessoryInformation.name).setCharacteristic(Characteristic.Manufacturer, accessoryInformation.manufacturer).setCharacteristic(Characteristic.SerialNumber, accessoryInformation.serialNo).setCharacteristic(Characteristic.Model, accessoryInformation.model);
58
- const revisionRegex = /\d+\.\d+\.\d+/;
59
- if ((_a = accessoryInformation.firmwareRev) === null || _a === void 0 ? void 0 : _a.match(revisionRegex)) {
60
- accessoryInformationService === null || accessoryInformationService === void 0 ? void 0 : accessoryInformationService.setCharacteristic(Characteristic.FirmwareRevision, accessoryInformation.firmwareRev);
61
- }
62
- if ((_b = accessoryInformation.hardwareRev) === null || _b === void 0 ? void 0 : _b.match(revisionRegex)) {
63
- accessoryInformationService === null || accessoryInformationService === void 0 ? void 0 : accessoryInformationService.setCharacteristic(Characteristic.HardwareRevision, accessoryInformation.hardwareRev);
64
- }
65
- if ((_c = accessoryInformation.softwareRev) === null || _c === void 0 ? void 0 : _c.match(revisionRegex)) {
66
- accessoryInformationService === null || accessoryInformationService === void 0 ? void 0 : accessoryInformationService.setCharacteristic(Characteristic.SoftwareRevision, accessoryInformation.softwareRev);
67
- }
68
- host.addBridgedAccessories([accessory]);
69
- }
70
- else {
71
- accessoryInformationService =
72
- (accessory === null || accessory === void 0 ? void 0 : accessory.getService(Service.AccessoryInformation)) ||
73
- (accessory === null || accessory === void 0 ? void 0 : accessory.addService(Service.AccessoryInformation));
74
- }
75
- accessoryInformationService === null || accessoryInformationService === void 0 ? void 0 : accessoryInformationService.setCharacteristic(Characteristic.Identify, true);
76
- log.debug(`Bridge now has ${host.bridgedAccessories.length} accessories.`);
77
- return accessory;
78
- };
79
- const onIdentify = (paired, callback) => {
80
- var _a;
81
- if (paired) {
82
- log.debug(`Identify called on paired Accessory ${node.accessory.displayName}`);
83
- }
84
- else {
85
- log.debug(`Identify called on unpaired Accessory ${node.accessory.displayName}`);
86
- }
87
- const nodes = (_a = node.childNodes) !== null && _a !== void 0 ? _a : [];
88
- for (let i = 0, len = nodes.length; i < len; i++) {
89
- const topic = nodes[i].config.topic
90
- ? nodes[i].config.topic
91
- : nodes[i].topic_in;
92
- const msg = {
93
- payload: { Identify: 1 },
94
- name: nodes[i].name,
95
- topic: topic
96
- };
97
- const statusId = nodes[i].nodeStatusUtils.setStatus({
98
- fill: 'yellow',
99
- shape: 'dot',
100
- text: 'Identify : 1'
101
- });
102
- setTimeout(() => {
103
- nodes[i].nodeStatusUtils.clearStatus(statusId);
104
- }, 3000);
105
- nodes[i].send([msg, msg]);
106
- }
107
- callback();
108
- };
109
- return {
110
- getOrCreate,
111
- onIdentify
112
- };
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
+ };
113
154
  };
155
+ module.exports = buildAccessoryUtils;
@@ -1,44 +1,87 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
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
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const logger_1 = require("@nrchkb/logger");
7
- const HostType_1 = __importDefault(require("../types/HostType"));
8
- module.exports = () => {
9
- const delayedPublish = (node) => {
10
- const log = (0, logger_1.logger)('NRCHKB', 'BridgeUtils', node.config.name, node);
11
- if (!node.hostNode.published) {
12
- if (node.publishTimers[node.hostNode.id] !== undefined) {
13
- clearTimeout(node.publishTimers[node.hostNode.id]);
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 canPublishHost = (node) => {
29
+ let hasPendingService = false;
30
+ node.RED.nodes.eachNode((currentNode) => {
31
+ if (hasPendingService) {
32
+ return;
33
+ }
34
+ if (currentNode.type !== "homekit-service" && currentNode.type !== "homekit-service2") {
35
+ return;
36
+ }
37
+ const serviceNode = node.RED.nodes.getNode(currentNode.id);
38
+ if (serviceNode?.hostNode?.id === node.hostNode.id && !serviceNode.configured) {
39
+ hasPendingService = true;
40
+ }
41
+ });
42
+ return !hasPendingService;
43
+ };
44
+ const delayedPublish = (node) => {
45
+ const log = (0, import_logger.logger)("NRCHKB", "BridgeUtils", node.config.name, node);
46
+ if (!node.hostNode.published) {
47
+ if (node.publishTimers[node.hostNode.id] !== void 0) {
48
+ clearTimeout(node.publishTimers[node.hostNode.id]);
49
+ }
50
+ const hostTypeName = node.hostNode.hostType == import_HostType.default.BRIDGE ? "Bridge" : "Standalone Accessory";
51
+ const tryPublish = () => {
52
+ try {
53
+ if (!node.hostNode.published) {
54
+ if (!canPublishHost(node)) {
55
+ node.publishTimers[node.hostNode.id] = setTimeout(
56
+ tryPublish,
57
+ PUBLISH_CHECK_INTERVAL_MS
58
+ );
59
+ return;
14
60
  }
15
- const hostTypeName = node.hostNode.hostType == HostType_1.default.BRIDGE
16
- ? 'Bridge'
17
- : 'Standalone Accessory';
18
- node.publishTimers[node.hostNode.id] = setTimeout(() => {
19
- try {
20
- if (!node.hostNode.published) {
21
- const published = node.hostNode.publish();
22
- if (published) {
23
- log.debug(`${hostTypeName} published`);
24
- }
25
- else {
26
- log.error(`${hostTypeName} not published`);
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);
61
+ const published = node.hostNode.publish();
62
+ if (published) {
63
+ log.debug(`${hostTypeName} published`);
64
+ } else {
65
+ log.error(`${hostTypeName} not published`);
66
+ }
67
+ }
68
+ } catch (error) {
69
+ log.error(`${hostTypeName} publish failed due to ${error}`);
70
+ node.nodeStatusUtils.setStatus({
71
+ fill: "red",
72
+ shape: "ring",
73
+ text: `Error while publishing ${hostTypeName}`
74
+ });
39
75
  }
40
- };
41
- return {
42
- delayedPublish: delayedPublish
43
- };
76
+ };
77
+ node.publishTimers[node.hostNode.id] = setTimeout(
78
+ tryPublish,
79
+ PUBLISH_CHECK_INTERVAL_MS
80
+ );
81
+ }
82
+ };
83
+ return {
84
+ delayedPublish
85
+ };
44
86
  };
87
+ module.exports = buildBridgeUtils;
@@ -1,51 +1,7 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const hap_nodejs_1 = require("@homebridge/hap-nodejs");
4
- const logger_1 = require("@nrchkb/logger");
5
- module.exports = (node) => {
6
- const log = (0, logger_1.logger)('NRCHKB', 'CharacteristicUtils', node.config.name, node);
7
- const ServiceUtils = require('./ServiceUtils')(node);
8
- const load = (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 (!Object.hasOwn(characteristicProperties, 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 = (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.forEach((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
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const hap_nodejs_1 = require("@homebridge/hap-nodejs");
4
- const logger_1 = require("@nrchkb/logger");
5
- module.exports = (node) => {
6
- const log = (0, logger_1.logger)('NRCHKB', 'CharacteristicUtils', node.config.name, node);
7
- const ServiceUtils = require('./ServiceUtils2')(node);
8
- const load = (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 (!Object.hasOwn(characteristicProperties, 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 = (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.forEach((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;