@switchbot/homebridge-switchbot 5.0.0-beta.9 → 5.0.0-beta.91

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 (448) hide show
  1. package/.github/ISSUE_TEMPLATE/e2e-verification.md +36 -0
  2. package/.github/workflows/ci.yml +32 -0
  3. package/.github/workflows/manual-e2e.yml +115 -0
  4. package/.github/workflows/release.yml +0 -4
  5. package/CHANGELOG.md +35 -0
  6. package/E2E-VERIFICATION.md +121 -0
  7. package/MIGRATION.md +44 -0
  8. package/README.md +56 -3
  9. package/config.schema.json +91 -14787
  10. package/dist/deviceFactory.d.ts +13 -0
  11. package/dist/deviceFactory.d.ts.map +1 -0
  12. package/dist/deviceFactory.js +81 -0
  13. package/dist/deviceFactory.js.map +1 -0
  14. package/dist/devices/deviceBase.d.ts +50 -0
  15. package/dist/devices/deviceBase.d.ts.map +1 -0
  16. package/dist/devices/deviceBase.js +119 -0
  17. package/dist/devices/deviceBase.js.map +1 -0
  18. package/dist/devices/genericDevice.d.ts +283 -0
  19. package/dist/devices/genericDevice.d.ts.map +1 -0
  20. package/dist/devices/genericDevice.js +1035 -0
  21. package/dist/devices/genericDevice.js.map +1 -0
  22. package/dist/homebridge-ui/public/index.html +630 -246
  23. package/dist/homebridge-ui/server.d.ts +3 -1
  24. package/dist/homebridge-ui/server.d.ts.map +1 -1
  25. package/dist/homebridge-ui/server.js +367 -36
  26. package/dist/homebridge-ui/server.js.map +1 -1
  27. package/dist/index.d.ts.map +1 -1
  28. package/dist/index.js +4 -32
  29. package/dist/index.js.map +1 -1
  30. package/dist/platform.d.ts +35 -0
  31. package/dist/platform.d.ts.map +1 -0
  32. package/dist/platform.js +514 -0
  33. package/dist/platform.js.map +1 -0
  34. package/dist/settings.d.ts +10 -249
  35. package/dist/settings.d.ts.map +1 -1
  36. package/dist/settings.js +5 -30
  37. package/dist/settings.js.map +1 -1
  38. package/dist/switchbotClient.d.ts +32 -0
  39. package/dist/switchbotClient.d.ts.map +1 -0
  40. package/dist/switchbotClient.js +194 -0
  41. package/dist/switchbotClient.js.map +1 -0
  42. package/dist/utils.d.ts +39 -50
  43. package/dist/utils.d.ts.map +1 -1
  44. package/dist/utils.js +39 -688
  45. package/dist/utils.js.map +1 -1
  46. package/docs/assets/highlight.css +14 -0
  47. package/docs/assets/icons.js +1 -1
  48. package/docs/assets/icons.svg +1 -1
  49. package/docs/assets/main.js +2 -2
  50. package/docs/assets/style.css +3 -3
  51. package/docs/index.html +77 -13
  52. package/docs/variables/default.html +1 -1
  53. package/eslint.config.js +2 -8
  54. package/package.json +21 -28
  55. package/scripts/e2e/README.md +25 -0
  56. package/scripts/e2e/curtain-e2e.sh +70 -0
  57. package/scripts/e2e/fan-e2e.sh +75 -0
  58. package/scripts/e2e/light-advanced-e2e.sh +97 -0
  59. package/scripts/e2e/light-e2e.sh +75 -0
  60. package/scripts/e2e/list-accessories.sh +19 -0
  61. package/scripts/e2e/lock-e2e.sh +65 -0
  62. package/scripts/generate-matter-maps.js +60 -0
  63. package/scripts/run-e2e-local.sh +14 -0
  64. package/src/deviceFactory.ts +122 -0
  65. package/src/devices/deviceBase.ts +141 -0
  66. package/src/devices/genericDevice.ts +965 -0
  67. package/src/homebridge-ui/public/index.html +630 -246
  68. package/src/homebridge-ui/server.ts +434 -41
  69. package/src/index.ts +4 -33
  70. package/src/platform.ts +515 -0
  71. package/src/settings.ts +12 -277
  72. package/src/switchbotClient.ts +203 -0
  73. package/src/utils.ts +45 -713
  74. package/test/accessory-restore.spec.ts +73 -0
  75. package/test/device-mapping.spec.ts +37 -0
  76. package/test/deviceFactory.spec.ts +18 -0
  77. package/test/e2e/run-e2e.spec.ts +50 -0
  78. package/test/fan-swing.spec.ts +29 -0
  79. package/test/helpers/matter-harness.ts +53 -0
  80. package/test/lock-users.spec.ts +44 -0
  81. package/test/matter-childbridge.spec.ts +55 -0
  82. package/test/matter-descriptors.spec.ts +97 -0
  83. package/test/matter-device-state.spec.ts +101 -0
  84. package/test/matter-integration.spec.ts +70 -0
  85. package/test/platform.integration.spec.ts +55 -0
  86. package/test/switchbot-client-debounce.spec.ts +131 -0
  87. package/test/switchbot-client-openapi.spec.ts +56 -0
  88. package/test/switchbotClient.spec.ts +10 -0
  89. package/test/utils.spec.ts +20 -0
  90. package/vitest.config.ts +7 -0
  91. package/coverage/base.css +0 -224
  92. package/coverage/block-navigation.js +0 -87
  93. package/coverage/clover.xml +0 -15847
  94. package/coverage/coverage-final.json +0 -42
  95. package/coverage/docs/assets/dmt/dmt-component-data.js.html +0 -85
  96. package/coverage/docs/assets/dmt/dmt-components.js.html +0 -286
  97. package/coverage/docs/assets/dmt/index.html +0 -131
  98. package/coverage/docs/assets/hierarchy.js.html +0 -85
  99. package/coverage/docs/assets/icons.js.html +0 -136
  100. package/coverage/docs/assets/index.html +0 -146
  101. package/coverage/docs/assets/main.js.html +0 -265
  102. package/coverage/favicon.png +0 -0
  103. package/coverage/index.html +0 -191
  104. package/coverage/prettify.css +0 -1
  105. package/coverage/prettify.js +0 -2
  106. package/coverage/sort-arrow-sprite.png +0 -0
  107. package/coverage/sorter.js +0 -196
  108. package/coverage/src/device/blindtilt.ts.html +0 -3238
  109. package/coverage/src/device/bot.ts.html +0 -2803
  110. package/coverage/src/device/ceilinglight.ts.html +0 -2338
  111. package/coverage/src/device/colorbulb.ts.html +0 -2824
  112. package/coverage/src/device/contact.ts.html +0 -1465
  113. package/coverage/src/device/curtain.ts.html +0 -2869
  114. package/coverage/src/device/device.ts.html +0 -2500
  115. package/coverage/src/device/fan.ts.html +0 -2242
  116. package/coverage/src/device/hub.ts.html +0 -1408
  117. package/coverage/src/device/humidifier.ts.html +0 -2116
  118. package/coverage/src/device/index.html +0 -416
  119. package/coverage/src/device/iosensor.ts.html +0 -1375
  120. package/coverage/src/device/lightstrip.ts.html +0 -2617
  121. package/coverage/src/device/lock.ts.html +0 -1963
  122. package/coverage/src/device/meter.ts.html +0 -1372
  123. package/coverage/src/device/meterplus.ts.html +0 -1384
  124. package/coverage/src/device/meterpro.ts.html +0 -1618
  125. package/coverage/src/device/motion.ts.html +0 -1264
  126. package/coverage/src/device/plug.ts.html +0 -1372
  127. package/coverage/src/device/relayswitch.ts.html +0 -2284
  128. package/coverage/src/device/robotvacuumcleaner.ts.html +0 -1810
  129. package/coverage/src/device/waterdetector.ts.html +0 -1294
  130. package/coverage/src/homebridge-ui/index.html +0 -116
  131. package/coverage/src/homebridge-ui/server.ts.html +0 -229
  132. package/coverage/src/index.html +0 -161
  133. package/coverage/src/index.ts.html +0 -124
  134. package/coverage/src/irdevice/airconditioner.ts.html +0 -1687
  135. package/coverage/src/irdevice/airpurifier.ts.html +0 -844
  136. package/coverage/src/irdevice/camera.ts.html +0 -475
  137. package/coverage/src/irdevice/fan.ts.html +0 -766
  138. package/coverage/src/irdevice/index.html +0 -251
  139. package/coverage/src/irdevice/irdevice.ts.html +0 -1117
  140. package/coverage/src/irdevice/light.ts.html +0 -826
  141. package/coverage/src/irdevice/other.ts.html +0 -2458
  142. package/coverage/src/irdevice/tv.ts.html +0 -1222
  143. package/coverage/src/irdevice/vacuumcleaner.ts.html +0 -466
  144. package/coverage/src/irdevice/waterheater.ts.html +0 -469
  145. package/coverage/src/platform.ts.html +0 -8776
  146. package/coverage/src/settings.ts.html +0 -934
  147. package/coverage/src/utils.ts.html +0 -2092
  148. package/dist/devices-hap/airpurifier.d.ts +0 -54
  149. package/dist/devices-hap/airpurifier.d.ts.map +0 -1
  150. package/dist/devices-hap/airpurifier.js +0 -527
  151. package/dist/devices-hap/airpurifier.js.map +0 -1
  152. package/dist/devices-hap/blindtilt.d.ts +0 -90
  153. package/dist/devices-hap/blindtilt.d.ts.map +0 -1
  154. package/dist/devices-hap/blindtilt.js +0 -974
  155. package/dist/devices-hap/blindtilt.js.map +0 -1
  156. package/dist/devices-hap/bot.d.ts +0 -102
  157. package/dist/devices-hap/bot.d.ts.map +0 -1
  158. package/dist/devices-hap/bot.js +0 -811
  159. package/dist/devices-hap/bot.js.map +0 -1
  160. package/dist/devices-hap/ceilinglight.d.ts +0 -85
  161. package/dist/devices-hap/ceilinglight.d.ts.map +0 -1
  162. package/dist/devices-hap/ceilinglight.js +0 -701
  163. package/dist/devices-hap/ceilinglight.js.map +0 -1
  164. package/dist/devices-hap/colorbulb.d.ts +0 -88
  165. package/dist/devices-hap/colorbulb.d.ts.map +0 -1
  166. package/dist/devices-hap/colorbulb.js +0 -881
  167. package/dist/devices-hap/colorbulb.js.map +0 -1
  168. package/dist/devices-hap/contact.d.ts +0 -44
  169. package/dist/devices-hap/contact.d.ts.map +0 -1
  170. package/dist/devices-hap/contact.js +0 -409
  171. package/dist/devices-hap/contact.js.map +0 -1
  172. package/dist/devices-hap/curtain.d.ts +0 -73
  173. package/dist/devices-hap/curtain.d.ts.map +0 -1
  174. package/dist/devices-hap/curtain.js +0 -869
  175. package/dist/devices-hap/curtain.js.map +0 -1
  176. package/dist/devices-hap/device.d.ts +0 -98
  177. package/dist/devices-hap/device.d.ts.map +0 -1
  178. package/dist/devices-hap/device.js +0 -749
  179. package/dist/devices-hap/device.js.map +0 -1
  180. package/dist/devices-hap/fan.d.ts +0 -69
  181. package/dist/devices-hap/fan.d.ts.map +0 -1
  182. package/dist/devices-hap/fan.js +0 -649
  183. package/dist/devices-hap/fan.js.map +0 -1
  184. package/dist/devices-hap/hub.d.ts +0 -37
  185. package/dist/devices-hap/hub.d.ts.map +0 -1
  186. package/dist/devices-hap/hub.js +0 -392
  187. package/dist/devices-hap/hub.js.map +0 -1
  188. package/dist/devices-hap/humidifier.d.ts +0 -68
  189. package/dist/devices-hap/humidifier.d.ts.map +0 -1
  190. package/dist/devices-hap/humidifier.js +0 -628
  191. package/dist/devices-hap/humidifier.js.map +0 -1
  192. package/dist/devices-hap/iosensor.d.ts +0 -42
  193. package/dist/devices-hap/iosensor.d.ts.map +0 -1
  194. package/dist/devices-hap/iosensor.js +0 -382
  195. package/dist/devices-hap/iosensor.js.map +0 -1
  196. package/dist/devices-hap/lightstrip.d.ts +0 -79
  197. package/dist/devices-hap/lightstrip.d.ts.map +0 -1
  198. package/dist/devices-hap/lightstrip.js +0 -797
  199. package/dist/devices-hap/lightstrip.js.map +0 -1
  200. package/dist/devices-hap/lock.d.ts +0 -53
  201. package/dist/devices-hap/lock.d.ts.map +0 -1
  202. package/dist/devices-hap/lock.js +0 -561
  203. package/dist/devices-hap/lock.js.map +0 -1
  204. package/dist/devices-hap/meter.d.ts +0 -37
  205. package/dist/devices-hap/meter.d.ts.map +0 -1
  206. package/dist/devices-hap/meter.js +0 -379
  207. package/dist/devices-hap/meter.js.map +0 -1
  208. package/dist/devices-hap/meterplus.d.ts +0 -42
  209. package/dist/devices-hap/meterplus.d.ts.map +0 -1
  210. package/dist/devices-hap/meterplus.js +0 -384
  211. package/dist/devices-hap/meterplus.js.map +0 -1
  212. package/dist/devices-hap/meterpro.d.ts +0 -43
  213. package/dist/devices-hap/meterpro.d.ts.map +0 -1
  214. package/dist/devices-hap/meterpro.js +0 -468
  215. package/dist/devices-hap/meterpro.js.map +0 -1
  216. package/dist/devices-hap/motion.d.ts +0 -42
  217. package/dist/devices-hap/motion.d.ts.map +0 -1
  218. package/dist/devices-hap/motion.js +0 -345
  219. package/dist/devices-hap/motion.js.map +0 -1
  220. package/dist/devices-hap/plug.d.ts +0 -49
  221. package/dist/devices-hap/plug.d.ts.map +0 -1
  222. package/dist/devices-hap/plug.js +0 -395
  223. package/dist/devices-hap/plug.js.map +0 -1
  224. package/dist/devices-hap/relayswitch.d.ts +0 -96
  225. package/dist/devices-hap/relayswitch.d.ts.map +0 -1
  226. package/dist/devices-hap/relayswitch.js +0 -642
  227. package/dist/devices-hap/relayswitch.js.map +0 -1
  228. package/dist/devices-hap/robotvacuumcleaner.d.ts +0 -54
  229. package/dist/devices-hap/robotvacuumcleaner.d.ts.map +0 -1
  230. package/dist/devices-hap/robotvacuumcleaner.js +0 -523
  231. package/dist/devices-hap/robotvacuumcleaner.js.map +0 -1
  232. package/dist/devices-hap/waterdetector.d.ts +0 -41
  233. package/dist/devices-hap/waterdetector.d.ts.map +0 -1
  234. package/dist/devices-hap/waterdetector.js +0 -356
  235. package/dist/devices-hap/waterdetector.js.map +0 -1
  236. package/dist/devices-matter/BaseMatterAccessory.d.ts +0 -63
  237. package/dist/devices-matter/BaseMatterAccessory.d.ts.map +0 -1
  238. package/dist/devices-matter/BaseMatterAccessory.js +0 -100
  239. package/dist/devices-matter/BaseMatterAccessory.js.map +0 -1
  240. package/dist/devices-matter/ColorLightAccessory.d.ts +0 -20
  241. package/dist/devices-matter/ColorLightAccessory.d.ts.map +0 -1
  242. package/dist/devices-matter/ColorLightAccessory.js +0 -95
  243. package/dist/devices-matter/ColorLightAccessory.js.map +0 -1
  244. package/dist/devices-matter/ColorTemperatureLightAccessory.d.ts +0 -18
  245. package/dist/devices-matter/ColorTemperatureLightAccessory.d.ts.map +0 -1
  246. package/dist/devices-matter/ColorTemperatureLightAccessory.js +0 -78
  247. package/dist/devices-matter/ColorTemperatureLightAccessory.js.map +0 -1
  248. package/dist/devices-matter/ContactSensorAccessory.d.ts +0 -12
  249. package/dist/devices-matter/ContactSensorAccessory.d.ts.map +0 -1
  250. package/dist/devices-matter/ContactSensorAccessory.js +0 -34
  251. package/dist/devices-matter/ContactSensorAccessory.js.map +0 -1
  252. package/dist/devices-matter/DimmableLightAccessory.d.ts +0 -58
  253. package/dist/devices-matter/DimmableLightAccessory.d.ts.map +0 -1
  254. package/dist/devices-matter/DimmableLightAccessory.js +0 -167
  255. package/dist/devices-matter/DimmableLightAccessory.js.map +0 -1
  256. package/dist/devices-matter/DoorLockAccessory.d.ts +0 -14
  257. package/dist/devices-matter/DoorLockAccessory.d.ts.map +0 -1
  258. package/dist/devices-matter/DoorLockAccessory.js +0 -50
  259. package/dist/devices-matter/DoorLockAccessory.js.map +0 -1
  260. package/dist/devices-matter/ExtendedColorLightAccessory.d.ts +0 -21
  261. package/dist/devices-matter/ExtendedColorLightAccessory.d.ts.map +0 -1
  262. package/dist/devices-matter/ExtendedColorLightAccessory.js +0 -107
  263. package/dist/devices-matter/ExtendedColorLightAccessory.js.map +0 -1
  264. package/dist/devices-matter/FanAccessory.d.ts +0 -16
  265. package/dist/devices-matter/FanAccessory.d.ts.map +0 -1
  266. package/dist/devices-matter/FanAccessory.js +0 -81
  267. package/dist/devices-matter/FanAccessory.js.map +0 -1
  268. package/dist/devices-matter/HumiditySensorAccessory.d.ts +0 -12
  269. package/dist/devices-matter/HumiditySensorAccessory.d.ts.map +0 -1
  270. package/dist/devices-matter/HumiditySensorAccessory.js +0 -34
  271. package/dist/devices-matter/HumiditySensorAccessory.js.map +0 -1
  272. package/dist/devices-matter/LeakSensorAccessory.d.ts +0 -12
  273. package/dist/devices-matter/LeakSensorAccessory.d.ts.map +0 -1
  274. package/dist/devices-matter/LeakSensorAccessory.js +0 -33
  275. package/dist/devices-matter/LeakSensorAccessory.js.map +0 -1
  276. package/dist/devices-matter/LightSensorAccessory.d.ts +0 -12
  277. package/dist/devices-matter/LightSensorAccessory.d.ts.map +0 -1
  278. package/dist/devices-matter/LightSensorAccessory.js +0 -34
  279. package/dist/devices-matter/LightSensorAccessory.js.map +0 -1
  280. package/dist/devices-matter/OccupancySensorAccessory.d.ts +0 -12
  281. package/dist/devices-matter/OccupancySensorAccessory.d.ts.map +0 -1
  282. package/dist/devices-matter/OccupancySensorAccessory.js +0 -39
  283. package/dist/devices-matter/OccupancySensorAccessory.js.map +0 -1
  284. package/dist/devices-matter/OnOffLightAccessory.d.ts +0 -38
  285. package/dist/devices-matter/OnOffLightAccessory.d.ts.map +0 -1
  286. package/dist/devices-matter/OnOffLightAccessory.js +0 -118
  287. package/dist/devices-matter/OnOffLightAccessory.js.map +0 -1
  288. package/dist/devices-matter/OnOffOutletAccessory.d.ts +0 -12
  289. package/dist/devices-matter/OnOffOutletAccessory.d.ts.map +0 -1
  290. package/dist/devices-matter/OnOffOutletAccessory.js +0 -40
  291. package/dist/devices-matter/OnOffOutletAccessory.js.map +0 -1
  292. package/dist/devices-matter/OnOffSwitchAccessory.d.ts +0 -14
  293. package/dist/devices-matter/OnOffSwitchAccessory.d.ts.map +0 -1
  294. package/dist/devices-matter/OnOffSwitchAccessory.js +0 -42
  295. package/dist/devices-matter/OnOffSwitchAccessory.js.map +0 -1
  296. package/dist/devices-matter/RoboticVacuumAccessory.d.ts +0 -68
  297. package/dist/devices-matter/RoboticVacuumAccessory.d.ts.map +0 -1
  298. package/dist/devices-matter/RoboticVacuumAccessory.js +0 -334
  299. package/dist/devices-matter/RoboticVacuumAccessory.js.map +0 -1
  300. package/dist/devices-matter/SmokeCOAlarmAccessory.d.ts +0 -11
  301. package/dist/devices-matter/SmokeCOAlarmAccessory.d.ts.map +0 -1
  302. package/dist/devices-matter/SmokeCOAlarmAccessory.js +0 -49
  303. package/dist/devices-matter/SmokeCOAlarmAccessory.js.map +0 -1
  304. package/dist/devices-matter/TemperatureSensorAccessory.d.ts +0 -12
  305. package/dist/devices-matter/TemperatureSensorAccessory.d.ts.map +0 -1
  306. package/dist/devices-matter/TemperatureSensorAccessory.js +0 -36
  307. package/dist/devices-matter/TemperatureSensorAccessory.js.map +0 -1
  308. package/dist/devices-matter/ThermostatAccessory.d.ts +0 -19
  309. package/dist/devices-matter/ThermostatAccessory.d.ts.map +0 -1
  310. package/dist/devices-matter/ThermostatAccessory.js +0 -95
  311. package/dist/devices-matter/ThermostatAccessory.js.map +0 -1
  312. package/dist/devices-matter/VenetianBlindAccessory.d.ts +0 -19
  313. package/dist/devices-matter/VenetianBlindAccessory.d.ts.map +0 -1
  314. package/dist/devices-matter/VenetianBlindAccessory.js +0 -99
  315. package/dist/devices-matter/VenetianBlindAccessory.js.map +0 -1
  316. package/dist/devices-matter/WindowBlindAccessory.d.ts +0 -17
  317. package/dist/devices-matter/WindowBlindAccessory.d.ts.map +0 -1
  318. package/dist/devices-matter/WindowBlindAccessory.js +0 -80
  319. package/dist/devices-matter/WindowBlindAccessory.js.map +0 -1
  320. package/dist/devices-matter/custom/PowerStripAccessory.d.ts +0 -97
  321. package/dist/devices-matter/custom/PowerStripAccessory.d.ts.map +0 -1
  322. package/dist/devices-matter/custom/PowerStripAccessory.js +0 -265
  323. package/dist/devices-matter/custom/PowerStripAccessory.js.map +0 -1
  324. package/dist/devices-matter/custom/index.d.ts +0 -8
  325. package/dist/devices-matter/custom/index.d.ts.map +0 -1
  326. package/dist/devices-matter/custom/index.js +0 -8
  327. package/dist/devices-matter/custom/index.js.map +0 -1
  328. package/dist/devices-matter/index.d.ts +0 -29
  329. package/dist/devices-matter/index.d.ts.map +0 -1
  330. package/dist/devices-matter/index.js +0 -28
  331. package/dist/devices-matter/index.js.map +0 -1
  332. package/dist/index.test.d.ts +0 -2
  333. package/dist/index.test.d.ts.map +0 -1
  334. package/dist/index.test.js +0 -14
  335. package/dist/index.test.js.map +0 -1
  336. package/dist/irdevice/airconditioner.d.ts +0 -61
  337. package/dist/irdevice/airconditioner.d.ts.map +0 -1
  338. package/dist/irdevice/airconditioner.js +0 -472
  339. package/dist/irdevice/airconditioner.js.map +0 -1
  340. package/dist/irdevice/airpurifier.d.ts +0 -50
  341. package/dist/irdevice/airpurifier.d.ts.map +0 -1
  342. package/dist/irdevice/airpurifier.js +0 -213
  343. package/dist/irdevice/airpurifier.js.map +0 -1
  344. package/dist/irdevice/camera.d.ts +0 -32
  345. package/dist/irdevice/camera.d.ts.map +0 -1
  346. package/dist/irdevice/camera.js +0 -107
  347. package/dist/irdevice/camera.js.map +0 -1
  348. package/dist/irdevice/fan.d.ts +0 -36
  349. package/dist/irdevice/fan.d.ts.map +0 -1
  350. package/dist/irdevice/fan.js +0 -200
  351. package/dist/irdevice/fan.js.map +0 -1
  352. package/dist/irdevice/irdevice.d.ts +0 -68
  353. package/dist/irdevice/irdevice.d.ts.map +0 -1
  354. package/dist/irdevice/irdevice.js +0 -298
  355. package/dist/irdevice/irdevice.js.map +0 -1
  356. package/dist/irdevice/light.d.ts +0 -36
  357. package/dist/irdevice/light.d.ts.map +0 -1
  358. package/dist/irdevice/light.js +0 -206
  359. package/dist/irdevice/light.js.map +0 -1
  360. package/dist/irdevice/other.d.ts +0 -57
  361. package/dist/irdevice/other.d.ts.map +0 -1
  362. package/dist/irdevice/other.js +0 -778
  363. package/dist/irdevice/other.js.map +0 -1
  364. package/dist/irdevice/tv.d.ts +0 -45
  365. package/dist/irdevice/tv.d.ts.map +0 -1
  366. package/dist/irdevice/tv.js +0 -327
  367. package/dist/irdevice/tv.js.map +0 -1
  368. package/dist/irdevice/vacuumcleaner.d.ts +0 -28
  369. package/dist/irdevice/vacuumcleaner.d.ts.map +0 -1
  370. package/dist/irdevice/vacuumcleaner.js +0 -104
  371. package/dist/irdevice/vacuumcleaner.js.map +0 -1
  372. package/dist/irdevice/waterheater.d.ts +0 -30
  373. package/dist/irdevice/waterheater.d.ts.map +0 -1
  374. package/dist/irdevice/waterheater.js +0 -105
  375. package/dist/irdevice/waterheater.js.map +0 -1
  376. package/dist/platform-hap.d.ts +0 -149
  377. package/dist/platform-hap.d.ts.map +0 -1
  378. package/dist/platform-hap.js +0 -2861
  379. package/dist/platform-hap.js.map +0 -1
  380. package/dist/platform-matter.d.ts +0 -120
  381. package/dist/platform-matter.d.ts.map +0 -1
  382. package/dist/platform-matter.js +0 -966
  383. package/dist/platform-matter.js.map +0 -1
  384. package/dist/verifyconfig.test.d.ts +0 -2
  385. package/dist/verifyconfig.test.d.ts.map +0 -1
  386. package/dist/verifyconfig.test.js +0 -167
  387. package/dist/verifyconfig.test.js.map +0 -1
  388. package/src/custom.d.ts +0 -7
  389. package/src/devices-hap/airpurifier.ts +0 -563
  390. package/src/devices-hap/blindtilt.ts +0 -1049
  391. package/src/devices-hap/bot.ts +0 -900
  392. package/src/devices-hap/ceilinglight.ts +0 -742
  393. package/src/devices-hap/colorbulb.ts +0 -904
  394. package/src/devices-hap/contact.ts +0 -457
  395. package/src/devices-hap/curtain.ts +0 -944
  396. package/src/devices-hap/device.ts +0 -811
  397. package/src/devices-hap/fan.ts +0 -711
  398. package/src/devices-hap/hub.ts +0 -439
  399. package/src/devices-hap/humidifier.ts +0 -669
  400. package/src/devices-hap/iosensor.ts +0 -427
  401. package/src/devices-hap/lightstrip.ts +0 -836
  402. package/src/devices-hap/lock.ts +0 -620
  403. package/src/devices-hap/meter.ts +0 -426
  404. package/src/devices-hap/meterplus.ts +0 -430
  405. package/src/devices-hap/meterpro.ts +0 -522
  406. package/src/devices-hap/motion.ts +0 -390
  407. package/src/devices-hap/plug.ts +0 -423
  408. package/src/devices-hap/relayswitch.ts +0 -727
  409. package/src/devices-hap/robotvacuumcleaner.ts +0 -568
  410. package/src/devices-hap/waterdetector.ts +0 -400
  411. package/src/devices-matter/BaseMatterAccessory.ts +0 -131
  412. package/src/devices-matter/ColorLightAccessory.ts +0 -110
  413. package/src/devices-matter/ColorTemperatureLightAccessory.ts +0 -92
  414. package/src/devices-matter/ContactSensorAccessory.ts +0 -41
  415. package/src/devices-matter/DimmableLightAccessory.ts +0 -192
  416. package/src/devices-matter/DoorLockAccessory.ts +0 -60
  417. package/src/devices-matter/ExtendedColorLightAccessory.ts +0 -123
  418. package/src/devices-matter/FanAccessory.ts +0 -95
  419. package/src/devices-matter/HumiditySensorAccessory.ts +0 -41
  420. package/src/devices-matter/LeakSensorAccessory.ts +0 -40
  421. package/src/devices-matter/LightSensorAccessory.ts +0 -41
  422. package/src/devices-matter/OccupancySensorAccessory.ts +0 -48
  423. package/src/devices-matter/OnOffLightAccessory.ts +0 -133
  424. package/src/devices-matter/OnOffOutletAccessory.ts +0 -46
  425. package/src/devices-matter/OnOffSwitchAccessory.ts +0 -51
  426. package/src/devices-matter/RoboticVacuumAccessory.ts +0 -407
  427. package/src/devices-matter/SmokeCOAlarmAccessory.ts +0 -59
  428. package/src/devices-matter/TemperatureSensorAccessory.ts +0 -43
  429. package/src/devices-matter/ThermostatAccessory.ts +0 -110
  430. package/src/devices-matter/VenetianBlindAccessory.ts +0 -115
  431. package/src/devices-matter/WindowBlindAccessory.ts +0 -92
  432. package/src/devices-matter/custom/PowerStripAccessory.ts +0 -309
  433. package/src/devices-matter/custom/index.ts +0 -8
  434. package/src/devices-matter/index.ts +0 -29
  435. package/src/index.test.ts +0 -19
  436. package/src/irdevice/airconditioner.ts +0 -533
  437. package/src/irdevice/airpurifier.ts +0 -252
  438. package/src/irdevice/camera.ts +0 -129
  439. package/src/irdevice/fan.ts +0 -226
  440. package/src/irdevice/irdevice.ts +0 -344
  441. package/src/irdevice/light.ts +0 -246
  442. package/src/irdevice/other.ts +0 -790
  443. package/src/irdevice/tv.ts +0 -378
  444. package/src/irdevice/vacuumcleaner.ts +0 -126
  445. package/src/irdevice/waterheater.ts +0 -127
  446. package/src/platform-hap.ts +0 -2997
  447. package/src/platform-matter.ts +0 -1092
  448. package/src/verifyconfig.test.ts +0 -197
@@ -0,0 +1,515 @@
1
+ import type { SwitchBotPluginConfig } from './settings.js'
2
+ import type { API, Logger, PlatformConfig } from 'homebridge'
3
+
4
+ import { createDevice } from './deviceFactory.js'
5
+ import { PLATFORM_NAME, PLUGIN_NAME } from './settings.js'
6
+ import { SwitchBotClient } from './switchbotClient.js'
7
+
8
+ // Which device types should prefer Matter if available
9
+ const DEVICE_MATTER_SUPPORTED: Record<string, boolean> = {
10
+ bot: false,
11
+ curtain: true,
12
+ fan: true,
13
+ light: true,
14
+ lightstrip: true,
15
+ motion: true,
16
+ contact: true,
17
+ vacuum: true,
18
+ lock: true,
19
+ humidifier: true,
20
+ temperature: true,
21
+ wosweeper: true,
22
+ wosweepermini: true,
23
+ wosweeperminipro: true,
24
+ }
25
+
26
+ export class SwitchBotHAPPlatform {
27
+ api: API | undefined
28
+ log: Logger
29
+ config: SwitchBotPluginConfig
30
+ devices: any[] = []
31
+ // cached accessories restored by Homebridge
32
+ accessories: Map<string, any>
33
+ // Track last loaded config to detect changes
34
+ private lastConfigHash: string = ''
35
+ private configReloadInterval: NodeJS.Timeout | null = null
36
+
37
+ constructor(log: Logger, config: PlatformConfig, api?: API) {
38
+ this.log = log
39
+ this.config = (config as any) ?? {}
40
+ this.api = api
41
+ this.accessories = new Map()
42
+ this.log.info('SwitchBot HAP platform initialized')
43
+
44
+ // Create/shared SwitchBot client and attach to config so child devices reuse it.
45
+ try {
46
+ const client = new SwitchBotClient(this.config)
47
+ void client.init()
48
+ ;(this.config as any)._client = client
49
+ } catch (e) {
50
+ this.log.debug('Failed to create shared SwitchBot client', e)
51
+ }
52
+
53
+ // Create/shared SwitchBot client and attach to config so child devices reuse it.
54
+ try {
55
+ const client = new SwitchBotClient(this.config)
56
+ void client.init()
57
+ ;(this.config as any)._client = client
58
+ } catch (e) {
59
+ this.log.debug('Failed to create shared SwitchBot client', e)
60
+ }
61
+
62
+ // Wait for Homebridge to finish launching to create/register accessories
63
+ if (this.api && typeof (this.api as any).on === 'function') {
64
+ ;(this.api as any).on('didFinishLaunching', () => {
65
+ void this.loadDevices()
66
+ // Start periodic config reload to pick up UI changes
67
+ this.configReloadInterval = setInterval(() => {
68
+ void this.checkAndReloadDevices()
69
+ }, 10000) // Check every 10 seconds
70
+ })
71
+ } else {
72
+ void this.loadDevices()
73
+ // Start periodic config reload to pick up UI changes
74
+ this.configReloadInterval = setInterval(() => {
75
+ void this.checkAndReloadDevices()
76
+ }, 10000) // Check every 10 seconds
77
+ }
78
+ }
79
+
80
+ private getConfigHash(): string {
81
+ // Create a simple hash of current device config to detect changes
82
+ const devices = (this.config as any)?.devices ?? []
83
+ return JSON.stringify(devices.map((d: any) => ({
84
+ id: d.deviceId ?? d.id,
85
+ type: d.configDeviceType ?? d.type,
86
+ name: d.configDeviceName ?? d.name,
87
+ })))
88
+ }
89
+
90
+ private async checkAndReloadDevices() {
91
+ const currentHash = this.getConfigHash()
92
+ if (currentHash !== this.lastConfigHash) {
93
+ this.log.info('[SwitchBot] Detected config changes, reloading devices...')
94
+ // Clear existing devices
95
+ this.devices = []
96
+ await this.loadDevices()
97
+ }
98
+ }
99
+
100
+ async loadDevices() {
101
+ const devices = (this.config as any)?.devices ?? []
102
+ for (const raw of devices) {
103
+ // Normalize config keys from UI schema to internal shape
104
+ const d: any = {
105
+ id: raw.deviceId ?? raw.id,
106
+ name: raw.configDeviceName ?? raw.name,
107
+ type: raw.configDeviceType ?? raw.type ?? raw.deviceType ?? 'unknown',
108
+ _raw: raw,
109
+ }
110
+
111
+ let type: string = d.type
112
+ // Normalize wosweeper variants to vacuum
113
+ if (['wosweeper', 'wosweepermini', 'wosweeperminipro'].includes((type || '').toLowerCase())) {
114
+ type = 'vacuum'
115
+ }
116
+ const matterSupported = !!DEVICE_MATTER_SUPPORTED[(type || '').toLowerCase()]
117
+ // Auto-detect Matter from Homebridge API, allow manual override via config
118
+ const matterAvailable = !!(this.api?.isMatterAvailable?.() && this.api?.isMatterEnabled?.())
119
+ const matterEnabled = matterAvailable || !!this.config.enableMatter
120
+ const useMatter = !!(matterEnabled && matterSupported && (!!this.config.preferMatter || matterAvailable))
121
+
122
+ try {
123
+ const created = await createDevice({ id: d.id, type, name: d.name }, this.config, useMatter)
124
+ this.devices.push(created)
125
+ // Prefer Matter: try registering to the Matter child bridge first.
126
+ let matterRegistered = false
127
+ if (useMatter) {
128
+ this.log.info(`Attempting Matter registration for ${d.id} (${type})`)
129
+ // If Homebridge Matter APIs are available, register the accessory
130
+ try {
131
+ const matterApi = (this.api as any)?.matter
132
+ if (this.api?.isMatterAvailable?.() && this.api?.isMatterEnabled?.() && matterApi && typeof matterApi.registerPlatformAccessories === 'function') {
133
+ const createdDesc = created.createAccessory?.(this.api) || { id: d.id, name: d.name || type }
134
+ const uuid = matterApi.uuid.generate(`${d.id}`)
135
+ const accessory: any = {
136
+ UUID: uuid,
137
+ displayName: createdDesc.name || d.name || type,
138
+ deviceType: createdDesc.deviceType || type,
139
+ context: { deviceId: d.id, type, _created: true },
140
+ }
141
+ try {
142
+ await matterApi.registerPlatformAccessories(PLUGIN_NAME, PLATFORM_NAME, [accessory])
143
+ this.accessories.set(uuid, accessory)
144
+ matterRegistered = true
145
+ this.log.info(`Registered Matter accessory ${d.id} (${type}) with uuid=${uuid}`)
146
+ } catch (e) {
147
+ this.log.warn('Failed to register Matter accessory with Homebridge matter API', e)
148
+ }
149
+ } else {
150
+ this.log.info('Homebridge Matter API not available or not enabled; will fallback to HAP')
151
+ }
152
+ } catch (e) {
153
+ this.log.warn('Matter registration attempt failed', e)
154
+ }
155
+ }
156
+
157
+ // If Matter wasn't registered (either not supported, API missing, or registration failed), fall back to HAP registration.
158
+ if (!matterRegistered && this.api && (this.api as any).hap) {
159
+ // Basic HAP accessory creation using homebridge API when available
160
+ try {
161
+ const hap = (this.api as any).hap
162
+ const uuid = hap.uuid.generate(`${d.id}`)
163
+ // Reuse cached accessory if available by uuid
164
+ let accessory: any = this.accessories.get(uuid)
165
+ // If not found by uuid, attempt to find by stored deviceId in accessory.context
166
+ if (!accessory) {
167
+ for (const [, a] of Array.from(this.accessories.entries())) {
168
+ try {
169
+ if (a && a.context && a.context.deviceId === d.id) {
170
+ accessory = a
171
+ break
172
+ }
173
+ } catch (e) {
174
+ // ignore
175
+ }
176
+ }
177
+ }
178
+
179
+ if (!accessory) {
180
+ accessory = new (this.api as any).platformAccessory(d.name || type, uuid)
181
+ // Store device metadata on accessory.context for persistence across restarts
182
+ try {
183
+ accessory.context = accessory.context || {}
184
+ accessory.context.deviceId = d.id
185
+ accessory.context.type = type
186
+ } catch (e) {
187
+ // ignore context failures
188
+ }
189
+ // Register new accessory with Homebridge so it's cached
190
+ try {
191
+ ;(this.api as any).registerPlatformAccessories(PLUGIN_NAME, PLATFORM_NAME, [accessory])
192
+ } catch (e) {
193
+ // older API variations may require different registration; ignore if unavailable
194
+ }
195
+ this.accessories.set(uuid, accessory)
196
+ } else {
197
+ // ensure context includes deviceId (in case restored accessory lacked it)
198
+ try {
199
+ accessory.context = accessory.context || {}
200
+ accessory.context.deviceId = accessory.context.deviceId || d.id
201
+ accessory.context.type = accessory.context.type || type
202
+ } catch (e) {
203
+ // ignore
204
+ }
205
+ }
206
+ // Add basic service descriptor from device
207
+ const accDesc = created.createAccessory?.(this.api)
208
+ if (accDesc && accDesc.services) {
209
+ for (const s of accDesc.services) {
210
+ const Service = hap.Service[s.type] || hap.Service[s.type]
211
+ if (!Service) {
212
+ continue
213
+ }
214
+ const service = accessory.getService(Service) || accessory.addService(Service)
215
+ for (const [charName, getterSetterRaw] of Object.entries(s.characteristics || {})) {
216
+ const getterSetter: any = getterSetterRaw
217
+ const Characteristic = (hap.Characteristic as any)[charName]
218
+ if (!Characteristic) {
219
+ continue
220
+ }
221
+ // Apply characteristic props if provided (min/max/step)
222
+ if (getterSetter && getterSetter.props) {
223
+ try {
224
+ service.getCharacteristic(Characteristic).setProps(getterSetter.props)
225
+ } catch (e) {
226
+ // ignore setProps failures on older HAP implementations
227
+ }
228
+ }
229
+
230
+ // Wire simple get/set handlers if provided
231
+ if (getterSetter && typeof getterSetter.get === 'function') {
232
+ service.getCharacteristic(Characteristic).onGet(getterSetter.get)
233
+ }
234
+ if (getterSetter && typeof getterSetter.set === 'function') {
235
+ service.getCharacteristic(Characteristic).onSet(getterSetter.set)
236
+ }
237
+ }
238
+ }
239
+ }
240
+ this.log.info(`Created/updated HAP accessory ${d.id} (${type})`)
241
+ } catch (e) {
242
+ this.log.warn('HAP accessory creation failed', e)
243
+ }
244
+ } else if (!matterRegistered) {
245
+ this.log.info(`Created HAP descriptor for ${d.id} (${type}) (API not available to register)`)
246
+ }
247
+ } catch (e) {
248
+ this.log.error(`Failed to create device ${d.id}:`, e as any)
249
+ }
250
+ }
251
+ // Update hash after successfully loading devices
252
+ this.lastConfigHash = this.getConfigHash()
253
+ }
254
+
255
+ // Example lifecycle method called by Homebridge
256
+ async configureAccessory(accessory: any) {
257
+ // Homebridge calls this for restored cached accessories — keep a reference.
258
+ try {
259
+ const uuid = accessory.UUID || accessory.UUID
260
+ this.accessories.set(uuid, accessory)
261
+ this.log.info(`Restored cached accessory ${accessory.displayName || uuid}`)
262
+ } catch (e) {
263
+ this.log.warn('configureAccessory failed to restore accessory', e)
264
+ }
265
+ }
266
+
267
+ // Called by Homebridge when a cached Matter accessory is restored
268
+ configureMatterAccessory?(accessory: any) {
269
+ try {
270
+ const uuid = accessory.uuid || accessory.UUID || accessory.uuid
271
+ this.accessories.set(uuid, accessory)
272
+ this.log.info(`Restored cached Matter accessory ${accessory.displayName || uuid}`)
273
+ } catch (e) {
274
+ this.log.warn('configureMatterAccessory failed to restore accessory', e)
275
+ }
276
+ }
277
+ }
278
+
279
+ // Matter platform implementation (placeholder)
280
+ export class SwitchBotMatterPlatform {
281
+ api: API | undefined
282
+ log: Logger
283
+ config: SwitchBotPluginConfig
284
+ devices: any[] = []
285
+ accessories: Map<string, any>
286
+ // Track last loaded config to detect changes
287
+ private lastConfigHash: string = ''
288
+ private configReloadInterval: NodeJS.Timeout | null = null
289
+
290
+ constructor(log: Logger, config: PlatformConfig, api?: API) {
291
+ this.log = log
292
+ this.config = (config as any) ?? {}
293
+ this.api = api
294
+ this.accessories = new Map()
295
+ this.log.info('SwitchBot Matter platform initialized')
296
+
297
+ if (this.api && typeof (this.api as any).on === 'function') {
298
+ ;(this.api as any).on('didFinishLaunching', () => {
299
+ ;(async () => {
300
+ // After launch, perform discovery (if any) and register Matter accessories
301
+ try {
302
+ await this.loadDevices()
303
+ if ((this.api as any).isMatterAvailable?.() && (this.api as any).isMatterEnabled?.() && (this.api as any).matter && typeof (this.api as any).matter.registerPlatformAccessories === 'function') {
304
+ try {
305
+ await (this as any).registerMatterAccessories?.()
306
+ } catch (e) {
307
+ this.log.warn('registerMatterAccessories failed', e)
308
+ }
309
+ }
310
+ } catch (e) {
311
+ this.log.warn('Error during Matter platform startup', e)
312
+ }
313
+ })()
314
+ // Start periodic config reload to pick up UI changes
315
+ this.configReloadInterval = setInterval(() => {
316
+ void this.checkAndReloadDevices()
317
+ }, 10000) // Check every 10 seconds
318
+ })
319
+ } else {
320
+ void this.loadDevices()
321
+ // Start periodic config reload to pick up UI changes
322
+ this.configReloadInterval = setInterval(() => {
323
+ void this.checkAndReloadDevices()
324
+ }, 10000) // Check every 10 seconds
325
+ }
326
+ // Create/shared SwitchBot client and attach to config so child devices reuse it.
327
+ try {
328
+ const client = new SwitchBotClient(this.config)
329
+ void client.init()
330
+ ;(this.config as any)._client = client
331
+ } catch (e) {
332
+ this.log.debug('Failed to create shared SwitchBot client', e)
333
+ }
334
+ }
335
+
336
+ async loadDevices() {
337
+ const devices = (this.config as any)?.devices ?? []
338
+ for (const raw of devices) {
339
+ // Normalize config keys produced by the UI schema
340
+ const d: any = {
341
+ id: raw.deviceId ?? raw.id,
342
+ name: raw.configDeviceName ?? raw.name,
343
+ type: raw.configDeviceType ?? raw.type ?? raw.deviceType ?? 'unknown',
344
+ _raw: raw,
345
+ }
346
+
347
+ let type: string = d.type
348
+ // Normalize wosweeper variants to vacuum
349
+ if (['wosweeper', 'wosweepermini', 'wosweeperminipro'].includes((type || '').toLowerCase())) {
350
+ type = 'vacuum'
351
+ }
352
+ const matterSupported = !!DEVICE_MATTER_SUPPORTED[(type || '').toLowerCase()]
353
+ // Auto-detect Matter from Homebridge API, allow manual override via config
354
+ const matterAvailable = this.api?.isMatterAvailable?.() && this.api?.isMatterEnabled?.()
355
+ const matterEnabled = matterAvailable || !!this.config.enableMatter
356
+ const useMatter = matterEnabled && matterSupported
357
+ try {
358
+ const created = await createDevice({ id: d.id, type, name: d.name }, this.config, useMatter)
359
+ this.devices.push(created)
360
+ if (useMatter) {
361
+ this.log.info(`Prepared Matter accessory for ${d.id} (${type})${matterAvailable ? ' (auto-detected)' : ' (manually enabled)'}`)
362
+ } else {
363
+ if (!matterEnabled) {
364
+ this.log.info(`Skipping Matter for ${d.id} (${type}) - Matter not available on this bridge`)
365
+ } else if (!matterSupported) {
366
+ this.log.info(`Skipping Matter for ${d.id} (${type}) - device type not supported`)
367
+ } else {
368
+ this.log.info(`Skipping Matter for ${d.id} (${type}) - not supported`)
369
+ }
370
+ }
371
+ } catch (e) {
372
+ this.log.error(`Failed to create Matter device ${d.id}:`, e as any)
373
+ }
374
+ }
375
+ // Update hash after successfully loading devices
376
+ this.lastConfigHash = this.getConfigHash()
377
+ }
378
+
379
+ private getConfigHash(): string {
380
+ // Create a simple hash of current device config to detect changes
381
+ const devices = (this.config as any)?.devices ?? []
382
+ return JSON.stringify(devices.map((d: any) => ({
383
+ id: d.deviceId ?? d.id,
384
+ type: d.configDeviceType ?? d.type,
385
+ name: d.configDeviceName ?? d.name,
386
+ })))
387
+ }
388
+
389
+ private async checkAndReloadDevices() {
390
+ const currentHash = this.getConfigHash()
391
+ if (currentHash !== this.lastConfigHash) {
392
+ this.log.info('[SwitchBot] Detected config changes, reloading devices...')
393
+ // Clear existing devices
394
+ this.devices = []
395
+ await this.loadDevices()
396
+ }
397
+ }
398
+
399
+ async configureAccessory(accessory: any) {
400
+ try {
401
+ const uuid = accessory.UUID || accessory.UUID
402
+ this.accessories.set(uuid, accessory)
403
+ this.log.info(`Restored cached Matter accessory ${accessory.displayName || uuid}`)
404
+ } catch (e) {
405
+ this.log.warn('configureAccessory failed to restore Matter accessory', e)
406
+ }
407
+ }
408
+
409
+ // Homebridge calls this when restoring cached Matter accessories
410
+ configureMatterAccessory(accessory: any) {
411
+ try {
412
+ const uuid = accessory.uuid || accessory.UUID || accessory.uuid
413
+ this.accessories.set(uuid, accessory)
414
+ this.log.info(`Restored cached Matter accessory ${accessory.displayName || uuid}`)
415
+ } catch (e) {
416
+ this.log.warn('configureMatterAccessory failed to restore Matter accessory', e)
417
+ }
418
+ }
419
+
420
+ // Register serialized Matter accessories via Homebridge Matter API
421
+ async registerMatterAccessories() {
422
+ if (!this.api) {
423
+ return
424
+ }
425
+ const matterApi = (this.api as any).matter
426
+ if (!matterApi || typeof matterApi.registerPlatformAccessories !== 'function') {
427
+ this.log.info('Homebridge Matter API not available; skipping Matter accessory registration')
428
+ return
429
+ }
430
+
431
+ const devices = (this.config as any)?.devices ?? []
432
+ const accessoriesToRegister: any[] = []
433
+
434
+ // Auto-detect Matter from Homebridge API
435
+ const matterAvailable = this.api?.isMatterAvailable?.() && this.api?.isMatterEnabled?.()
436
+ const matterEnabled = matterAvailable || !!this.config.enableMatter
437
+
438
+ for (const raw of devices) {
439
+ const d: any = {
440
+ id: raw.deviceId ?? raw.id,
441
+ name: raw.configDeviceName ?? raw.name,
442
+ type: raw.configDeviceType ?? raw.type ?? raw.deviceType ?? 'unknown',
443
+ }
444
+
445
+ if (!d.id) {
446
+ continue
447
+ }
448
+
449
+ let type: string = d.type
450
+ // Normalize wosweeper variants to vacuum
451
+ if (['wosweeper', 'wosweepermini', 'wosweeperminipro'].includes((type || '').toLowerCase())) {
452
+ type = 'vacuum'
453
+ }
454
+ const matterSupported = !!DEVICE_MATTER_SUPPORTED[(type || '').toLowerCase()]
455
+ const useMatter = matterEnabled && matterSupported
456
+ if (!useMatter) {
457
+ continue
458
+ }
459
+
460
+ try {
461
+ const created = await createDevice({ id: d.id, type, name: d.name }, this.config, true)
462
+ const createdDesc = created.createAccessory?.(this.api) || { id: d.id, name: d.name || type }
463
+ const uuid = matterApi.uuid.generate(`${d.id}`)
464
+ // Try to find existing restored accessory by deviceId
465
+ let existing: any | undefined
466
+ for (const [, a] of Array.from(this.accessories.entries())) {
467
+ try {
468
+ if (a && a.context && a.context.deviceId === d.id) {
469
+ existing = a
470
+ break
471
+ }
472
+ } catch (e) {
473
+ // ignore
474
+ }
475
+ }
476
+
477
+ if (existing) {
478
+ // Ensure context and displayName are up to date
479
+ existing.context = existing.context || {}
480
+ existing.context.deviceId = existing.context.deviceId || d.id
481
+ existing.context.type = existing.context.type || type
482
+ existing.deviceType = existing.deviceType || createdDesc.deviceType || type
483
+ existing.displayName = createdDesc.name || d.name || type
484
+ existing.UUID = existing.UUID || existing.uuid || uuid
485
+ accessoriesToRegister.push(existing)
486
+ this.accessories.set(existing.UUID || uuid, existing)
487
+ } else {
488
+ const serialized: any = {
489
+ UUID: uuid,
490
+ displayName: createdDesc.name || d.name || type,
491
+ deviceType: createdDesc.deviceType || type,
492
+ context: { deviceId: d.id, type, created: true },
493
+ }
494
+ accessoriesToRegister.push(serialized)
495
+ this.accessories.set(uuid, serialized)
496
+ }
497
+ } catch (e) {
498
+ this.log.warn(`Failed to prepare Matter accessory for ${d.id} (${type})`, e)
499
+ }
500
+ }
501
+
502
+ if (accessoriesToRegister.length > 0) {
503
+ try {
504
+ await matterApi.registerPlatformAccessories(PLUGIN_NAME, PLATFORM_NAME, accessoriesToRegister)
505
+ this.log.info(`Registered ${accessoriesToRegister.length} Matter accessory(ies) with Homebridge`)
506
+ } catch (e) {
507
+ this.log.warn('Failed to register Matter accessories', e)
508
+ }
509
+ } else {
510
+ this.log.info('No Matter accessories to register')
511
+ }
512
+ }
513
+ }
514
+
515
+ export default SwitchBotHAPPlatform