@pllla/openclaw-plugin 0.1.0

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 (283) hide show
  1. package/dist/accounts.js +66 -0
  2. package/dist/bridges.js +110 -0
  3. package/dist/index.js +215 -0
  4. package/dist/lane.js +158 -0
  5. package/dist/pairing.js +36 -0
  6. package/dist/stateStore.js +88 -0
  7. package/node_modules/@socket.io/component-emitter/LICENSE +24 -0
  8. package/node_modules/@socket.io/component-emitter/Readme.md +79 -0
  9. package/node_modules/@socket.io/component-emitter/lib/cjs/index.d.ts +179 -0
  10. package/node_modules/@socket.io/component-emitter/lib/cjs/index.js +176 -0
  11. package/node_modules/@socket.io/component-emitter/lib/cjs/package.json +4 -0
  12. package/node_modules/@socket.io/component-emitter/lib/esm/index.d.ts +179 -0
  13. package/node_modules/@socket.io/component-emitter/lib/esm/index.js +169 -0
  14. package/node_modules/@socket.io/component-emitter/lib/esm/package.json +4 -0
  15. package/node_modules/@socket.io/component-emitter/package.json +28 -0
  16. package/node_modules/debug/LICENSE +20 -0
  17. package/node_modules/debug/README.md +481 -0
  18. package/node_modules/debug/package.json +64 -0
  19. package/node_modules/debug/src/browser.js +272 -0
  20. package/node_modules/debug/src/common.js +292 -0
  21. package/node_modules/debug/src/index.js +10 -0
  22. package/node_modules/debug/src/node.js +263 -0
  23. package/node_modules/engine.io-client/LICENSE +22 -0
  24. package/node_modules/engine.io-client/README.md +331 -0
  25. package/node_modules/engine.io-client/build/cjs/browser-entrypoint.d.ts +3 -0
  26. package/node_modules/engine.io-client/build/cjs/browser-entrypoint.js +4 -0
  27. package/node_modules/engine.io-client/build/cjs/contrib/has-cors.d.ts +1 -0
  28. package/node_modules/engine.io-client/build/cjs/contrib/has-cors.js +14 -0
  29. package/node_modules/engine.io-client/build/cjs/contrib/parseqs.d.ts +15 -0
  30. package/node_modules/engine.io-client/build/cjs/contrib/parseqs.js +38 -0
  31. package/node_modules/engine.io-client/build/cjs/contrib/parseuri.d.ts +1 -0
  32. package/node_modules/engine.io-client/build/cjs/contrib/parseuri.js +67 -0
  33. package/node_modules/engine.io-client/build/cjs/globals.d.ts +4 -0
  34. package/node_modules/engine.io-client/build/cjs/globals.js +26 -0
  35. package/node_modules/engine.io-client/build/cjs/globals.node.d.ts +21 -0
  36. package/node_modules/engine.io-client/build/cjs/globals.node.js +97 -0
  37. package/node_modules/engine.io-client/build/cjs/index.d.ts +15 -0
  38. package/node_modules/engine.io-client/build/cjs/index.js +32 -0
  39. package/node_modules/engine.io-client/build/cjs/package.json +10 -0
  40. package/node_modules/engine.io-client/build/cjs/socket.d.ts +482 -0
  41. package/node_modules/engine.io-client/build/cjs/socket.js +766 -0
  42. package/node_modules/engine.io-client/build/cjs/transport.d.ts +106 -0
  43. package/node_modules/engine.io-client/build/cjs/transport.js +153 -0
  44. package/node_modules/engine.io-client/build/cjs/transports/index.d.ts +8 -0
  45. package/node_modules/engine.io-client/build/cjs/transports/index.js +11 -0
  46. package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.d.ts +15 -0
  47. package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.js +60 -0
  48. package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.d.ts +108 -0
  49. package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.js +285 -0
  50. package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.d.ts +11 -0
  51. package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.js +44 -0
  52. package/node_modules/engine.io-client/build/cjs/transports/polling.d.ts +52 -0
  53. package/node_modules/engine.io-client/build/cjs/transports/polling.js +165 -0
  54. package/node_modules/engine.io-client/build/cjs/transports/websocket.d.ts +36 -0
  55. package/node_modules/engine.io-client/build/cjs/transports/websocket.js +136 -0
  56. package/node_modules/engine.io-client/build/cjs/transports/websocket.node.d.ts +14 -0
  57. package/node_modules/engine.io-client/build/cjs/transports/websocket.node.js +68 -0
  58. package/node_modules/engine.io-client/build/cjs/transports/webtransport.d.ts +18 -0
  59. package/node_modules/engine.io-client/build/cjs/transports/webtransport.js +94 -0
  60. package/node_modules/engine.io-client/build/cjs/util.d.ts +7 -0
  61. package/node_modules/engine.io-client/build/cjs/util.js +65 -0
  62. package/node_modules/engine.io-client/build/esm/browser-entrypoint.d.ts +3 -0
  63. package/node_modules/engine.io-client/build/esm/browser-entrypoint.js +2 -0
  64. package/node_modules/engine.io-client/build/esm/contrib/has-cors.d.ts +1 -0
  65. package/node_modules/engine.io-client/build/esm/contrib/has-cors.js +11 -0
  66. package/node_modules/engine.io-client/build/esm/contrib/parseqs.d.ts +15 -0
  67. package/node_modules/engine.io-client/build/esm/contrib/parseqs.js +34 -0
  68. package/node_modules/engine.io-client/build/esm/contrib/parseuri.d.ts +1 -0
  69. package/node_modules/engine.io-client/build/esm/contrib/parseuri.js +64 -0
  70. package/node_modules/engine.io-client/build/esm/globals.d.ts +4 -0
  71. package/node_modules/engine.io-client/build/esm/globals.js +22 -0
  72. package/node_modules/engine.io-client/build/esm/globals.node.d.ts +21 -0
  73. package/node_modules/engine.io-client/build/esm/globals.node.js +91 -0
  74. package/node_modules/engine.io-client/build/esm/index.d.ts +15 -0
  75. package/node_modules/engine.io-client/build/esm/index.js +15 -0
  76. package/node_modules/engine.io-client/build/esm/package.json +10 -0
  77. package/node_modules/engine.io-client/build/esm/socket.d.ts +482 -0
  78. package/node_modules/engine.io-client/build/esm/socket.js +728 -0
  79. package/node_modules/engine.io-client/build/esm/transport.d.ts +106 -0
  80. package/node_modules/engine.io-client/build/esm/transport.js +142 -0
  81. package/node_modules/engine.io-client/build/esm/transports/index.d.ts +8 -0
  82. package/node_modules/engine.io-client/build/esm/transports/index.js +8 -0
  83. package/node_modules/engine.io-client/build/esm/transports/polling-fetch.d.ts +15 -0
  84. package/node_modules/engine.io-client/build/esm/transports/polling-fetch.js +56 -0
  85. package/node_modules/engine.io-client/build/esm/transports/polling-xhr.d.ts +108 -0
  86. package/node_modules/engine.io-client/build/esm/transports/polling-xhr.js +271 -0
  87. package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.d.ts +11 -0
  88. package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.js +17 -0
  89. package/node_modules/engine.io-client/build/esm/transports/polling.d.ts +52 -0
  90. package/node_modules/engine.io-client/build/esm/transports/polling.js +145 -0
  91. package/node_modules/engine.io-client/build/esm/transports/websocket.d.ts +36 -0
  92. package/node_modules/engine.io-client/build/esm/transports/websocket.js +125 -0
  93. package/node_modules/engine.io-client/build/esm/transports/websocket.node.d.ts +14 -0
  94. package/node_modules/engine.io-client/build/esm/transports/websocket.node.js +41 -0
  95. package/node_modules/engine.io-client/build/esm/transports/webtransport.d.ts +18 -0
  96. package/node_modules/engine.io-client/build/esm/transports/webtransport.js +80 -0
  97. package/node_modules/engine.io-client/build/esm/util.d.ts +7 -0
  98. package/node_modules/engine.io-client/build/esm/util.js +59 -0
  99. package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.d.ts +3 -0
  100. package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.js +2 -0
  101. package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.d.ts +1 -0
  102. package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.js +11 -0
  103. package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.d.ts +15 -0
  104. package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.js +34 -0
  105. package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.d.ts +1 -0
  106. package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.js +64 -0
  107. package/node_modules/engine.io-client/build/esm-debug/globals.d.ts +4 -0
  108. package/node_modules/engine.io-client/build/esm-debug/globals.js +22 -0
  109. package/node_modules/engine.io-client/build/esm-debug/globals.node.d.ts +21 -0
  110. package/node_modules/engine.io-client/build/esm-debug/globals.node.js +91 -0
  111. package/node_modules/engine.io-client/build/esm-debug/index.d.ts +15 -0
  112. package/node_modules/engine.io-client/build/esm-debug/index.js +15 -0
  113. package/node_modules/engine.io-client/build/esm-debug/package.json +10 -0
  114. package/node_modules/engine.io-client/build/esm-debug/socket.d.ts +482 -0
  115. package/node_modules/engine.io-client/build/esm-debug/socket.js +757 -0
  116. package/node_modules/engine.io-client/build/esm-debug/transport.d.ts +106 -0
  117. package/node_modules/engine.io-client/build/esm-debug/transport.js +145 -0
  118. package/node_modules/engine.io-client/build/esm-debug/transports/index.d.ts +8 -0
  119. package/node_modules/engine.io-client/build/esm-debug/transports/index.js +8 -0
  120. package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.d.ts +15 -0
  121. package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.js +56 -0
  122. package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.d.ts +108 -0
  123. package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.js +276 -0
  124. package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.d.ts +11 -0
  125. package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.js +17 -0
  126. package/node_modules/engine.io-client/build/esm-debug/transports/polling.d.ts +52 -0
  127. package/node_modules/engine.io-client/build/esm-debug/transports/polling.js +158 -0
  128. package/node_modules/engine.io-client/build/esm-debug/transports/websocket.d.ts +36 -0
  129. package/node_modules/engine.io-client/build/esm-debug/transports/websocket.js +128 -0
  130. package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.d.ts +14 -0
  131. package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.js +41 -0
  132. package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.d.ts +18 -0
  133. package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.js +87 -0
  134. package/node_modules/engine.io-client/build/esm-debug/util.d.ts +7 -0
  135. package/node_modules/engine.io-client/build/esm-debug/util.js +59 -0
  136. package/node_modules/engine.io-client/dist/engine.io.esm.min.js +7 -0
  137. package/node_modules/engine.io-client/dist/engine.io.esm.min.js.map +1 -0
  138. package/node_modules/engine.io-client/dist/engine.io.js +3094 -0
  139. package/node_modules/engine.io-client/dist/engine.io.js.map +1 -0
  140. package/node_modules/engine.io-client/dist/engine.io.min.js +7 -0
  141. package/node_modules/engine.io-client/dist/engine.io.min.js.map +1 -0
  142. package/node_modules/engine.io-client/package.json +95 -0
  143. package/node_modules/engine.io-parser/LICENSE +22 -0
  144. package/node_modules/engine.io-parser/Readme.md +158 -0
  145. package/node_modules/engine.io-parser/build/cjs/commons.d.ts +14 -0
  146. package/node_modules/engine.io-parser/build/cjs/commons.js +19 -0
  147. package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.d.ts +2 -0
  148. package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.js +48 -0
  149. package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.d.ts +2 -0
  150. package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.js +66 -0
  151. package/node_modules/engine.io-parser/build/cjs/decodePacket.d.ts +2 -0
  152. package/node_modules/engine.io-parser/build/cjs/decodePacket.js +59 -0
  153. package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.d.ts +4 -0
  154. package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.js +72 -0
  155. package/node_modules/engine.io-parser/build/cjs/encodePacket.d.ts +3 -0
  156. package/node_modules/engine.io-parser/build/cjs/encodePacket.js +38 -0
  157. package/node_modules/engine.io-parser/build/cjs/index.d.ts +9 -0
  158. package/node_modules/engine.io-parser/build/cjs/index.js +164 -0
  159. package/node_modules/engine.io-parser/build/cjs/package.json +8 -0
  160. package/node_modules/engine.io-parser/build/esm/commons.d.ts +14 -0
  161. package/node_modules/engine.io-parser/build/esm/commons.js +14 -0
  162. package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.d.ts +2 -0
  163. package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js +43 -0
  164. package/node_modules/engine.io-parser/build/esm/decodePacket.browser.d.ts +2 -0
  165. package/node_modules/engine.io-parser/build/esm/decodePacket.browser.js +62 -0
  166. package/node_modules/engine.io-parser/build/esm/decodePacket.d.ts +2 -0
  167. package/node_modules/engine.io-parser/build/esm/decodePacket.js +55 -0
  168. package/node_modules/engine.io-parser/build/esm/encodePacket.browser.d.ts +4 -0
  169. package/node_modules/engine.io-parser/build/esm/encodePacket.browser.js +68 -0
  170. package/node_modules/engine.io-parser/build/esm/encodePacket.d.ts +3 -0
  171. package/node_modules/engine.io-parser/build/esm/encodePacket.js +33 -0
  172. package/node_modules/engine.io-parser/build/esm/index.d.ts +9 -0
  173. package/node_modules/engine.io-parser/build/esm/index.js +156 -0
  174. package/node_modules/engine.io-parser/build/esm/package.json +8 -0
  175. package/node_modules/engine.io-parser/package.json +46 -0
  176. package/node_modules/ms/index.js +162 -0
  177. package/node_modules/ms/license.md +21 -0
  178. package/node_modules/ms/package.json +38 -0
  179. package/node_modules/ms/readme.md +59 -0
  180. package/node_modules/socket.io-client/LICENSE +21 -0
  181. package/node_modules/socket.io-client/README.md +29 -0
  182. package/node_modules/socket.io-client/build/cjs/browser-entrypoint.d.ts +2 -0
  183. package/node_modules/socket.io-client/build/cjs/browser-entrypoint.js +4 -0
  184. package/node_modules/socket.io-client/build/cjs/contrib/backo2.d.ts +12 -0
  185. package/node_modules/socket.io-client/build/cjs/contrib/backo2.js +69 -0
  186. package/node_modules/socket.io-client/build/cjs/index.d.ts +29 -0
  187. package/node_modules/socket.io-client/build/cjs/index.js +76 -0
  188. package/node_modules/socket.io-client/build/cjs/manager.d.ts +295 -0
  189. package/node_modules/socket.io-client/build/cjs/manager.js +416 -0
  190. package/node_modules/socket.io-client/build/cjs/on.d.ts +2 -0
  191. package/node_modules/socket.io-client/build/cjs/on.js +9 -0
  192. package/node_modules/socket.io-client/build/cjs/socket.d.ts +593 -0
  193. package/node_modules/socket.io-client/build/cjs/socket.js +909 -0
  194. package/node_modules/socket.io-client/build/cjs/url.d.ts +33 -0
  195. package/node_modules/socket.io-client/build/cjs/url.js +69 -0
  196. package/node_modules/socket.io-client/build/esm/browser-entrypoint.d.ts +2 -0
  197. package/node_modules/socket.io-client/build/esm/browser-entrypoint.js +2 -0
  198. package/node_modules/socket.io-client/build/esm/contrib/backo2.d.ts +12 -0
  199. package/node_modules/socket.io-client/build/esm/contrib/backo2.js +66 -0
  200. package/node_modules/socket.io-client/build/esm/index.d.ts +29 -0
  201. package/node_modules/socket.io-client/build/esm/index.js +58 -0
  202. package/node_modules/socket.io-client/build/esm/manager.d.ts +295 -0
  203. package/node_modules/socket.io-client/build/esm/manager.js +367 -0
  204. package/node_modules/socket.io-client/build/esm/on.d.ts +2 -0
  205. package/node_modules/socket.io-client/build/esm/on.js +6 -0
  206. package/node_modules/socket.io-client/build/esm/package.json +5 -0
  207. package/node_modules/socket.io-client/build/esm/socket.d.ts +593 -0
  208. package/node_modules/socket.io-client/build/esm/socket.js +880 -0
  209. package/node_modules/socket.io-client/build/esm/url.d.ts +33 -0
  210. package/node_modules/socket.io-client/build/esm/url.js +59 -0
  211. package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.d.ts +2 -0
  212. package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.js +2 -0
  213. package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.d.ts +12 -0
  214. package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.js +66 -0
  215. package/node_modules/socket.io-client/build/esm-debug/index.d.ts +29 -0
  216. package/node_modules/socket.io-client/build/esm-debug/index.js +62 -0
  217. package/node_modules/socket.io-client/build/esm-debug/manager.d.ts +295 -0
  218. package/node_modules/socket.io-client/build/esm-debug/manager.js +386 -0
  219. package/node_modules/socket.io-client/build/esm-debug/on.d.ts +2 -0
  220. package/node_modules/socket.io-client/build/esm-debug/on.js +6 -0
  221. package/node_modules/socket.io-client/build/esm-debug/package.json +5 -0
  222. package/node_modules/socket.io-client/build/esm-debug/socket.d.ts +593 -0
  223. package/node_modules/socket.io-client/build/esm-debug/socket.js +902 -0
  224. package/node_modules/socket.io-client/build/esm-debug/url.d.ts +33 -0
  225. package/node_modules/socket.io-client/build/esm-debug/url.js +63 -0
  226. package/node_modules/socket.io-client/dist/socket.io.esm.min.js +7 -0
  227. package/node_modules/socket.io-client/dist/socket.io.esm.min.js.map +1 -0
  228. package/node_modules/socket.io-client/dist/socket.io.js +4955 -0
  229. package/node_modules/socket.io-client/dist/socket.io.js.map +1 -0
  230. package/node_modules/socket.io-client/dist/socket.io.min.js +7 -0
  231. package/node_modules/socket.io-client/dist/socket.io.min.js.map +1 -0
  232. package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js +7 -0
  233. package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js.map +1 -0
  234. package/node_modules/socket.io-client/package.json +101 -0
  235. package/node_modules/socket.io-parser/LICENSE +20 -0
  236. package/node_modules/socket.io-parser/Readme.md +81 -0
  237. package/node_modules/socket.io-parser/build/cjs/binary.d.ts +20 -0
  238. package/node_modules/socket.io-parser/build/cjs/binary.js +90 -0
  239. package/node_modules/socket.io-parser/build/cjs/index.d.ts +101 -0
  240. package/node_modules/socket.io-parser/build/cjs/index.js +366 -0
  241. package/node_modules/socket.io-parser/build/cjs/is-binary.d.ts +7 -0
  242. package/node_modules/socket.io-parser/build/cjs/is-binary.js +54 -0
  243. package/node_modules/socket.io-parser/build/cjs/package.json +3 -0
  244. package/node_modules/socket.io-parser/build/esm/binary.d.ts +20 -0
  245. package/node_modules/socket.io-parser/build/esm/binary.js +86 -0
  246. package/node_modules/socket.io-parser/build/esm/index.d.ts +101 -0
  247. package/node_modules/socket.io-parser/build/esm/index.js +352 -0
  248. package/node_modules/socket.io-parser/build/esm/is-binary.d.ts +7 -0
  249. package/node_modules/socket.io-parser/build/esm/is-binary.js +50 -0
  250. package/node_modules/socket.io-parser/build/esm/package.json +3 -0
  251. package/node_modules/socket.io-parser/build/esm-debug/binary.d.ts +20 -0
  252. package/node_modules/socket.io-parser/build/esm-debug/binary.js +86 -0
  253. package/node_modules/socket.io-parser/build/esm-debug/index.d.ts +101 -0
  254. package/node_modules/socket.io-parser/build/esm-debug/index.js +357 -0
  255. package/node_modules/socket.io-parser/build/esm-debug/is-binary.d.ts +7 -0
  256. package/node_modules/socket.io-parser/build/esm-debug/is-binary.js +50 -0
  257. package/node_modules/socket.io-parser/build/esm-debug/package.json +3 -0
  258. package/node_modules/socket.io-parser/package.json +44 -0
  259. package/node_modules/ws/LICENSE +20 -0
  260. package/node_modules/ws/README.md +548 -0
  261. package/node_modules/ws/browser.js +8 -0
  262. package/node_modules/ws/index.js +22 -0
  263. package/node_modules/ws/lib/buffer-util.js +131 -0
  264. package/node_modules/ws/lib/constants.js +19 -0
  265. package/node_modules/ws/lib/event-target.js +292 -0
  266. package/node_modules/ws/lib/extension.js +203 -0
  267. package/node_modules/ws/lib/limiter.js +55 -0
  268. package/node_modules/ws/lib/permessage-deflate.js +530 -0
  269. package/node_modules/ws/lib/receiver.js +743 -0
  270. package/node_modules/ws/lib/sender.js +607 -0
  271. package/node_modules/ws/lib/stream.js +161 -0
  272. package/node_modules/ws/lib/subprotocol.js +62 -0
  273. package/node_modules/ws/lib/validation.js +152 -0
  274. package/node_modules/ws/lib/websocket-server.js +562 -0
  275. package/node_modules/ws/lib/websocket.js +1407 -0
  276. package/node_modules/ws/package.json +74 -0
  277. package/node_modules/ws/wrapper.mjs +21 -0
  278. package/node_modules/xmlhttprequest-ssl/LICENSE +22 -0
  279. package/node_modules/xmlhttprequest-ssl/README.md +67 -0
  280. package/node_modules/xmlhttprequest-ssl/lib/XMLHttpRequest.js +689 -0
  281. package/node_modules/xmlhttprequest-ssl/package.json +40 -0
  282. package/openclaw.plugin.json +60 -0
  283. package/package.json +48 -0
@@ -0,0 +1,743 @@
1
+ 'use strict';
2
+
3
+ const { Writable } = require('stream');
4
+
5
+ const PerMessageDeflate = require('./permessage-deflate');
6
+ const {
7
+ BINARY_TYPES,
8
+ EMPTY_BUFFER,
9
+ kStatusCode,
10
+ kWebSocket
11
+ } = require('./constants');
12
+ const { concat, toArrayBuffer, unmask } = require('./buffer-util');
13
+ const { isValidStatusCode, isValidUTF8 } = require('./validation');
14
+
15
+ const FastBuffer = Buffer[Symbol.species];
16
+
17
+ const GET_INFO = 0;
18
+ const GET_PAYLOAD_LENGTH_16 = 1;
19
+ const GET_PAYLOAD_LENGTH_64 = 2;
20
+ const GET_MASK = 3;
21
+ const GET_DATA = 4;
22
+ const INFLATING = 5;
23
+ const DEFER_EVENT = 6;
24
+
25
+ /**
26
+ * HyBi Receiver implementation.
27
+ *
28
+ * @extends Writable
29
+ */
30
+ class Receiver extends Writable {
31
+ /**
32
+ * Creates a Receiver instance.
33
+ *
34
+ * @param {Object} [options] Options object
35
+ * @param {Boolean} [options.allowSynchronousEvents=true] Specifies whether
36
+ * any of the `'message'`, `'ping'`, and `'pong'` events can be emitted
37
+ * multiple times in the same tick
38
+ * @param {String} [options.binaryType=nodebuffer] The type for binary data
39
+ * @param {Object} [options.extensions] An object containing the negotiated
40
+ * extensions
41
+ * @param {Boolean} [options.isServer=false] Specifies whether to operate in
42
+ * client or server mode
43
+ * @param {Number} [options.maxBufferedChunks=0] The maximum number of
44
+ * buffered data chunks
45
+ * @param {Number} [options.maxFragments=0] The maximum number of message
46
+ * fragments
47
+ * @param {Number} [options.maxPayload=0] The maximum allowed message length
48
+ * @param {Boolean} [options.skipUTF8Validation=false] Specifies whether or
49
+ * not to skip UTF-8 validation for text and close messages
50
+ */
51
+ constructor(options = {}) {
52
+ super();
53
+
54
+ this._allowSynchronousEvents =
55
+ options.allowSynchronousEvents !== undefined
56
+ ? options.allowSynchronousEvents
57
+ : true;
58
+ this._binaryType = options.binaryType || BINARY_TYPES[0];
59
+ this._extensions = options.extensions || {};
60
+ this._isServer = !!options.isServer;
61
+ this._maxBufferedChunks = options.maxBufferedChunks | 0;
62
+ this._maxFragments = options.maxFragments | 0;
63
+ this._maxPayload = options.maxPayload | 0;
64
+ this._skipUTF8Validation = !!options.skipUTF8Validation;
65
+ this[kWebSocket] = undefined;
66
+
67
+ this._bufferedBytes = 0;
68
+ this._buffers = [];
69
+
70
+ this._compressed = false;
71
+ this._payloadLength = 0;
72
+ this._mask = undefined;
73
+ this._fragmented = 0;
74
+ this._masked = false;
75
+ this._fin = false;
76
+ this._opcode = 0;
77
+
78
+ this._totalPayloadLength = 0;
79
+ this._messageLength = 0;
80
+ this._numFragments = 0;
81
+ this._fragments = [];
82
+
83
+ this._errored = false;
84
+ this._loop = false;
85
+ this._state = GET_INFO;
86
+ }
87
+
88
+ /**
89
+ * Implements `Writable.prototype._write()`.
90
+ *
91
+ * @param {Buffer} chunk The chunk of data to write
92
+ * @param {String} encoding The character encoding of `chunk`
93
+ * @param {Function} cb Callback
94
+ * @private
95
+ */
96
+ _write(chunk, encoding, cb) {
97
+ if (this._opcode === 0x08 && this._state == GET_INFO) return cb();
98
+
99
+ if (
100
+ this._maxBufferedChunks > 0 &&
101
+ this._buffers.length >= this._maxBufferedChunks
102
+ ) {
103
+ cb(
104
+ this.createError(
105
+ RangeError,
106
+ 'Too many buffered chunks',
107
+ false,
108
+ 1008,
109
+ 'WS_ERR_TOO_MANY_BUFFERED_PARTS'
110
+ )
111
+ );
112
+ return;
113
+ }
114
+
115
+ this._bufferedBytes += chunk.length;
116
+ this._buffers.push(chunk);
117
+ this.startLoop(cb);
118
+ }
119
+
120
+ /**
121
+ * Consumes `n` bytes from the buffered data.
122
+ *
123
+ * @param {Number} n The number of bytes to consume
124
+ * @return {Buffer} The consumed bytes
125
+ * @private
126
+ */
127
+ consume(n) {
128
+ this._bufferedBytes -= n;
129
+
130
+ if (n === this._buffers[0].length) return this._buffers.shift();
131
+
132
+ if (n < this._buffers[0].length) {
133
+ const buf = this._buffers[0];
134
+ this._buffers[0] = new FastBuffer(
135
+ buf.buffer,
136
+ buf.byteOffset + n,
137
+ buf.length - n
138
+ );
139
+
140
+ return new FastBuffer(buf.buffer, buf.byteOffset, n);
141
+ }
142
+
143
+ const dst = Buffer.allocUnsafe(n);
144
+
145
+ do {
146
+ const buf = this._buffers[0];
147
+ const offset = dst.length - n;
148
+
149
+ if (n >= buf.length) {
150
+ dst.set(this._buffers.shift(), offset);
151
+ } else {
152
+ dst.set(new Uint8Array(buf.buffer, buf.byteOffset, n), offset);
153
+ this._buffers[0] = new FastBuffer(
154
+ buf.buffer,
155
+ buf.byteOffset + n,
156
+ buf.length - n
157
+ );
158
+ }
159
+
160
+ n -= buf.length;
161
+ } while (n > 0);
162
+
163
+ return dst;
164
+ }
165
+
166
+ /**
167
+ * Starts the parsing loop.
168
+ *
169
+ * @param {Function} cb Callback
170
+ * @private
171
+ */
172
+ startLoop(cb) {
173
+ this._loop = true;
174
+
175
+ do {
176
+ switch (this._state) {
177
+ case GET_INFO:
178
+ this.getInfo(cb);
179
+ break;
180
+ case GET_PAYLOAD_LENGTH_16:
181
+ this.getPayloadLength16(cb);
182
+ break;
183
+ case GET_PAYLOAD_LENGTH_64:
184
+ this.getPayloadLength64(cb);
185
+ break;
186
+ case GET_MASK:
187
+ this.getMask();
188
+ break;
189
+ case GET_DATA:
190
+ this.getData(cb);
191
+ break;
192
+ case INFLATING:
193
+ case DEFER_EVENT:
194
+ this._loop = false;
195
+ return;
196
+ }
197
+ } while (this._loop);
198
+
199
+ if (!this._errored) cb();
200
+ }
201
+
202
+ /**
203
+ * Reads the first two bytes of a frame.
204
+ *
205
+ * @param {Function} cb Callback
206
+ * @private
207
+ */
208
+ getInfo(cb) {
209
+ if (this._bufferedBytes < 2) {
210
+ this._loop = false;
211
+ return;
212
+ }
213
+
214
+ const buf = this.consume(2);
215
+
216
+ if ((buf[0] & 0x30) !== 0x00) {
217
+ const error = this.createError(
218
+ RangeError,
219
+ 'RSV2 and RSV3 must be clear',
220
+ true,
221
+ 1002,
222
+ 'WS_ERR_UNEXPECTED_RSV_2_3'
223
+ );
224
+
225
+ cb(error);
226
+ return;
227
+ }
228
+
229
+ const compressed = (buf[0] & 0x40) === 0x40;
230
+
231
+ if (compressed && !this._extensions[PerMessageDeflate.extensionName]) {
232
+ const error = this.createError(
233
+ RangeError,
234
+ 'RSV1 must be clear',
235
+ true,
236
+ 1002,
237
+ 'WS_ERR_UNEXPECTED_RSV_1'
238
+ );
239
+
240
+ cb(error);
241
+ return;
242
+ }
243
+
244
+ this._fin = (buf[0] & 0x80) === 0x80;
245
+ this._opcode = buf[0] & 0x0f;
246
+ this._payloadLength = buf[1] & 0x7f;
247
+
248
+ if (this._opcode === 0x00) {
249
+ if (compressed) {
250
+ const error = this.createError(
251
+ RangeError,
252
+ 'RSV1 must be clear',
253
+ true,
254
+ 1002,
255
+ 'WS_ERR_UNEXPECTED_RSV_1'
256
+ );
257
+
258
+ cb(error);
259
+ return;
260
+ }
261
+
262
+ if (!this._fragmented) {
263
+ const error = this.createError(
264
+ RangeError,
265
+ 'invalid opcode 0',
266
+ true,
267
+ 1002,
268
+ 'WS_ERR_INVALID_OPCODE'
269
+ );
270
+
271
+ cb(error);
272
+ return;
273
+ }
274
+
275
+ this._opcode = this._fragmented;
276
+ } else if (this._opcode === 0x01 || this._opcode === 0x02) {
277
+ if (this._fragmented) {
278
+ const error = this.createError(
279
+ RangeError,
280
+ `invalid opcode ${this._opcode}`,
281
+ true,
282
+ 1002,
283
+ 'WS_ERR_INVALID_OPCODE'
284
+ );
285
+
286
+ cb(error);
287
+ return;
288
+ }
289
+
290
+ this._compressed = compressed;
291
+ } else if (this._opcode > 0x07 && this._opcode < 0x0b) {
292
+ if (!this._fin) {
293
+ const error = this.createError(
294
+ RangeError,
295
+ 'FIN must be set',
296
+ true,
297
+ 1002,
298
+ 'WS_ERR_EXPECTED_FIN'
299
+ );
300
+
301
+ cb(error);
302
+ return;
303
+ }
304
+
305
+ if (compressed) {
306
+ const error = this.createError(
307
+ RangeError,
308
+ 'RSV1 must be clear',
309
+ true,
310
+ 1002,
311
+ 'WS_ERR_UNEXPECTED_RSV_1'
312
+ );
313
+
314
+ cb(error);
315
+ return;
316
+ }
317
+
318
+ if (
319
+ this._payloadLength > 0x7d ||
320
+ (this._opcode === 0x08 && this._payloadLength === 1)
321
+ ) {
322
+ const error = this.createError(
323
+ RangeError,
324
+ `invalid payload length ${this._payloadLength}`,
325
+ true,
326
+ 1002,
327
+ 'WS_ERR_INVALID_CONTROL_PAYLOAD_LENGTH'
328
+ );
329
+
330
+ cb(error);
331
+ return;
332
+ }
333
+ } else {
334
+ const error = this.createError(
335
+ RangeError,
336
+ `invalid opcode ${this._opcode}`,
337
+ true,
338
+ 1002,
339
+ 'WS_ERR_INVALID_OPCODE'
340
+ );
341
+
342
+ cb(error);
343
+ return;
344
+ }
345
+
346
+ if (!this._fin && !this._fragmented) this._fragmented = this._opcode;
347
+ this._masked = (buf[1] & 0x80) === 0x80;
348
+
349
+ if (this._isServer) {
350
+ if (!this._masked) {
351
+ const error = this.createError(
352
+ RangeError,
353
+ 'MASK must be set',
354
+ true,
355
+ 1002,
356
+ 'WS_ERR_EXPECTED_MASK'
357
+ );
358
+
359
+ cb(error);
360
+ return;
361
+ }
362
+ } else if (this._masked) {
363
+ const error = this.createError(
364
+ RangeError,
365
+ 'MASK must be clear',
366
+ true,
367
+ 1002,
368
+ 'WS_ERR_UNEXPECTED_MASK'
369
+ );
370
+
371
+ cb(error);
372
+ return;
373
+ }
374
+
375
+ if (this._payloadLength === 126) this._state = GET_PAYLOAD_LENGTH_16;
376
+ else if (this._payloadLength === 127) this._state = GET_PAYLOAD_LENGTH_64;
377
+ else this.haveLength(cb);
378
+ }
379
+
380
+ /**
381
+ * Gets extended payload length (7+16).
382
+ *
383
+ * @param {Function} cb Callback
384
+ * @private
385
+ */
386
+ getPayloadLength16(cb) {
387
+ if (this._bufferedBytes < 2) {
388
+ this._loop = false;
389
+ return;
390
+ }
391
+
392
+ this._payloadLength = this.consume(2).readUInt16BE(0);
393
+ this.haveLength(cb);
394
+ }
395
+
396
+ /**
397
+ * Gets extended payload length (7+64).
398
+ *
399
+ * @param {Function} cb Callback
400
+ * @private
401
+ */
402
+ getPayloadLength64(cb) {
403
+ if (this._bufferedBytes < 8) {
404
+ this._loop = false;
405
+ return;
406
+ }
407
+
408
+ const buf = this.consume(8);
409
+ const num = buf.readUInt32BE(0);
410
+
411
+ //
412
+ // The maximum safe integer in JavaScript is 2^53 - 1. An error is returned
413
+ // if payload length is greater than this number.
414
+ //
415
+ if (num > Math.pow(2, 53 - 32) - 1) {
416
+ const error = this.createError(
417
+ RangeError,
418
+ 'Unsupported WebSocket frame: payload length > 2^53 - 1',
419
+ false,
420
+ 1009,
421
+ 'WS_ERR_UNSUPPORTED_DATA_PAYLOAD_LENGTH'
422
+ );
423
+
424
+ cb(error);
425
+ return;
426
+ }
427
+
428
+ this._payloadLength = num * Math.pow(2, 32) + buf.readUInt32BE(4);
429
+ this.haveLength(cb);
430
+ }
431
+
432
+ /**
433
+ * Payload length has been read.
434
+ *
435
+ * @param {Function} cb Callback
436
+ * @private
437
+ */
438
+ haveLength(cb) {
439
+ if (this._payloadLength && this._opcode < 0x08) {
440
+ this._totalPayloadLength += this._payloadLength;
441
+ if (this._totalPayloadLength > this._maxPayload && this._maxPayload > 0) {
442
+ const error = this.createError(
443
+ RangeError,
444
+ 'Max payload size exceeded',
445
+ false,
446
+ 1009,
447
+ 'WS_ERR_UNSUPPORTED_MESSAGE_LENGTH'
448
+ );
449
+
450
+ cb(error);
451
+ return;
452
+ }
453
+ }
454
+
455
+ if (this._masked) this._state = GET_MASK;
456
+ else this._state = GET_DATA;
457
+ }
458
+
459
+ /**
460
+ * Reads mask bytes.
461
+ *
462
+ * @private
463
+ */
464
+ getMask() {
465
+ if (this._bufferedBytes < 4) {
466
+ this._loop = false;
467
+ return;
468
+ }
469
+
470
+ this._mask = this.consume(4);
471
+ this._state = GET_DATA;
472
+ }
473
+
474
+ /**
475
+ * Reads data bytes.
476
+ *
477
+ * @param {Function} cb Callback
478
+ * @private
479
+ */
480
+ getData(cb) {
481
+ let data = EMPTY_BUFFER;
482
+
483
+ if (this._payloadLength) {
484
+ if (this._bufferedBytes < this._payloadLength) {
485
+ this._loop = false;
486
+ return;
487
+ }
488
+
489
+ data = this.consume(this._payloadLength);
490
+
491
+ if (
492
+ this._masked &&
493
+ (this._mask[0] | this._mask[1] | this._mask[2] | this._mask[3]) !== 0
494
+ ) {
495
+ unmask(data, this._mask);
496
+ }
497
+ }
498
+
499
+ if (this._opcode > 0x07) {
500
+ this.controlMessage(data, cb);
501
+ return;
502
+ }
503
+
504
+ if (this._maxFragments > 0 && ++this._numFragments > this._maxFragments) {
505
+ const error = this.createError(
506
+ RangeError,
507
+ 'Too many message fragments',
508
+ false,
509
+ 1008,
510
+ 'WS_ERR_TOO_MANY_BUFFERED_PARTS'
511
+ );
512
+
513
+ cb(error);
514
+ return;
515
+ }
516
+
517
+ if (this._compressed) {
518
+ this._state = INFLATING;
519
+ this.decompress(data, cb);
520
+ return;
521
+ }
522
+
523
+ if (data.length) {
524
+ //
525
+ // This message is not compressed so its length is the sum of the payload
526
+ // length of all fragments.
527
+ //
528
+ this._messageLength = this._totalPayloadLength;
529
+ this._fragments.push(data);
530
+ }
531
+
532
+ this.dataMessage(cb);
533
+ }
534
+
535
+ /**
536
+ * Decompresses data.
537
+ *
538
+ * @param {Buffer} data Compressed data
539
+ * @param {Function} cb Callback
540
+ * @private
541
+ */
542
+ decompress(data, cb) {
543
+ const perMessageDeflate = this._extensions[PerMessageDeflate.extensionName];
544
+
545
+ perMessageDeflate.decompress(data, this._fin, (err, buf) => {
546
+ if (err) return cb(err);
547
+
548
+ if (buf.length) {
549
+ this._messageLength += buf.length;
550
+ if (this._messageLength > this._maxPayload && this._maxPayload > 0) {
551
+ const error = this.createError(
552
+ RangeError,
553
+ 'Max payload size exceeded',
554
+ false,
555
+ 1009,
556
+ 'WS_ERR_UNSUPPORTED_MESSAGE_LENGTH'
557
+ );
558
+
559
+ cb(error);
560
+ return;
561
+ }
562
+
563
+ this._fragments.push(buf);
564
+ }
565
+
566
+ this.dataMessage(cb);
567
+ if (this._state === GET_INFO) this.startLoop(cb);
568
+ });
569
+ }
570
+
571
+ /**
572
+ * Handles a data message.
573
+ *
574
+ * @param {Function} cb Callback
575
+ * @private
576
+ */
577
+ dataMessage(cb) {
578
+ if (!this._fin) {
579
+ this._state = GET_INFO;
580
+ return;
581
+ }
582
+
583
+ const messageLength = this._messageLength;
584
+ const fragments = this._fragments;
585
+
586
+ this._totalPayloadLength = 0;
587
+ this._messageLength = 0;
588
+ this._fragmented = 0;
589
+ this._numFragments = 0;
590
+ this._fragments = [];
591
+
592
+ if (this._opcode === 2) {
593
+ let data;
594
+
595
+ if (this._binaryType === 'nodebuffer') {
596
+ data = concat(fragments, messageLength);
597
+ } else if (this._binaryType === 'arraybuffer') {
598
+ data = toArrayBuffer(concat(fragments, messageLength));
599
+ } else if (this._binaryType === 'blob') {
600
+ data = new Blob(fragments);
601
+ } else {
602
+ data = fragments;
603
+ }
604
+
605
+ if (this._allowSynchronousEvents) {
606
+ this.emit('message', data, true);
607
+ this._state = GET_INFO;
608
+ } else {
609
+ this._state = DEFER_EVENT;
610
+ setImmediate(() => {
611
+ this.emit('message', data, true);
612
+ this._state = GET_INFO;
613
+ this.startLoop(cb);
614
+ });
615
+ }
616
+ } else {
617
+ const buf = concat(fragments, messageLength);
618
+
619
+ if (!this._skipUTF8Validation && !isValidUTF8(buf)) {
620
+ const error = this.createError(
621
+ Error,
622
+ 'invalid UTF-8 sequence',
623
+ true,
624
+ 1007,
625
+ 'WS_ERR_INVALID_UTF8'
626
+ );
627
+
628
+ cb(error);
629
+ return;
630
+ }
631
+
632
+ if (this._state === INFLATING || this._allowSynchronousEvents) {
633
+ this.emit('message', buf, false);
634
+ this._state = GET_INFO;
635
+ } else {
636
+ this._state = DEFER_EVENT;
637
+ setImmediate(() => {
638
+ this.emit('message', buf, false);
639
+ this._state = GET_INFO;
640
+ this.startLoop(cb);
641
+ });
642
+ }
643
+ }
644
+ }
645
+
646
+ /**
647
+ * Handles a control message.
648
+ *
649
+ * @param {Buffer} data Data to handle
650
+ * @return {(Error|RangeError|undefined)} A possible error
651
+ * @private
652
+ */
653
+ controlMessage(data, cb) {
654
+ if (this._opcode === 0x08) {
655
+ if (data.length === 0) {
656
+ this._loop = false;
657
+ this.emit('conclude', 1005, EMPTY_BUFFER);
658
+ this.end();
659
+ } else {
660
+ const code = data.readUInt16BE(0);
661
+
662
+ if (!isValidStatusCode(code)) {
663
+ const error = this.createError(
664
+ RangeError,
665
+ `invalid status code ${code}`,
666
+ true,
667
+ 1002,
668
+ 'WS_ERR_INVALID_CLOSE_CODE'
669
+ );
670
+
671
+ cb(error);
672
+ return;
673
+ }
674
+
675
+ const buf = new FastBuffer(
676
+ data.buffer,
677
+ data.byteOffset + 2,
678
+ data.length - 2
679
+ );
680
+
681
+ if (!this._skipUTF8Validation && !isValidUTF8(buf)) {
682
+ const error = this.createError(
683
+ Error,
684
+ 'invalid UTF-8 sequence',
685
+ true,
686
+ 1007,
687
+ 'WS_ERR_INVALID_UTF8'
688
+ );
689
+
690
+ cb(error);
691
+ return;
692
+ }
693
+
694
+ this._loop = false;
695
+ this.emit('conclude', code, buf);
696
+ this.end();
697
+ }
698
+
699
+ this._state = GET_INFO;
700
+ return;
701
+ }
702
+
703
+ if (this._allowSynchronousEvents) {
704
+ this.emit(this._opcode === 0x09 ? 'ping' : 'pong', data);
705
+ this._state = GET_INFO;
706
+ } else {
707
+ this._state = DEFER_EVENT;
708
+ setImmediate(() => {
709
+ this.emit(this._opcode === 0x09 ? 'ping' : 'pong', data);
710
+ this._state = GET_INFO;
711
+ this.startLoop(cb);
712
+ });
713
+ }
714
+ }
715
+
716
+ /**
717
+ * Builds an error object.
718
+ *
719
+ * @param {function(new:Error|RangeError)} ErrorCtor The error constructor
720
+ * @param {String} message The error message
721
+ * @param {Boolean} prefix Specifies whether or not to add a default prefix to
722
+ * `message`
723
+ * @param {Number} statusCode The status code
724
+ * @param {String} errorCode The exposed error code
725
+ * @return {(Error|RangeError)} The error
726
+ * @private
727
+ */
728
+ createError(ErrorCtor, message, prefix, statusCode, errorCode) {
729
+ this._loop = false;
730
+ this._errored = true;
731
+
732
+ const err = new ErrorCtor(
733
+ prefix ? `Invalid WebSocket frame: ${message}` : message
734
+ );
735
+
736
+ Error.captureStackTrace(err, this.createError);
737
+ err.code = errorCode;
738
+ err[kStatusCode] = statusCode;
739
+ return err;
740
+ }
741
+ }
742
+
743
+ module.exports = Receiver;