matterbridge 3.4.0 → 3.4.1-dev-20251127-826b2bf

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