matterbridge 3.4.3-dev-20251209-e6cb85f → 3.4.3

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 (324) hide show
  1. package/README.md +2 -3
  2. package/dist/broadcastServer.d.ts +144 -0
  3. package/dist/broadcastServer.d.ts.map +1 -0
  4. package/dist/broadcastServer.js +119 -0
  5. package/dist/broadcastServer.js.map +1 -0
  6. package/dist/broadcastServerTypes.d.ts +841 -0
  7. package/dist/broadcastServerTypes.d.ts.map +1 -0
  8. package/dist/broadcastServerTypes.js +24 -0
  9. package/dist/broadcastServerTypes.js.map +1 -0
  10. package/dist/cli.d.ts +30 -0
  11. package/dist/cli.d.ts.map +1 -0
  12. package/dist/cli.js +97 -1
  13. package/dist/cli.js.map +1 -0
  14. package/dist/cliEmitter.d.ts +50 -0
  15. package/dist/cliEmitter.d.ts.map +1 -0
  16. package/dist/cliEmitter.js +37 -0
  17. package/dist/cliEmitter.js.map +1 -0
  18. package/dist/cliHistory.d.ts +48 -0
  19. package/dist/cliHistory.d.ts.map +1 -0
  20. package/dist/cliHistory.js +38 -0
  21. package/dist/cliHistory.js.map +1 -0
  22. package/dist/clusters/export.d.ts +2 -0
  23. package/dist/clusters/export.d.ts.map +1 -0
  24. package/dist/clusters/export.js +2 -0
  25. package/dist/clusters/export.js.map +1 -0
  26. package/dist/deviceManager.d.ts +135 -0
  27. package/dist/deviceManager.d.ts.map +1 -0
  28. package/dist/deviceManager.js +113 -1
  29. package/dist/deviceManager.js.map +1 -0
  30. package/dist/devices/airConditioner.d.ts +98 -0
  31. package/dist/devices/airConditioner.d.ts.map +1 -0
  32. package/dist/devices/airConditioner.js +57 -0
  33. package/dist/devices/airConditioner.js.map +1 -0
  34. package/dist/devices/batteryStorage.d.ts +48 -0
  35. package/dist/devices/batteryStorage.d.ts.map +1 -0
  36. package/dist/devices/batteryStorage.js +48 -1
  37. package/dist/devices/batteryStorage.js.map +1 -0
  38. package/dist/devices/cooktop.d.ts +61 -0
  39. package/dist/devices/cooktop.d.ts.map +1 -0
  40. package/dist/devices/cooktop.js +56 -0
  41. package/dist/devices/cooktop.js.map +1 -0
  42. package/dist/devices/dishwasher.d.ts +71 -0
  43. package/dist/devices/dishwasher.d.ts.map +1 -0
  44. package/dist/devices/dishwasher.js +57 -0
  45. package/dist/devices/dishwasher.js.map +1 -0
  46. package/dist/devices/evse.d.ts +76 -0
  47. package/dist/devices/evse.d.ts.map +1 -0
  48. package/dist/devices/evse.js +74 -10
  49. package/dist/devices/evse.js.map +1 -0
  50. package/dist/devices/export.d.ts +17 -0
  51. package/dist/devices/export.d.ts.map +1 -0
  52. package/dist/devices/export.js +5 -0
  53. package/dist/devices/export.js.map +1 -0
  54. package/dist/devices/extractorHood.d.ts +46 -0
  55. package/dist/devices/extractorHood.d.ts.map +1 -0
  56. package/dist/devices/extractorHood.js +43 -0
  57. package/dist/devices/extractorHood.js.map +1 -0
  58. package/dist/devices/heatPump.d.ts +47 -0
  59. package/dist/devices/heatPump.d.ts.map +1 -0
  60. package/dist/devices/heatPump.js +50 -2
  61. package/dist/devices/heatPump.js.map +1 -0
  62. package/dist/devices/laundryDryer.d.ts +67 -0
  63. package/dist/devices/laundryDryer.d.ts.map +1 -0
  64. package/dist/devices/laundryDryer.js +62 -3
  65. package/dist/devices/laundryDryer.js.map +1 -0
  66. package/dist/devices/laundryWasher.d.ts +81 -0
  67. package/dist/devices/laundryWasher.d.ts.map +1 -0
  68. package/dist/devices/laundryWasher.js +70 -4
  69. package/dist/devices/laundryWasher.js.map +1 -0
  70. package/dist/devices/microwaveOven.d.ts +168 -0
  71. package/dist/devices/microwaveOven.d.ts.map +1 -0
  72. package/dist/devices/microwaveOven.js +88 -5
  73. package/dist/devices/microwaveOven.js.map +1 -0
  74. package/dist/devices/oven.d.ts +105 -0
  75. package/dist/devices/oven.d.ts.map +1 -0
  76. package/dist/devices/oven.js +85 -0
  77. package/dist/devices/oven.js.map +1 -0
  78. package/dist/devices/refrigerator.d.ts +118 -0
  79. package/dist/devices/refrigerator.d.ts.map +1 -0
  80. package/dist/devices/refrigerator.js +102 -0
  81. package/dist/devices/refrigerator.js.map +1 -0
  82. package/dist/devices/roboticVacuumCleaner.d.ts +112 -0
  83. package/dist/devices/roboticVacuumCleaner.d.ts.map +1 -0
  84. package/dist/devices/roboticVacuumCleaner.js +100 -9
  85. package/dist/devices/roboticVacuumCleaner.js.map +1 -0
  86. package/dist/devices/solarPower.d.ts +40 -0
  87. package/dist/devices/solarPower.d.ts.map +1 -0
  88. package/dist/devices/solarPower.js +38 -0
  89. package/dist/devices/solarPower.js.map +1 -0
  90. package/dist/devices/speaker.d.ts +87 -0
  91. package/dist/devices/speaker.d.ts.map +1 -0
  92. package/dist/devices/speaker.js +84 -0
  93. package/dist/devices/speaker.js.map +1 -0
  94. package/dist/devices/temperatureControl.d.ts +166 -0
  95. package/dist/devices/temperatureControl.d.ts.map +1 -0
  96. package/dist/devices/temperatureControl.js +24 -3
  97. package/dist/devices/temperatureControl.js.map +1 -0
  98. package/dist/devices/waterHeater.d.ts +111 -0
  99. package/dist/devices/waterHeater.d.ts.map +1 -0
  100. package/dist/devices/waterHeater.js +82 -2
  101. package/dist/devices/waterHeater.js.map +1 -0
  102. package/dist/dgram/coap.d.ts +205 -0
  103. package/dist/dgram/coap.d.ts.map +1 -0
  104. package/dist/dgram/coap.js +126 -13
  105. package/dist/dgram/coap.js.map +1 -0
  106. package/dist/dgram/dgram.d.ts +141 -0
  107. package/dist/dgram/dgram.d.ts.map +1 -0
  108. package/dist/dgram/dgram.js +114 -2
  109. package/dist/dgram/dgram.js.map +1 -0
  110. package/dist/dgram/mb_coap.d.ts +24 -0
  111. package/dist/dgram/mb_coap.d.ts.map +1 -0
  112. package/dist/dgram/mb_coap.js +41 -3
  113. package/dist/dgram/mb_coap.js.map +1 -0
  114. package/dist/dgram/mb_mdns.d.ts +24 -0
  115. package/dist/dgram/mb_mdns.d.ts.map +1 -0
  116. package/dist/dgram/mb_mdns.js +80 -15
  117. package/dist/dgram/mb_mdns.js.map +1 -0
  118. package/dist/dgram/mdns.d.ts +290 -0
  119. package/dist/dgram/mdns.d.ts.map +1 -0
  120. package/dist/dgram/mdns.js +299 -137
  121. package/dist/dgram/mdns.js.map +1 -0
  122. package/dist/dgram/multicast.d.ts +67 -0
  123. package/dist/dgram/multicast.d.ts.map +1 -0
  124. package/dist/dgram/multicast.js +62 -1
  125. package/dist/dgram/multicast.js.map +1 -0
  126. package/dist/dgram/unicast.d.ts +56 -0
  127. package/dist/dgram/unicast.d.ts.map +1 -0
  128. package/dist/dgram/unicast.js +54 -0
  129. package/dist/dgram/unicast.js.map +1 -0
  130. package/dist/frontend.d.ts +238 -0
  131. package/dist/frontend.d.ts.map +1 -0
  132. package/dist/frontend.js +455 -35
  133. package/dist/frontend.js.map +1 -0
  134. package/dist/frontendTypes.d.ts +529 -0
  135. package/dist/frontendTypes.d.ts.map +1 -0
  136. package/dist/frontendTypes.js +45 -0
  137. package/dist/frontendTypes.js.map +1 -0
  138. package/dist/helpers.d.ts +48 -0
  139. package/dist/helpers.d.ts.map +1 -0
  140. package/dist/helpers.js +53 -0
  141. package/dist/helpers.js.map +1 -0
  142. package/dist/index.d.ts +34 -0
  143. package/dist/index.d.ts.map +1 -0
  144. package/dist/index.js +25 -0
  145. package/dist/index.js.map +1 -0
  146. package/dist/jestutils/export.d.ts +2 -0
  147. package/dist/jestutils/export.d.ts.map +1 -0
  148. package/dist/jestutils/export.js +1 -0
  149. package/dist/jestutils/export.js.map +1 -0
  150. package/dist/jestutils/jestHelpers.d.ts +345 -0
  151. package/dist/jestutils/jestHelpers.d.ts.map +1 -0
  152. package/dist/jestutils/jestHelpers.js +371 -14
  153. package/dist/jestutils/jestHelpers.js.map +1 -0
  154. package/dist/logger/export.d.ts +2 -0
  155. package/dist/logger/export.d.ts.map +1 -0
  156. package/dist/logger/export.js +1 -0
  157. package/dist/logger/export.js.map +1 -0
  158. package/dist/matter/behaviors.d.ts +2 -0
  159. package/dist/matter/behaviors.d.ts.map +1 -0
  160. package/dist/matter/behaviors.js +2 -0
  161. package/dist/matter/behaviors.js.map +1 -0
  162. package/dist/matter/clusters.d.ts +2 -0
  163. package/dist/matter/clusters.d.ts.map +1 -0
  164. package/dist/matter/clusters.js +2 -0
  165. package/dist/matter/clusters.js.map +1 -0
  166. package/dist/matter/devices.d.ts +2 -0
  167. package/dist/matter/devices.d.ts.map +1 -0
  168. package/dist/matter/devices.js +2 -0
  169. package/dist/matter/devices.js.map +1 -0
  170. package/dist/matter/endpoints.d.ts +2 -0
  171. package/dist/matter/endpoints.d.ts.map +1 -0
  172. package/dist/matter/endpoints.js +2 -0
  173. package/dist/matter/endpoints.js.map +1 -0
  174. package/dist/matter/export.d.ts +5 -0
  175. package/dist/matter/export.d.ts.map +1 -0
  176. package/dist/matter/export.js +3 -0
  177. package/dist/matter/export.js.map +1 -0
  178. package/dist/matter/types.d.ts +3 -0
  179. package/dist/matter/types.d.ts.map +1 -0
  180. package/dist/matter/types.js +3 -0
  181. package/dist/matter/types.js.map +1 -0
  182. package/dist/matterNode.d.ts +342 -0
  183. package/dist/matterNode.d.ts.map +1 -0
  184. package/dist/matterNode.js +369 -8
  185. package/dist/matterNode.js.map +1 -0
  186. package/dist/matterbridge.d.ts +492 -0
  187. package/dist/matterbridge.d.ts.map +1 -0
  188. package/dist/matterbridge.js +811 -46
  189. package/dist/matterbridge.js.map +1 -0
  190. package/dist/matterbridgeAccessoryPlatform.d.ts +41 -0
  191. package/dist/matterbridgeAccessoryPlatform.d.ts.map +1 -0
  192. package/dist/matterbridgeAccessoryPlatform.js +38 -0
  193. package/dist/matterbridgeAccessoryPlatform.js.map +1 -0
  194. package/dist/matterbridgeBehaviors.d.ts +2404 -0
  195. package/dist/matterbridgeBehaviors.d.ts.map +1 -0
  196. package/dist/matterbridgeBehaviors.js +68 -5
  197. package/dist/matterbridgeBehaviors.js.map +1 -0
  198. package/dist/matterbridgeDeviceTypes.d.ts +698 -0
  199. package/dist/matterbridgeDeviceTypes.d.ts.map +1 -0
  200. package/dist/matterbridgeDeviceTypes.js +635 -14
  201. package/dist/matterbridgeDeviceTypes.js.map +1 -0
  202. package/dist/matterbridgeDynamicPlatform.d.ts +41 -0
  203. package/dist/matterbridgeDynamicPlatform.d.ts.map +1 -0
  204. package/dist/matterbridgeDynamicPlatform.js +38 -0
  205. package/dist/matterbridgeDynamicPlatform.js.map +1 -0
  206. package/dist/matterbridgeEndpoint.d.ts +1507 -0
  207. package/dist/matterbridgeEndpoint.d.ts.map +1 -0
  208. package/dist/matterbridgeEndpoint.js +1444 -53
  209. package/dist/matterbridgeEndpoint.js.map +1 -0
  210. package/dist/matterbridgeEndpointHelpers.d.ts +787 -0
  211. package/dist/matterbridgeEndpointHelpers.d.ts.map +1 -0
  212. package/dist/matterbridgeEndpointHelpers.js +483 -20
  213. package/dist/matterbridgeEndpointHelpers.js.map +1 -0
  214. package/dist/matterbridgeEndpointTypes.d.ts +166 -0
  215. package/dist/matterbridgeEndpointTypes.d.ts.map +1 -0
  216. package/dist/matterbridgeEndpointTypes.js +25 -0
  217. package/dist/matterbridgeEndpointTypes.js.map +1 -0
  218. package/dist/matterbridgePlatform.d.ts +539 -0
  219. package/dist/matterbridgePlatform.d.ts.map +1 -0
  220. package/dist/matterbridgePlatform.js +451 -1
  221. package/dist/matterbridgePlatform.js.map +1 -0
  222. package/dist/matterbridgeTypes.d.ts +251 -0
  223. package/dist/matterbridgeTypes.d.ts.map +1 -0
  224. package/dist/matterbridgeTypes.js +26 -0
  225. package/dist/matterbridgeTypes.js.map +1 -0
  226. package/dist/pluginManager.d.ts +372 -0
  227. package/dist/pluginManager.d.ts.map +1 -0
  228. package/dist/pluginManager.js +341 -5
  229. package/dist/pluginManager.js.map +1 -0
  230. package/dist/shelly.d.ts +181 -0
  231. package/dist/shelly.d.ts.map +1 -0
  232. package/dist/shelly.js +178 -7
  233. package/dist/shelly.js.map +1 -0
  234. package/dist/storage/export.d.ts +2 -0
  235. package/dist/storage/export.d.ts.map +1 -0
  236. package/dist/storage/export.js +1 -0
  237. package/dist/storage/export.js.map +1 -0
  238. package/dist/update.d.ts +84 -0
  239. package/dist/update.d.ts.map +1 -0
  240. package/dist/update.js +93 -1
  241. package/dist/update.js.map +1 -0
  242. package/dist/utils/colorUtils.d.ts +101 -0
  243. package/dist/utils/colorUtils.d.ts.map +1 -0
  244. package/dist/utils/colorUtils.js +97 -2
  245. package/dist/utils/colorUtils.js.map +1 -0
  246. package/dist/utils/commandLine.d.ts +66 -0
  247. package/dist/utils/commandLine.d.ts.map +1 -0
  248. package/dist/utils/commandLine.js +60 -0
  249. package/dist/utils/commandLine.js.map +1 -0
  250. package/dist/utils/copyDirectory.d.ts +35 -0
  251. package/dist/utils/copyDirectory.d.ts.map +1 -0
  252. package/dist/utils/copyDirectory.js +37 -0
  253. package/dist/utils/copyDirectory.js.map +1 -0
  254. package/dist/utils/createDirectory.d.ts +34 -0
  255. package/dist/utils/createDirectory.d.ts.map +1 -0
  256. package/dist/utils/createDirectory.js +33 -0
  257. package/dist/utils/createDirectory.js.map +1 -0
  258. package/dist/utils/createZip.d.ts +39 -0
  259. package/dist/utils/createZip.d.ts.map +1 -0
  260. package/dist/utils/createZip.js +47 -2
  261. package/dist/utils/createZip.js.map +1 -0
  262. package/dist/utils/deepCopy.d.ts +32 -0
  263. package/dist/utils/deepCopy.d.ts.map +1 -0
  264. package/dist/utils/deepCopy.js +39 -0
  265. package/dist/utils/deepCopy.js.map +1 -0
  266. package/dist/utils/deepEqual.d.ts +54 -0
  267. package/dist/utils/deepEqual.d.ts.map +1 -0
  268. package/dist/utils/deepEqual.js +72 -1
  269. package/dist/utils/deepEqual.js.map +1 -0
  270. package/dist/utils/error.d.ts +45 -0
  271. package/dist/utils/error.d.ts.map +1 -0
  272. package/dist/utils/error.js +42 -0
  273. package/dist/utils/error.js.map +1 -0
  274. package/dist/utils/export.d.ts +13 -0
  275. package/dist/utils/export.d.ts.map +1 -0
  276. package/dist/utils/export.js +1 -0
  277. package/dist/utils/export.js.map +1 -0
  278. package/dist/utils/format.d.ts +53 -0
  279. package/dist/utils/format.d.ts.map +1 -0
  280. package/dist/utils/format.js +49 -0
  281. package/dist/utils/format.js.map +1 -0
  282. package/dist/utils/hex.d.ts +89 -0
  283. package/dist/utils/hex.d.ts.map +1 -0
  284. package/dist/utils/hex.js +124 -0
  285. package/dist/utils/hex.js.map +1 -0
  286. package/dist/utils/inspector.d.ts +87 -0
  287. package/dist/utils/inspector.d.ts.map +1 -0
  288. package/dist/utils/inspector.js +69 -1
  289. package/dist/utils/inspector.js.map +1 -0
  290. package/dist/utils/isvalid.d.ts +103 -0
  291. package/dist/utils/isvalid.d.ts.map +1 -0
  292. package/dist/utils/isvalid.js +101 -0
  293. package/dist/utils/isvalid.js.map +1 -0
  294. package/dist/utils/network.d.ts +111 -0
  295. package/dist/utils/network.d.ts.map +1 -0
  296. package/dist/utils/network.js +96 -5
  297. package/dist/utils/network.js.map +1 -0
  298. package/dist/utils/spawn.d.ts +33 -0
  299. package/dist/utils/spawn.d.ts.map +1 -0
  300. package/dist/utils/spawn.js +71 -1
  301. package/dist/utils/spawn.js.map +1 -0
  302. package/dist/utils/tracker.d.ts +108 -0
  303. package/dist/utils/tracker.d.ts.map +1 -0
  304. package/dist/utils/tracker.js +64 -1
  305. package/dist/utils/tracker.js.map +1 -0
  306. package/dist/utils/wait.d.ts +54 -0
  307. package/dist/utils/wait.d.ts.map +1 -0
  308. package/dist/utils/wait.js +60 -8
  309. package/dist/utils/wait.js.map +1 -0
  310. package/dist/workerGlobalPrefix.d.ts +25 -0
  311. package/dist/workerGlobalPrefix.d.ts.map +1 -0
  312. package/dist/workerGlobalPrefix.js +37 -5
  313. package/dist/workerGlobalPrefix.js.map +1 -0
  314. package/dist/workerTypes.d.ts +52 -0
  315. package/dist/workerTypes.d.ts.map +1 -0
  316. package/dist/workerTypes.js +24 -0
  317. package/dist/workerTypes.js.map +1 -0
  318. package/dist/workers.d.ts +69 -0
  319. package/dist/workers.d.ts.map +1 -0
  320. package/dist/workers.js +68 -4
  321. package/dist/workers.js.map +1 -0
  322. package/npm-shrinkwrap.json +2 -2
  323. package/package.json +2 -1
  324. package/scripts/data_model.mjs +2058 -0
@@ -1,7 +1,34 @@
1
+ /**
2
+ * This file contains the class MatterbridgePlatform.
3
+ *
4
+ * @file matterbridgePlatform.ts
5
+ * @author Luca Liguori
6
+ * @created 2024-03-21
7
+ * @version 1.6.1
8
+ * @license Apache-2.0
9
+ *
10
+ * Copyright 2024, 2025, 2026 Luca Liguori.
11
+ *
12
+ * Licensed under the Apache License, Version 2.0 (the "License");
13
+ * you may not use this file except in compliance with the License.
14
+ * You may obtain a copy of the License at
15
+ *
16
+ * http://www.apache.org/licenses/LICENSE-2.0
17
+ *
18
+ * Unless required by applicable law or agreed to in writing, software
19
+ * distributed under the License is distributed on an "AS IS" BASIS,
20
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21
+ * See the License for the specific language governing permissions and
22
+ * limitations under the License.
23
+ */
24
+ // eslint-disable-next-line no-console
1
25
  if (process.argv.includes('--loader') || process.argv.includes('-loader'))
2
26
  console.log('\u001B[32mMatterbridgePlatform loaded.\u001B[40;0m');
27
+ // Node.js modules
3
28
  import path from 'node:path';
29
+ // Node AnsiLogger module
4
30
  import { CYAN, db, er, nf, wr } from 'node-ansi-logger';
31
+ // Node Storage module
5
32
  import { NodeStorageManager } from 'node-persist-manager';
6
33
  import { Descriptor } from '@matter/types/clusters/descriptor';
7
34
  import { BridgedDeviceBasicInformation } from '@matter/types/clusters/bridged-device-basic-information';
@@ -10,34 +37,68 @@ import { bridgedNode } from './matterbridgeDeviceTypes.js';
10
37
  import { isValidArray, isValidObject, isValidString } from './utils/isvalid.js';
11
38
  import { hasParameter } from './utils/commandLine.js';
12
39
  import { BroadcastServer } from './broadcastServer.js';
40
+ /**
41
+ * Represents the base Matterbridge platform. It is extended by the MatterbridgeAccessoryPlatform and MatterbridgeServicePlatform classes.
42
+ *
43
+ */
13
44
  export class MatterbridgePlatform {
45
+ /** The PlatformMatterbridge instance of this Platform. */
14
46
  matterbridge;
47
+ /** The logger instance for this platform. Created by the PluginManager.load() method. */
15
48
  log;
49
+ /** The configuration for this platform. Set by the PluginManager.load() method using the stored config file. */
16
50
  config;
51
+ /** The name of the platform. Set by the PluginManager.load() method using the package.json name value. */
17
52
  name = '';
53
+ /** The type of the platform. Set by the extending classes: MatterbridgeDynamicPlatform and MatterbridgeAccessoryPlatform */
18
54
  type = 'AnyPlatform';
55
+ /** The version of the platform. Set by the PluginManager.load() method using the package.json version value. */
19
56
  version = '1.0.0';
57
+ /** Platform node storage manager created in the matterbridgeDirectory with the plugin name. */
20
58
  #storage;
59
+ /** Platform context in the storage of matterbridgeDirectory. Use await platform.ready to access it early. */
21
60
  context;
61
+ /** Indicates whether the platform is is fully initialized (including context and selects). */
22
62
  isReady = false;
63
+ /** Indicates whether the platform has been loaded. */
23
64
  isLoaded = false;
65
+ /** Indicates whether the platform has been started. */
24
66
  isStarted = false;
67
+ /** Indicates whether the platform has been configured. */
25
68
  isConfigured = false;
69
+ /** Indicates whether the platform is shutting down. */
26
70
  isShuttingDown = false;
71
+ // Device and entity select in the plugin config UI
27
72
  #selectDevices = new Map();
28
73
  #selectEntities = new Map();
74
+ // Promises for platform initialization. They are grouped in MatterbridgePlatform.ready with Promise.all.
29
75
  #contextReady;
30
76
  #selectDeviceContextReady;
31
77
  #selectEntityContextReady;
78
+ /** The ready promise for the platform, which resolves when the platform is fully initialized (including context and selects). Await platform.ready if you access the platform context or select early. */
32
79
  ready;
80
+ /** Registered MatterbridgeEndpoint map keyed by uniqueId */
33
81
  #registeredEndpoints = new Map();
82
+ /** Broadcast server */
34
83
  #server;
35
84
  #debug = hasParameter('debug') || hasParameter('verbose');
36
85
  #verbose = hasParameter('verbose');
86
+ /** MatterNode helper injected by the PluginManager.load() method */
37
87
  #addBridgedEndpoint;
88
+ /** MatterNode helper injected by the PluginManager.load() method */
38
89
  #removeBridgedEndpoint;
90
+ /** MatterNode helper injected by the PluginManager.load() method */
39
91
  #removeAllBridgedEndpoints;
92
+ /** MatterNode helper injected by the PluginManager.load() method */
40
93
  #addVirtualEndpoint;
94
+ /**
95
+ * MatterNode helpers injected by the PluginManager.load() method
96
+ *
97
+ * @param {(pluginName: string, device: MatterbridgeEndpoint) => Promise<void>} addBridgedEndpoint - Function to add a bridged endpoint.
98
+ * @param {(pluginName: string, device: MatterbridgeEndpoint) => Promise<void>} removeBridgedEndpoint - Function to remove a bridged endpoint.
99
+ * @param {(pluginName: string, delay?: number) => Promise<void>} removeAllBridgedEndpoints - Function to remove all bridged endpoints.
100
+ * @param {(pluginName: string, name: string, type: 'light' | 'outlet' | 'switch' | 'mounted_switch', callback: () => Promise<void>) => Promise<boolean>} addVirtualEndpoint - Function to add a virtual endpoint.
101
+ */
41
102
  setMatterNode = (addBridgedEndpoint, removeBridgedEndpoint, removeAllBridgedEndpoints, addVirtualEndpoint) => {
42
103
  this.#addBridgedEndpoint = addBridgedEndpoint;
43
104
  this.#removeBridgedEndpoint = removeBridgedEndpoint;
@@ -45,6 +106,15 @@ export class MatterbridgePlatform {
45
106
  this.#addVirtualEndpoint = addVirtualEndpoint;
46
107
  this.setMatterNode = undefined;
47
108
  };
109
+ /**
110
+ * Creates an instance of the base MatterbridgePlatform.
111
+ * Each plugin must extend the MatterbridgeDynamicPlatform or MatterbridgeAccessoryPlatform class.
112
+ * MatterbridgePlatform cannot be instantiated directly, it can only be extended by the MatterbridgeDynamicPlatform or MatterbridgeAccessoryPlatform class.
113
+ *
114
+ * @param {PlatformMatterbridge} matterbridge - The PlatformMatterbridge instance.
115
+ * @param {AnsiLogger} log - The logger instance.
116
+ * @param {PlatformConfig} config - The platform configuration.
117
+ */
48
118
  constructor(matterbridge, log, config) {
49
119
  this.matterbridge = matterbridge;
50
120
  this.log = log;
@@ -54,6 +124,7 @@ export class MatterbridgePlatform {
54
124
  this.log.debug(`Creating MatterbridgePlatform for plugin ${this.config.name}`);
55
125
  if (this.#verbose)
56
126
  this.log.debug(`Creating MatterbridgePlatform for plugin ${this.config.name} with config:\n${JSON.stringify(this.config, null, 2)}\n`);
127
+ // create the NodeStorageManager for the plugin platform
57
128
  if (!isValidString(this.config.name, 1)) {
58
129
  this.#server.close();
59
130
  throw new Error('Platform: the plugin name is missing or invalid.');
@@ -66,12 +137,14 @@ export class MatterbridgePlatform {
66
137
  logging: false,
67
138
  forgiveParseErrors: true,
68
139
  });
140
+ // create the context storage for the plugin platform
69
141
  this.log.debug(`Creating context for plugin ${this.config.name}`);
70
142
  this.#contextReady = this.#storage.createStorage('context').then((context) => {
71
143
  this.context = context;
72
144
  this.log.debug(`Created context for plugin ${this.config.name}`);
73
145
  return;
74
146
  });
147
+ // create the selectDevice storage for the plugin platform
75
148
  this.log.debug(`Loading selectDevice for plugin ${this.config.name}`);
76
149
  this.#selectDeviceContextReady = this.#storage.createStorage('selectDevice').then(async (context) => {
77
150
  const selectDevice = await context.get('selectDevice', []);
@@ -80,6 +153,7 @@ export class MatterbridgePlatform {
80
153
  this.log.debug(`Loaded ${this.#selectDevices.size} selectDevice for plugin ${this.config.name}`);
81
154
  return;
82
155
  });
156
+ // create the selectEntity storage for the plugin platform
83
157
  this.log.debug(`Loading selectEntity for plugin ${this.config.name}`);
84
158
  this.#selectEntityContextReady = this.#storage.createStorage('selectEntity').then(async (context) => {
85
159
  const selectEntity = await context.get('selectEntity', []);
@@ -88,98 +162,300 @@ export class MatterbridgePlatform {
88
162
  this.log.debug(`Loaded ${this.#selectEntities.size} selectEntity for plugin ${this.config.name}`);
89
163
  return;
90
164
  });
165
+ // Create the `ready` promise for the platform
91
166
  this.ready = Promise.all([this.#contextReady, this.#selectDeviceContextReady, this.#selectEntityContextReady]).then(() => {
92
167
  this.log.debug(`MatterbridgePlatform for plugin ${this.config.name} is fully initialized`);
93
168
  this.isReady = true;
94
169
  return;
95
170
  });
96
171
  }
172
+ /**
173
+ * Destroys the platform, cleaning up memory, closing storage and broadcast server.
174
+ */
97
175
  async destroy() {
98
176
  if (this.#verbose)
99
177
  this.log.debug(`Destroying MatterbridgePlatform for plugin ${this.config.name}`);
178
+ // Cleanup memory
100
179
  this.#selectDevices.clear();
101
180
  this.#selectEntities.clear();
102
181
  this.#registeredEndpoints.clear();
182
+ // Close the storage
103
183
  await this.context?.close();
104
184
  this.context = undefined;
105
185
  await this.#storage?.close();
186
+ // Close the broadcast server
106
187
  this.#server.close();
107
188
  if (this.#verbose)
108
189
  this.log.debug(`Destroyed MatterbridgePlatform for plugin ${this.config.name}`);
109
190
  this.isReady = false;
110
191
  }
192
+ /**
193
+ * This method shall be overridden in the extended class.
194
+ * It is called when the platform is started.
195
+ * Use this method to create the MatterbridgeEndpoints and call this.registerDevice().
196
+ *
197
+ * @param {string} [reason] - The reason for starting.
198
+ * @throws {Error} - Throws an error if the method is not overridden.
199
+ */
111
200
  async onStart(reason) {
112
201
  this.log.error('Plugins must override onStart.', reason);
113
202
  throw new Error('Plugins must override onStart.');
114
203
  }
204
+ /**
205
+ * This method can be overridden in the extended class. In this case always call super.onConfigure() to save the select and run checkEndpointNumbers().
206
+ * It is called after the platform has started.
207
+ * Use this method to perform any configuration of your devices and to override the value of the attributes that are persistent and stored in the
208
+ * matter storage (i.e. the onOff attribute of the OnOff cluster).
209
+ */
115
210
  async onConfigure() {
116
211
  this.log.debug(`Configuring platform ${this.name}`);
212
+ // Save the selectDevice and selectEntity
117
213
  await this.saveSelects();
214
+ // Check and update the endpoint numbers
118
215
  await this.checkEndpointNumbers();
119
216
  }
217
+ /**
218
+ * This method can be overridden in the extended class. In this case always call super.onShutdown() to save the selects, run checkEndpointNumbers() and cleanup memory.
219
+ * It is called when the platform is shutting down.
220
+ * Use this method to clean up any resources you used in the constructor or onStart.
221
+ *
222
+ * @param {string} [reason] - The reason for shutting down.
223
+ */
120
224
  async onShutdown(reason) {
121
225
  this.log.debug(`Shutting down platform ${this.name}`, reason);
226
+ // Save the selectDevice and selectEntity
122
227
  await this.saveSelects();
228
+ // Check and update the endpoint numbers
123
229
  await this.checkEndpointNumbers();
230
+ // Cleanup memory and close storage and broadcast server
124
231
  await this.destroy();
125
232
  }
233
+ /**
234
+ * Called when the logger level is changed.
235
+ *
236
+ * @param {LogLevel} logLevel The new logger level.
237
+ */
126
238
  async onChangeLoggerLevel(logLevel) {
127
239
  this.log.debug(`The plugin doesn't override onChangeLoggerLevel. Logger level set to: ${logLevel}`);
128
240
  }
241
+ /**
242
+ * Called when a plugin config includes an action button or an action button with text field.
243
+ *
244
+ * @param {string} action The action triggered by the button in plugin config.
245
+ * @param {string} value The value of the field of the action button.
246
+ * @param {string} id The id of the schema associated with the action.
247
+ * @param {PlatformConfig} formData The changed form data of the plugin.
248
+ *
249
+ * @remarks
250
+ * This method can be overridden in the extended class.
251
+ *
252
+ * @example
253
+ * Use this method to handle the action defined in the plugin schema:
254
+ * ```json
255
+ * "addDevice": {
256
+ * "description": "Manually add a device that has not been discovered with mdns:",
257
+ * "type": "boolean",
258
+ * "buttonText": "ADD", // The text on the button. This is used when the action doesn't include a text field.
259
+ * "buttonField": "ADD", // The text on the button. This is used when the action includes a text field.
260
+ * "buttonClose": false, // optional, default is false. When true, the dialog will close after the action is sent.
261
+ * "buttonSave": false, // optional, default is false. When true, the dialog will close and trigger the restart required after the action is sent.
262
+ * "textPlaceholder": "Enter the device IP address", // optional: the placeholder text for the text field.
263
+ * "default": false
264
+ * },
265
+ * ```
266
+ */
129
267
  async onAction(action, value, id, formData) {
130
268
  this.log.debug(`The plugin ${CYAN}${this.name}${db} doesn't override onAction. Received action ${CYAN}${action}${db}${value ? ' with ' + CYAN + value + db : ''} ${id ? ' for schema ' + CYAN + id + db : ''}`, formData);
131
269
  }
270
+ /**
271
+ * Called when the plugin config has been updated.
272
+ *
273
+ * @param {PlatformConfig} config The new plugin config.
274
+ */
132
275
  async onConfigChanged(config) {
133
276
  this.log.debug(`The plugin ${CYAN}${config.name}${db} doesn't override onConfigChanged. Received new config.`);
134
277
  }
278
+ /**
279
+ * Save the platform configuration to the platform config JSON.
280
+ *
281
+ * @param {PlatformConfig} [config] - The platform configuration to save.
282
+ * @returns {void}
283
+ */
135
284
  saveConfig(config) {
136
285
  this.#server.request({ type: 'plugins_saveconfigfromjson', src: 'platform', dst: 'plugins', params: { name: this.name, config } });
137
286
  }
287
+ /**
288
+ * Get the platform schema for the config editor. This will retrieve the schema from the Matterbridge plugin manager.
289
+ *
290
+ * @returns {Promise<PlatformSchema | undefined>} The platform schema.
291
+ */
138
292
  async getSchema() {
139
293
  return (await this.#server.fetch({ type: 'plugins_getschema', src: 'platform', dst: 'plugins', params: { name: this.name } })).result.schema;
140
294
  }
295
+ /**
296
+ * Set the platform schema for the config editor. This will update the schema in the Matterbridge plugin manager but will not change the schema file.
297
+ * It must be called from onStart() to update the schema in the plugin.
298
+ * Calling this method from the platform constructor will have no effect.
299
+ *
300
+ * @param {PlatformSchema} [schema] - The platform schema to set.
301
+ * @returns {void}
302
+ */
141
303
  setSchema(schema) {
142
304
  this.#server.request({ type: 'plugins_setschema', src: 'platform', dst: 'plugins', params: { name: this.name, schema } });
143
305
  }
306
+ /**
307
+ * Sends a restart required message to the frontend.
308
+ *
309
+ * @param {boolean} [snackbar] - If true, shows a snackbar notification. Default is true.
310
+ * @param {boolean} [fixed] - If true, shows a fixed notification. Default is false.
311
+ * @returns {void}
312
+ */
144
313
  wssSendRestartRequired(snackbar = true, fixed = false) {
145
314
  this.#server.request({ type: 'frontend_restartrequired', src: 'platform', dst: 'frontend', params: { snackbar, fixed } });
146
315
  }
316
+ /**
317
+ * Sends an open snackbar message to all connected clients.
318
+ *
319
+ * @param {string} message - The message to send.
320
+ * @param {number} timeout - The timeout in seconds for the snackbar message. Default is 5 seconds.
321
+ * @param {'info' | 'warning' | 'error' | 'success'} severity - The severity of the message.
322
+ * possible values are: 'info', 'warning', 'error', 'success'. Default is 'info'.
323
+ *
324
+ * @remarks
325
+ * If timeout is 0, the snackbar message will be displayed until closed by the user.
326
+ */
147
327
  wssSendSnackbarMessage(message, timeout, severity) {
148
328
  this.#server.request({ type: 'frontend_snackbarmessage', src: 'platform', dst: 'frontend', params: { message, timeout, severity } });
149
329
  }
330
+ /**
331
+ * Retrieves the number of devices registered with the platform.
332
+ *
333
+ * @returns {number} The number of registered devices.
334
+ */
150
335
  size() {
151
336
  return this.#registeredEndpoints.size;
152
337
  }
338
+ /**
339
+ * Retrieves the devices registered with the platform.
340
+ *
341
+ * @returns {MatterbridgeEndpoint[]} The registered devices.
342
+ */
153
343
  getDevices() {
154
344
  return Array.from(this.#registeredEndpoints.values());
155
345
  }
346
+ /**
347
+ * Retrieves a registered device by its name.
348
+ *
349
+ * @param {string} deviceName - The device name to search for.
350
+ * @returns {MatterbridgeEndpoint | undefined} The registered device or undefined if not found.
351
+ */
156
352
  getDeviceByName(deviceName) {
157
353
  return Array.from(this.#registeredEndpoints.values()).find((device) => device.deviceName === deviceName);
158
354
  }
355
+ /**
356
+ * Retrieves a registered device by its uniqueId.
357
+ *
358
+ * @param {string} uniqueId - The device unique ID to search for.
359
+ * @returns {MatterbridgeEndpoint | undefined} The registered device or undefined if not found.
360
+ */
159
361
  getDeviceByUniqueId(uniqueId) {
160
362
  return Array.from(this.#registeredEndpoints.values()).find((device) => device.uniqueId === uniqueId);
161
363
  }
364
+ /**
365
+ * Retrieves a registered device by its serialNumber.
366
+ *
367
+ * @param {string} serialNumber - The device serial number to search for.
368
+ * @returns {MatterbridgeEndpoint | undefined} The registered device or undefined if not found.
369
+ */
162
370
  getDeviceBySerialNumber(serialNumber) {
163
371
  return Array.from(this.#registeredEndpoints.values()).find((device) => device.serialNumber === serialNumber);
164
372
  }
373
+ /**
374
+ * Retrieves a registered device by its id.
375
+ *
376
+ * @param {string} id - The device id to search for.
377
+ * @returns {MatterbridgeEndpoint | undefined} The registered device or undefined if not found.
378
+ */
165
379
  getDeviceById(id) {
166
380
  return Array.from(this.#registeredEndpoints.values()).find((device) => device.maybeId === id);
167
381
  }
382
+ /**
383
+ * Retrieves a registered device by its originalId.
384
+ *
385
+ * @param {string} originalId - The device originalId to search for.
386
+ * @returns {MatterbridgeEndpoint | undefined} The registered device or undefined if not found.
387
+ */
168
388
  getDeviceByOriginalId(originalId) {
169
389
  return Array.from(this.#registeredEndpoints.values()).find((device) => device.originalId === originalId);
170
390
  }
391
+ /**
392
+ * Retrieves a registered device by its number.
393
+ *
394
+ * @param {EndpointNumber | number} number - The device number to search for.
395
+ * @returns {MatterbridgeEndpoint | undefined} The registered device or undefined if not found.
396
+ */
171
397
  getDeviceByNumber(number) {
172
398
  return Array.from(this.#registeredEndpoints.values()).find((device) => device.maybeNumber === number);
173
399
  }
400
+ /**
401
+ * Checks if a device with this name is already registered in the platform.
402
+ *
403
+ * @param {string} deviceName - The device name to check.
404
+ * @returns {boolean} True if the device is already registered, false otherwise.
405
+ */
174
406
  hasDeviceName(deviceName) {
175
407
  return Array.from(this.#registeredEndpoints.values()).find((device) => device.deviceName === deviceName) !== undefined;
176
- }
408
+ // return this.registeredEndpointsByName.has(deviceName);
409
+ }
410
+ /**
411
+ * Checks if a device with this uniqueId is already registered in the platform.
412
+ *
413
+ * @param {string} deviceUniqueId - The device unique ID to check.
414
+ * @returns {boolean} True if the device is already registered, false otherwise.
415
+ */
177
416
  hasDeviceUniqueId(deviceUniqueId) {
178
417
  return this.#registeredEndpoints.has(deviceUniqueId);
179
418
  }
419
+ /**
420
+ * Registers a virtual device with the Matterbridge platform.
421
+ * Virtual devices are only supported in bridge mode and childbridge mode with a DynamicPlatform.
422
+ *
423
+ * The virtual device is created as an instance of `Endpoint` with the provided device type.
424
+ * When the virtual device is turned on, the provided callback function is executed.
425
+ * The onOff state of the virtual device always reverts to false when the device is turned on.
426
+ *
427
+ * @param { string } name - The name of the virtual device.
428
+ * @param { 'light' | 'outlet' | 'switch' | 'mounted_switch' } type - The type of the virtual device.
429
+ * @param { () => Promise<void> } callback - The callback to call when the virtual device is turned on.
430
+ *
431
+ * @returns {Promise<boolean>} A promise that resolves to true if the virtual device was successfully registered, false otherwise.
432
+ *
433
+ * @remarks
434
+ * The virtual devices don't show up in the device list of the frontend.
435
+ * Type 'switch' is not supported by Alexa and 'mounted_switch' is not supported by Apple Home.
436
+ */
180
437
  async registerVirtualDevice(name, type, callback) {
181
438
  return (await this.#addVirtualEndpoint?.(this.name, name, type, callback)) ?? false;
182
439
  }
440
+ /**
441
+ * Registers a device with the Matterbridge platform and performs validation checks.
442
+ *
443
+ * This method also checks if the implementation called createDefaultBasicInformationClusterServer() instead of createDefaultBridgedDeviceBasicInformationClusterServer().
444
+ *
445
+ * This is correct with Accessory platforms so we check if we are running in bridge mode and add the bridgedNode and the BridgedDeviceBasicInformation cluster.
446
+ *
447
+ * If we are in bridge mode, we add the bridgedNode device type and the BridgedDeviceBasicInformation cluster.
448
+ *
449
+ * If we are in childbridge mode and the plugin is a 'DynamicPlatform', we add the bridgedNode device type and the BridgedDeviceBasicInformation cluster.
450
+ *
451
+ * if we are in childbridge mode and the plugin is a 'AccessoryPlatform', the device is not bridged so no action is taken.
452
+ *
453
+ * If the device.mode = 'server', the device is not bridged so no action is taken.
454
+ *
455
+ * If the device.mode = 'matter', the device is not bridged so no action is taken.
456
+ *
457
+ * @param {MatterbridgeEndpoint} device - The device to register.
458
+ */
183
459
  async registerDevice(device) {
184
460
  device.plugin = this.name;
185
461
  if (!device.uniqueId) {
@@ -201,7 +477,9 @@ export class MatterbridgePlatform {
201
477
  if (checkNotLatinCharacters(device.deviceName)) {
202
478
  this.log.debug(`Device with name ${CYAN}${device.deviceName}${db} has non latin characters.`);
203
479
  }
480
+ // Validate bridgedNode and BridgedDeviceBasicInformation cluster
204
481
  if (device.mode === undefined && (this.matterbridge.bridgeMode === 'bridge' || (this.matterbridge.bridgeMode === 'childbridge' && this.type === 'DynamicPlatform'))) {
482
+ // If the device is a bridged device, we add the bridgedNode to the deviceTypes map and to the Descriptor Cluster options
205
483
  if (!device.deviceTypes.has(bridgedNode.code)) {
206
484
  this.log.debug(`Device with name ${CYAN}${device.deviceName}${db} has no bridgedNode device type. Adding it...`);
207
485
  device.deviceTypes.set(bridgedNode.code, bridgedNode);
@@ -213,6 +491,7 @@ export class MatterbridgePlatform {
213
491
  }
214
492
  }
215
493
  }
494
+ // If the device is a bridged device, we add the BridgedDeviceBasicInformation cluster
216
495
  if (!device.hasClusterServer(BridgedDeviceBasicInformation.Cluster.id)) {
217
496
  this.log.debug(`Device with name ${CYAN}${device.deviceName}${db} has no BridgedDeviceBasicInformation cluster. Adding it...`);
218
497
  device.createDefaultBridgedDeviceBasicInformationClusterServer(device.deviceName, device.serialNumber, device.vendorId, device.vendorName, device.productName, device.softwareVersion, device.softwareVersionString, device.hardwareVersion, device.hardwareVersionString);
@@ -221,15 +500,33 @@ export class MatterbridgePlatform {
221
500
  await this.#addBridgedEndpoint?.(this.name, device);
222
501
  this.#registeredEndpoints.set(device.uniqueId, device);
223
502
  }
503
+ /**
504
+ * Unregisters a device registered with the Matterbridge platform.
505
+ *
506
+ * @param {MatterbridgeEndpoint} device - The device to unregister.
507
+ */
224
508
  async unregisterDevice(device) {
225
509
  await this.#removeBridgedEndpoint?.(this.name, device);
226
510
  if (device.uniqueId)
227
511
  this.#registeredEndpoints.delete(device.uniqueId);
228
512
  }
513
+ /**
514
+ * Unregisters all devices registered with the Matterbridge platform.
515
+ *
516
+ * @param {number} [delay] - The delay in milliseconds between removing each bridged endpoint (default: 0).
517
+ */
229
518
  async unregisterAllDevices(delay = 0) {
230
519
  await this.#removeAllBridgedEndpoints?.(this.name, delay);
231
520
  this.#registeredEndpoints.clear();
232
521
  }
522
+ /**
523
+ * Saves the select devices and entities to storage.
524
+ *
525
+ * This method saves the current state of `selectDevice` and `selectEntity` maps to their respective storage.
526
+ * It logs the number of items being saved and ensures that the storage is properly closed after saving.
527
+ *
528
+ * @returns {Promise<void>} A promise that resolves when the save operation is complete.
529
+ */
233
530
  async saveSelects() {
234
531
  if (this.#storage) {
235
532
  this.log.debug(`Saving ${this.#selectDevices.size} selectDevice...`);
@@ -242,19 +539,60 @@ export class MatterbridgePlatform {
242
539
  await selectEntity.close();
243
540
  }
244
541
  }
542
+ /**
543
+ * Clears all the select device and entity maps and saves the changes to the storage.
544
+ *
545
+ * @returns {void}
546
+ */
245
547
  async clearSelect() {
246
548
  this.#selectDevices.clear();
247
549
  this.#selectEntities.clear();
248
550
  await this.saveSelects();
249
551
  }
552
+ /**
553
+ * Clears the select for a single device and saves the changes to the storage.
554
+ *
555
+ * @param {string} serial - The serial of the device to clear.
556
+ * @returns {void}
557
+ */
250
558
  async clearDeviceSelect(serial) {
251
559
  this.#selectDevices.delete(serial);
252
560
  await this.saveSelects();
253
561
  }
562
+ /**
563
+ * Clears the select for a single entity and saves the changes to the storage.
564
+ *
565
+ * @param {string} name - The name of the entity to clear.
566
+ * @returns {void}
567
+ */
254
568
  async clearEntitySelect(name) {
255
569
  this.#selectEntities.delete(name);
256
570
  await this.saveSelects();
257
571
  }
572
+ /**
573
+ * Set the select device in the platform map.
574
+ *
575
+ * @param {string} serial - The serial number of the device.
576
+ * @param {string} name - The name of the device.
577
+ * @param {string} [configUrl] - The configuration URL of the device.
578
+ * @param {string} [icon] - The icon of the device: 'wifi', 'ble', 'hub'
579
+ * @param {Array<{ name: string; description: string; icon?: string }>} [entities] - The entities associated with the device.
580
+ * @returns {void}
581
+ *
582
+ * @remarks
583
+ * In the schema use selectFrom: 'serial' or 'name'
584
+ * ```json
585
+ * "whiteList": {
586
+ * "description": "Only the devices in the list will be exposed.",
587
+ * "type": "array",
588
+ * "items": {
589
+ * "type": "string"
590
+ * },
591
+ * "uniqueItems": true,
592
+ * "selectFrom": "name"
593
+ * },
594
+ * ```
595
+ */
258
596
  setSelectDevice(serial, name, configUrl, icon, entities) {
259
597
  const device = this.#selectDevices.get(serial);
260
598
  if (device) {
@@ -271,9 +609,44 @@ export class MatterbridgePlatform {
271
609
  this.#selectDevices.set(serial, { serial, name, configUrl, icon, entities });
272
610
  }
273
611
  }
612
+ /**
613
+ * Retrieve a select device by serial.
614
+ *
615
+ * @param {string} serial - The serial number of the device.
616
+ * @returns {{ serial: string; name: string; configUrl?: string; icon?: string; entities?: { name: string; description: string; icon?: string }[] } | undefined} The select device or undefined if not found.
617
+ */
274
618
  getSelectDevice(serial) {
275
619
  return this.#selectDevices.get(serial);
276
620
  }
621
+ /**
622
+ * Set the select device entity in the platform map.
623
+ *
624
+ * @param {string} serial - The serial number of the device.
625
+ * @param {string} entityName - The name of the entity.
626
+ * @param {string} entityDescription - The description of the entity.
627
+ * @param {string} [entityIcon] - The icon of the entity: 'wifi', 'ble', 'hub', 'component', 'matter'
628
+ * @returns {void}
629
+ *
630
+ * @remarks
631
+ * In the schema use selectDeviceEntityFrom: 'name' or 'description'
632
+ * ```json
633
+ * "deviceEntityBlackList": {
634
+ * "description": "List of entities not to be exposed for a single device.",
635
+ * "type": "object",
636
+ * "uniqueItems": true,
637
+ * "selectFrom": "name",
638
+ * "additionalProperties": {
639
+ * "description": "List of entities not to be exposed for this device.",
640
+ * "type": "array",
641
+ * "items": {
642
+ * "type": "string"
643
+ * },
644
+ * "uniqueItems": true,
645
+ * "selectDeviceEntityFrom": "name"
646
+ * }
647
+ * },
648
+ * ```
649
+ */
277
650
  setSelectDeviceEntity(serial, entityName, entityDescription, entityIcon) {
278
651
  const device = this.#selectDevices.get(serial);
279
652
  if (device) {
@@ -283,6 +656,11 @@ export class MatterbridgePlatform {
283
656
  device.entities.push({ name: entityName, description: entityDescription, icon: entityIcon });
284
657
  }
285
658
  }
659
+ /**
660
+ * Retrieves the select devices from the platform map.
661
+ *
662
+ * @returns {ApiSelectDevice[]} The selected devices array.
663
+ */
286
664
  getSelectDevices() {
287
665
  const selectDevices = [];
288
666
  for (const device of this.#selectDevices.values()) {
@@ -290,12 +668,45 @@ export class MatterbridgePlatform {
290
668
  }
291
669
  return selectDevices;
292
670
  }
671
+ /**
672
+ * Set the select entity in the platform map.
673
+ *
674
+ * @param {string} name - The entity name.
675
+ * @param {string} description - The entity description.
676
+ * @param {string} [icon] - The entity icon: 'wifi', 'ble', 'hub', 'component', 'matter'
677
+ * @returns {void}
678
+ *
679
+ * @remarks
680
+ * In the schema use selectEntityFrom: 'name' or 'description'
681
+ * ```json
682
+ * "entityBlackList": {
683
+ * "description": "The entities in the list will not be exposed.",
684
+ * "type": "array",
685
+ * "items": {
686
+ * "type": "string"
687
+ * },
688
+ * "uniqueItems": true,
689
+ * "selectEntityFrom": "name"
690
+ * },
691
+ * ```
692
+ */
293
693
  setSelectEntity(name, description, icon) {
294
694
  this.#selectEntities.set(name, { name, description, icon });
295
695
  }
696
+ /**
697
+ * Retrieve a select entity by name.
698
+ *
699
+ * @param {string} name - The name of the entity.
700
+ * @returns {{ name: string; description: string; icon?: string } | undefined} The select entity or undefined if not found.
701
+ */
296
702
  getSelectEntity(name) {
297
703
  return this.#selectEntities.get(name);
298
704
  }
705
+ /**
706
+ * Retrieve the select entities.
707
+ *
708
+ * @returns {ApiSelectEntity[]} The select entities array.
709
+ */
299
710
  getSelectEntities() {
300
711
  const selectEntities = [];
301
712
  for (const entity of this.#selectEntities.values()) {
@@ -303,6 +714,14 @@ export class MatterbridgePlatform {
303
714
  }
304
715
  return selectEntities;
305
716
  }
717
+ /**
718
+ * Verifies if the Matterbridge version meets the required version.
719
+ * If not, it destroys the platform cause the implementation may not call destroy().
720
+ *
721
+ * @param {string} requiredVersion - The required version to compare against.
722
+ * @param {boolean} [destroy] - Whether to destroy the platform if the version check fails. Default is true.
723
+ * @returns {boolean} True if the Matterbridge version meets or exceeds the required version, false otherwise.
724
+ */
306
725
  verifyMatterbridgeVersion(requiredVersion, destroy = true) {
307
726
  const compareVersions = (matterbridgeVersion, requiredVersion) => {
308
727
  const stripTag = (v) => {
@@ -330,6 +749,14 @@ export class MatterbridgePlatform {
330
749
  }
331
750
  return true;
332
751
  }
752
+ /**
753
+ * Validates if a device is allowed based on the whitelist and blacklist configurations.
754
+ * The blacklist has priority over the whitelist.
755
+ *
756
+ * @param {string | string[]} device - The device name(s) to validate.
757
+ * @param {boolean} [log] - Whether to log the validation result.
758
+ * @returns {boolean} - Returns true if the device is allowed, false otherwise.
759
+ */
333
760
  validateDevice(device, log = true) {
334
761
  if (!Array.isArray(device))
335
762
  device = [device];
@@ -359,6 +786,14 @@ export class MatterbridgePlatform {
359
786
  this.log.info(`Skipping device ${CYAN}${device.join(', ')}${nf} because not in whitelist`);
360
787
  return false;
361
788
  }
789
+ /**
790
+ * Validates if an entity is allowed based on the entity blacklist and device-entity blacklist configurations.
791
+ *
792
+ * @param {string} device - The device to which the entity belongs.
793
+ * @param {string} entity - The entity to validate.
794
+ * @param {boolean} [log] - Whether to log the validation result.
795
+ * @returns {boolean} - Returns true if the entity is allowed, false otherwise.
796
+ */
362
797
  validateEntity(device, entity, log = true) {
363
798
  if (isValidArray(this.config.entityBlackList, 1) && this.config.entityBlackList.find((e) => e === entity)) {
364
799
  if (log)
@@ -377,10 +812,24 @@ export class MatterbridgePlatform {
377
812
  }
378
813
  return true;
379
814
  }
815
+ /**
816
+ * Clears all stored endpoint numbers for checkEndpointNumbers().
817
+ *
818
+ * @returns {Promise<void>} A promise that resolves when the endpoint numbers have been cleared.
819
+ */
380
820
  async clearEndpointNumbers() {
381
821
  const context = await this.#storage.createStorage('endpointNumbers');
382
822
  await context.set('endpointMap', []);
383
823
  }
824
+ /**
825
+ * Checks and updates the endpoint numbers for Matterbridge devices.
826
+ *
827
+ * This method retrieves the list of Matterbridge devices and their child endpoints,
828
+ * compares their current endpoint numbers with the stored ones, and updates the storage
829
+ * if there are any changes. It logs the changes and updates the endpoint numbers accordingly.
830
+ *
831
+ * @returns {Promise<number>} The size of the updated endpoint map, or -1 if storage is not available.
832
+ */
384
833
  async checkEndpointNumbers() {
385
834
  this.log.debug('Checking endpoint numbers...');
386
835
  const context = await this.#storage.createStorage('endpointNumbers');
@@ -419,3 +868,4 @@ export class MatterbridgePlatform {
419
868
  return endpointMap.size;
420
869
  }
421
870
  }
871
+ //# sourceMappingURL=matterbridgePlatform.js.map