lightclaw2 0.0.1
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.
- package/README.md +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -0
- package/dist/src/channel.d.ts +11 -0
- package/dist/src/channel.d.ts.map +1 -0
- package/dist/src/channel.js +255 -0
- package/dist/src/channel.js.map +1 -0
- package/dist/src/config.d.ts +29 -0
- package/dist/src/config.d.ts.map +1 -0
- package/dist/src/config.js +99 -0
- package/dist/src/config.js.map +1 -0
- package/dist/src/dedup.d.ts +7 -0
- package/dist/src/dedup.d.ts.map +1 -0
- package/dist/src/dedup.js +52 -0
- package/dist/src/dedup.js.map +1 -0
- package/dist/src/gateway.d.ts +16 -0
- package/dist/src/gateway.d.ts.map +1 -0
- package/dist/src/gateway.js +283 -0
- package/dist/src/gateway.js.map +1 -0
- package/dist/src/inbound.d.ts +18 -0
- package/dist/src/inbound.d.ts.map +1 -0
- package/dist/src/inbound.js +252 -0
- package/dist/src/inbound.js.map +1 -0
- package/dist/src/media.d.ts +12 -0
- package/dist/src/media.d.ts.map +1 -0
- package/dist/src/media.js +87 -0
- package/dist/src/media.js.map +1 -0
- package/dist/src/outbound.d.ts +28 -0
- package/dist/src/outbound.d.ts.map +1 -0
- package/dist/src/outbound.js +172 -0
- package/dist/src/outbound.js.map +1 -0
- package/dist/src/runtime.d.ts +4 -0
- package/dist/src/runtime.d.ts.map +1 -0
- package/dist/src/runtime.js +11 -0
- package/dist/src/runtime.js.map +1 -0
- package/dist/src/session-history.d.ts +88 -0
- package/dist/src/session-history.d.ts.map +1 -0
- package/dist/src/session-history.js +545 -0
- package/dist/src/session-history.js.map +1 -0
- package/dist/src/socket-handlers.d.ts +21 -0
- package/dist/src/socket-handlers.d.ts.map +1 -0
- package/dist/src/socket-handlers.js +120 -0
- package/dist/src/socket-handlers.js.map +1 -0
- package/dist/src/socket-registry.d.ts +53 -0
- package/dist/src/socket-registry.d.ts.map +1 -0
- package/dist/src/socket-registry.js +115 -0
- package/dist/src/socket-registry.js.map +1 -0
- package/dist/src/types.d.ts +100 -0
- package/dist/src/types.d.ts.map +1 -0
- package/dist/src/types.js +10 -0
- package/dist/src/types.js.map +1 -0
- package/node_modules/@socket.io/component-emitter/LICENSE +24 -0
- package/node_modules/@socket.io/component-emitter/Readme.md +79 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/index.d.ts +179 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/index.js +176 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/package.json +4 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/index.d.ts +179 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/index.js +169 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/package.json +4 -0
- package/node_modules/@socket.io/component-emitter/package.json +28 -0
- package/node_modules/debug/LICENSE +20 -0
- package/node_modules/debug/README.md +481 -0
- package/node_modules/debug/package.json +64 -0
- package/node_modules/debug/src/browser.js +272 -0
- package/node_modules/debug/src/common.js +292 -0
- package/node_modules/debug/src/index.js +10 -0
- package/node_modules/debug/src/node.js +263 -0
- package/node_modules/engine.io-client/LICENSE +22 -0
- package/node_modules/engine.io-client/README.md +331 -0
- package/node_modules/engine.io-client/build/cjs/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/cjs/browser-entrypoint.js +4 -0
- package/node_modules/engine.io-client/build/cjs/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/cjs/contrib/has-cors.js +14 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseqs.js +38 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseuri.js +67 -0
- package/node_modules/engine.io-client/build/cjs/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/cjs/globals.js +26 -0
- package/node_modules/engine.io-client/build/cjs/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/cjs/globals.node.js +97 -0
- package/node_modules/engine.io-client/build/cjs/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/index.js +32 -0
- package/node_modules/engine.io-client/build/cjs/package.json +10 -0
- package/node_modules/engine.io-client/build/cjs/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/cjs/socket.js +765 -0
- package/node_modules/engine.io-client/build/cjs/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/cjs/transport.js +153 -0
- package/node_modules/engine.io-client/build/cjs/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/cjs/transports/index.js +11 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.js +60 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.js +285 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.js +44 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling.js +165 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.js +136 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.node.js +68 -0
- package/node_modules/engine.io-client/build/cjs/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/cjs/transports/webtransport.js +94 -0
- package/node_modules/engine.io-client/build/cjs/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/cjs/util.js +65 -0
- package/node_modules/engine.io-client/build/esm/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/esm/browser-entrypoint.js +2 -0
- package/node_modules/engine.io-client/build/esm/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm/contrib/has-cors.js +11 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseqs.js +34 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseuri.js +64 -0
- package/node_modules/engine.io-client/build/esm/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/esm/globals.js +22 -0
- package/node_modules/engine.io-client/build/esm/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/esm/globals.node.js +91 -0
- package/node_modules/engine.io-client/build/esm/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/index.js +15 -0
- package/node_modules/engine.io-client/build/esm/package.json +10 -0
- package/node_modules/engine.io-client/build/esm/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/esm/socket.js +727 -0
- package/node_modules/engine.io-client/build/esm/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/esm/transport.js +142 -0
- package/node_modules/engine.io-client/build/esm/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/esm/transports/index.js +8 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-fetch.js +56 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.js +271 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.js +17 -0
- package/node_modules/engine.io-client/build/esm/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/esm/transports/polling.js +145 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.js +125 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.node.js +41 -0
- package/node_modules/engine.io-client/build/esm/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/esm/transports/webtransport.js +80 -0
- package/node_modules/engine.io-client/build/esm/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/esm/util.js +59 -0
- package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.js +2 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.js +11 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.js +34 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.js +64 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.js +22 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.node.js +91 -0
- package/node_modules/engine.io-client/build/esm-debug/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/index.js +15 -0
- package/node_modules/engine.io-client/build/esm-debug/package.json +10 -0
- package/node_modules/engine.io-client/build/esm-debug/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/esm-debug/socket.js +756 -0
- package/node_modules/engine.io-client/build/esm-debug/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/esm-debug/transport.js +145 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/index.js +8 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.js +56 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.js +276 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.js +17 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling.js +158 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.js +128 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.js +41 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.js +87 -0
- package/node_modules/engine.io-client/build/esm-debug/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/esm-debug/util.js +59 -0
- package/node_modules/engine.io-client/dist/engine.io.esm.min.js +7 -0
- package/node_modules/engine.io-client/dist/engine.io.esm.min.js.map +1 -0
- package/node_modules/engine.io-client/dist/engine.io.js +3064 -0
- package/node_modules/engine.io-client/dist/engine.io.js.map +1 -0
- package/node_modules/engine.io-client/dist/engine.io.min.js +7 -0
- package/node_modules/engine.io-client/dist/engine.io.min.js.map +1 -0
- package/node_modules/engine.io-client/node_modules/ws/LICENSE +20 -0
- package/node_modules/engine.io-client/node_modules/ws/README.md +548 -0
- package/node_modules/engine.io-client/node_modules/ws/browser.js +8 -0
- package/node_modules/engine.io-client/node_modules/ws/index.js +13 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/constants.js +18 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/receiver.js +706 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/sender.js +602 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/stream.js +161 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/validation.js +152 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/websocket-server.js +550 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/websocket.js +1388 -0
- package/node_modules/engine.io-client/node_modules/ws/package.json +69 -0
- package/node_modules/engine.io-client/node_modules/ws/wrapper.mjs +8 -0
- package/node_modules/engine.io-client/package.json +95 -0
- package/node_modules/engine.io-parser/LICENSE +22 -0
- package/node_modules/engine.io-parser/Readme.md +158 -0
- package/node_modules/engine.io-parser/build/cjs/commons.d.ts +14 -0
- package/node_modules/engine.io-parser/build/cjs/commons.js +19 -0
- package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.js +48 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.js +66 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.js +59 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.d.ts +4 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.js +72 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.d.ts +3 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.js +38 -0
- package/node_modules/engine.io-parser/build/cjs/index.d.ts +9 -0
- package/node_modules/engine.io-parser/build/cjs/index.js +164 -0
- package/node_modules/engine.io-parser/build/cjs/package.json +8 -0
- package/node_modules/engine.io-parser/build/esm/commons.d.ts +14 -0
- package/node_modules/engine.io-parser/build/esm/commons.js +14 -0
- package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js +43 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.browser.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.browser.js +62 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.js +55 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.browser.d.ts +4 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.browser.js +68 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.d.ts +3 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.js +33 -0
- package/node_modules/engine.io-parser/build/esm/index.d.ts +9 -0
- package/node_modules/engine.io-parser/build/esm/index.js +156 -0
- package/node_modules/engine.io-parser/build/esm/package.json +8 -0
- package/node_modules/engine.io-parser/package.json +46 -0
- package/node_modules/ms/index.js +162 -0
- package/node_modules/ms/license.md +21 -0
- package/node_modules/ms/package.json +38 -0
- package/node_modules/ms/readme.md +59 -0
- package/node_modules/socket.io-client/LICENSE +21 -0
- package/node_modules/socket.io-client/README.md +29 -0
- package/node_modules/socket.io-client/build/cjs/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/cjs/browser-entrypoint.js +4 -0
- package/node_modules/socket.io-client/build/cjs/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/cjs/contrib/backo2.js +69 -0
- package/node_modules/socket.io-client/build/cjs/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/cjs/index.js +76 -0
- package/node_modules/socket.io-client/build/cjs/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/cjs/manager.js +416 -0
- package/node_modules/socket.io-client/build/cjs/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/cjs/on.js +9 -0
- package/node_modules/socket.io-client/build/cjs/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/cjs/socket.js +909 -0
- package/node_modules/socket.io-client/build/cjs/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/cjs/url.js +69 -0
- package/node_modules/socket.io-client/build/esm/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm/browser-entrypoint.js +2 -0
- package/node_modules/socket.io-client/build/esm/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/esm/contrib/backo2.js +66 -0
- package/node_modules/socket.io-client/build/esm/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/esm/index.js +58 -0
- package/node_modules/socket.io-client/build/esm/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/esm/manager.js +367 -0
- package/node_modules/socket.io-client/build/esm/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm/on.js +6 -0
- package/node_modules/socket.io-client/build/esm/package.json +5 -0
- package/node_modules/socket.io-client/build/esm/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/esm/socket.js +880 -0
- package/node_modules/socket.io-client/build/esm/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/esm/url.js +59 -0
- package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.js +2 -0
- package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.js +66 -0
- package/node_modules/socket.io-client/build/esm-debug/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/esm-debug/index.js +62 -0
- package/node_modules/socket.io-client/build/esm-debug/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/esm-debug/manager.js +386 -0
- package/node_modules/socket.io-client/build/esm-debug/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm-debug/on.js +6 -0
- package/node_modules/socket.io-client/build/esm-debug/package.json +5 -0
- package/node_modules/socket.io-client/build/esm-debug/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/esm-debug/socket.js +902 -0
- package/node_modules/socket.io-client/build/esm-debug/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/esm-debug/url.js +63 -0
- package/node_modules/socket.io-client/dist/socket.io.esm.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.esm.min.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.js +4955 -0
- package/node_modules/socket.io-client/dist/socket.io.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.min.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js.map +1 -0
- package/node_modules/socket.io-client/package.json +101 -0
- package/node_modules/socket.io-parser/LICENSE +20 -0
- package/node_modules/socket.io-parser/Readme.md +81 -0
- package/node_modules/socket.io-parser/build/cjs/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/cjs/binary.js +87 -0
- package/node_modules/socket.io-parser/build/cjs/index.d.ts +91 -0
- package/node_modules/socket.io-parser/build/cjs/index.js +359 -0
- package/node_modules/socket.io-parser/build/cjs/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/cjs/is-binary.js +54 -0
- package/node_modules/socket.io-parser/build/cjs/package.json +3 -0
- package/node_modules/socket.io-parser/build/esm/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/esm/binary.js +83 -0
- package/node_modules/socket.io-parser/build/esm/index.d.ts +91 -0
- package/node_modules/socket.io-parser/build/esm/index.js +348 -0
- package/node_modules/socket.io-parser/build/esm/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/esm/is-binary.js +50 -0
- package/node_modules/socket.io-parser/build/esm/package.json +3 -0
- package/node_modules/socket.io-parser/build/esm-debug/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/esm-debug/binary.js +83 -0
- package/node_modules/socket.io-parser/build/esm-debug/index.d.ts +91 -0
- package/node_modules/socket.io-parser/build/esm-debug/index.js +353 -0
- package/node_modules/socket.io-parser/build/esm-debug/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/esm-debug/is-binary.js +50 -0
- package/node_modules/socket.io-parser/build/esm-debug/package.json +3 -0
- package/node_modules/socket.io-parser/package.json +44 -0
- package/node_modules/xmlhttprequest-ssl/LICENSE +22 -0
- package/node_modules/xmlhttprequest-ssl/README.md +67 -0
- package/node_modules/xmlhttprequest-ssl/lib/XMLHttpRequest.js +689 -0
- package/node_modules/xmlhttprequest-ssl/package.json +40 -0
- package/openclaw.plugin.json +17 -0
- package/package.json +61 -0
- package/skills/lightclaw-cron/SKILL.md +381 -0
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.XHR = exports.Request = exports.BaseXHR = void 0;
|
|
7
|
+
const polling_js_1 = require("./polling.js");
|
|
8
|
+
const component_emitter_1 = require("@socket.io/component-emitter");
|
|
9
|
+
const util_js_1 = require("../util.js");
|
|
10
|
+
const globals_node_js_1 = require("../globals.node.js");
|
|
11
|
+
const has_cors_js_1 = require("../contrib/has-cors.js");
|
|
12
|
+
const debug_1 = __importDefault(require("debug")); // debug()
|
|
13
|
+
const debug = (0, debug_1.default)("engine.io-client:polling"); // debug()
|
|
14
|
+
function empty() { }
|
|
15
|
+
class BaseXHR extends polling_js_1.Polling {
|
|
16
|
+
/**
|
|
17
|
+
* XHR Polling constructor.
|
|
18
|
+
*
|
|
19
|
+
* @param {Object} opts
|
|
20
|
+
* @package
|
|
21
|
+
*/
|
|
22
|
+
constructor(opts) {
|
|
23
|
+
super(opts);
|
|
24
|
+
if (typeof location !== "undefined") {
|
|
25
|
+
const isSSL = "https:" === location.protocol;
|
|
26
|
+
let port = location.port;
|
|
27
|
+
// some user agents have empty `location.port`
|
|
28
|
+
if (!port) {
|
|
29
|
+
port = isSSL ? "443" : "80";
|
|
30
|
+
}
|
|
31
|
+
this.xd =
|
|
32
|
+
(typeof location !== "undefined" &&
|
|
33
|
+
opts.hostname !== location.hostname) ||
|
|
34
|
+
port !== opts.port;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Sends data.
|
|
39
|
+
*
|
|
40
|
+
* @param {String} data to send.
|
|
41
|
+
* @param {Function} called upon flush.
|
|
42
|
+
* @private
|
|
43
|
+
*/
|
|
44
|
+
doWrite(data, fn) {
|
|
45
|
+
const req = this.request({
|
|
46
|
+
method: "POST",
|
|
47
|
+
data: data,
|
|
48
|
+
});
|
|
49
|
+
req.on("success", fn);
|
|
50
|
+
req.on("error", (xhrStatus, context) => {
|
|
51
|
+
this.onError("xhr post error", xhrStatus, context);
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Starts a poll cycle.
|
|
56
|
+
*
|
|
57
|
+
* @private
|
|
58
|
+
*/
|
|
59
|
+
doPoll() {
|
|
60
|
+
debug("xhr poll");
|
|
61
|
+
const req = this.request();
|
|
62
|
+
req.on("data", this.onData.bind(this));
|
|
63
|
+
req.on("error", (xhrStatus, context) => {
|
|
64
|
+
this.onError("xhr poll error", xhrStatus, context);
|
|
65
|
+
});
|
|
66
|
+
this.pollXhr = req;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.BaseXHR = BaseXHR;
|
|
70
|
+
class Request extends component_emitter_1.Emitter {
|
|
71
|
+
/**
|
|
72
|
+
* Request constructor
|
|
73
|
+
*
|
|
74
|
+
* @param {Object} options
|
|
75
|
+
* @package
|
|
76
|
+
*/
|
|
77
|
+
constructor(createRequest, uri, opts) {
|
|
78
|
+
super();
|
|
79
|
+
this.createRequest = createRequest;
|
|
80
|
+
(0, util_js_1.installTimerFunctions)(this, opts);
|
|
81
|
+
this._opts = opts;
|
|
82
|
+
this._method = opts.method || "GET";
|
|
83
|
+
this._uri = uri;
|
|
84
|
+
this._data = undefined !== opts.data ? opts.data : null;
|
|
85
|
+
this._create();
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* Creates the XHR object and sends the request.
|
|
89
|
+
*
|
|
90
|
+
* @private
|
|
91
|
+
*/
|
|
92
|
+
_create() {
|
|
93
|
+
var _a;
|
|
94
|
+
const opts = (0, util_js_1.pick)(this._opts, "agent", "pfx", "key", "passphrase", "cert", "ca", "ciphers", "rejectUnauthorized", "autoUnref");
|
|
95
|
+
opts.xdomain = !!this._opts.xd;
|
|
96
|
+
const xhr = (this._xhr = this.createRequest(opts));
|
|
97
|
+
try {
|
|
98
|
+
debug("xhr open %s: %s", this._method, this._uri);
|
|
99
|
+
xhr.open(this._method, this._uri, true);
|
|
100
|
+
try {
|
|
101
|
+
if (this._opts.extraHeaders) {
|
|
102
|
+
// @ts-ignore
|
|
103
|
+
xhr.setDisableHeaderCheck && xhr.setDisableHeaderCheck(true);
|
|
104
|
+
for (let i in this._opts.extraHeaders) {
|
|
105
|
+
if (this._opts.extraHeaders.hasOwnProperty(i)) {
|
|
106
|
+
xhr.setRequestHeader(i, this._opts.extraHeaders[i]);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
catch (e) { }
|
|
112
|
+
if ("POST" === this._method) {
|
|
113
|
+
try {
|
|
114
|
+
xhr.setRequestHeader("Content-type", "text/plain;charset=UTF-8");
|
|
115
|
+
}
|
|
116
|
+
catch (e) { }
|
|
117
|
+
}
|
|
118
|
+
try {
|
|
119
|
+
xhr.setRequestHeader("Accept", "*/*");
|
|
120
|
+
}
|
|
121
|
+
catch (e) { }
|
|
122
|
+
(_a = this._opts.cookieJar) === null || _a === void 0 ? void 0 : _a.addCookies(xhr);
|
|
123
|
+
// ie6 check
|
|
124
|
+
if ("withCredentials" in xhr) {
|
|
125
|
+
xhr.withCredentials = this._opts.withCredentials;
|
|
126
|
+
}
|
|
127
|
+
if (this._opts.requestTimeout) {
|
|
128
|
+
xhr.timeout = this._opts.requestTimeout;
|
|
129
|
+
}
|
|
130
|
+
xhr.onreadystatechange = () => {
|
|
131
|
+
var _a;
|
|
132
|
+
if (xhr.readyState === 3) {
|
|
133
|
+
(_a = this._opts.cookieJar) === null || _a === void 0 ? void 0 : _a.parseCookies(
|
|
134
|
+
// @ts-ignore
|
|
135
|
+
xhr.getResponseHeader("set-cookie"));
|
|
136
|
+
}
|
|
137
|
+
if (4 !== xhr.readyState)
|
|
138
|
+
return;
|
|
139
|
+
if (200 === xhr.status || 1223 === xhr.status) {
|
|
140
|
+
this._onLoad();
|
|
141
|
+
}
|
|
142
|
+
else {
|
|
143
|
+
// make sure the `error` event handler that's user-set
|
|
144
|
+
// does not throw in the same tick and gets caught here
|
|
145
|
+
this.setTimeoutFn(() => {
|
|
146
|
+
this._onError(typeof xhr.status === "number" ? xhr.status : 0);
|
|
147
|
+
}, 0);
|
|
148
|
+
}
|
|
149
|
+
};
|
|
150
|
+
debug("xhr data %s", this._data);
|
|
151
|
+
xhr.send(this._data);
|
|
152
|
+
}
|
|
153
|
+
catch (e) {
|
|
154
|
+
// Need to defer since .create() is called directly from the constructor
|
|
155
|
+
// and thus the 'error' event can only be only bound *after* this exception
|
|
156
|
+
// occurs. Therefore, also, we cannot throw here at all.
|
|
157
|
+
this.setTimeoutFn(() => {
|
|
158
|
+
this._onError(e);
|
|
159
|
+
}, 0);
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
162
|
+
if (typeof document !== "undefined") {
|
|
163
|
+
this._index = Request.requestsCount++;
|
|
164
|
+
Request.requests[this._index] = this;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* Called upon error.
|
|
169
|
+
*
|
|
170
|
+
* @private
|
|
171
|
+
*/
|
|
172
|
+
_onError(err) {
|
|
173
|
+
this.emitReserved("error", err, this._xhr);
|
|
174
|
+
this._cleanup(true);
|
|
175
|
+
}
|
|
176
|
+
/**
|
|
177
|
+
* Cleans up house.
|
|
178
|
+
*
|
|
179
|
+
* @private
|
|
180
|
+
*/
|
|
181
|
+
_cleanup(fromError) {
|
|
182
|
+
if ("undefined" === typeof this._xhr || null === this._xhr) {
|
|
183
|
+
return;
|
|
184
|
+
}
|
|
185
|
+
this._xhr.onreadystatechange = empty;
|
|
186
|
+
if (fromError) {
|
|
187
|
+
try {
|
|
188
|
+
this._xhr.abort();
|
|
189
|
+
}
|
|
190
|
+
catch (e) { }
|
|
191
|
+
}
|
|
192
|
+
if (typeof document !== "undefined") {
|
|
193
|
+
delete Request.requests[this._index];
|
|
194
|
+
}
|
|
195
|
+
this._xhr = null;
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* Called upon load.
|
|
199
|
+
*
|
|
200
|
+
* @private
|
|
201
|
+
*/
|
|
202
|
+
_onLoad() {
|
|
203
|
+
const data = this._xhr.responseText;
|
|
204
|
+
if (data !== null) {
|
|
205
|
+
this.emitReserved("data", data);
|
|
206
|
+
this.emitReserved("success");
|
|
207
|
+
this._cleanup();
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* Aborts the request.
|
|
212
|
+
*
|
|
213
|
+
* @package
|
|
214
|
+
*/
|
|
215
|
+
abort() {
|
|
216
|
+
this._cleanup();
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
exports.Request = Request;
|
|
220
|
+
Request.requestsCount = 0;
|
|
221
|
+
Request.requests = {};
|
|
222
|
+
/**
|
|
223
|
+
* Aborts pending requests when unloading the window. This is needed to prevent
|
|
224
|
+
* memory leaks (e.g. when using IE) and to ensure that no spurious error is
|
|
225
|
+
* emitted.
|
|
226
|
+
*/
|
|
227
|
+
if (typeof document !== "undefined") {
|
|
228
|
+
// @ts-ignore
|
|
229
|
+
if (typeof attachEvent === "function") {
|
|
230
|
+
// @ts-ignore
|
|
231
|
+
attachEvent("onunload", unloadHandler);
|
|
232
|
+
}
|
|
233
|
+
else if (typeof addEventListener === "function") {
|
|
234
|
+
const terminationEvent = "onpagehide" in globals_node_js_1.globalThisShim ? "pagehide" : "unload";
|
|
235
|
+
addEventListener(terminationEvent, unloadHandler, false);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
function unloadHandler() {
|
|
239
|
+
for (let i in Request.requests) {
|
|
240
|
+
if (Request.requests.hasOwnProperty(i)) {
|
|
241
|
+
Request.requests[i].abort();
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
const hasXHR2 = (function () {
|
|
246
|
+
const xhr = newRequest({
|
|
247
|
+
xdomain: false,
|
|
248
|
+
});
|
|
249
|
+
return xhr && xhr.responseType !== null;
|
|
250
|
+
})();
|
|
251
|
+
/**
|
|
252
|
+
* HTTP long-polling based on the built-in `XMLHttpRequest` object.
|
|
253
|
+
*
|
|
254
|
+
* Usage: browser
|
|
255
|
+
*
|
|
256
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest
|
|
257
|
+
*/
|
|
258
|
+
class XHR extends BaseXHR {
|
|
259
|
+
constructor(opts) {
|
|
260
|
+
super(opts);
|
|
261
|
+
const forceBase64 = opts && opts.forceBase64;
|
|
262
|
+
this.supportsBinary = hasXHR2 && !forceBase64;
|
|
263
|
+
}
|
|
264
|
+
request(opts = {}) {
|
|
265
|
+
Object.assign(opts, { xd: this.xd }, this.opts);
|
|
266
|
+
return new Request(newRequest, this.uri(), opts);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
exports.XHR = XHR;
|
|
270
|
+
function newRequest(opts) {
|
|
271
|
+
const xdomain = opts.xdomain;
|
|
272
|
+
// XMLHttpRequest can be disabled on IE
|
|
273
|
+
try {
|
|
274
|
+
if ("undefined" !== typeof XMLHttpRequest && (!xdomain || has_cors_js_1.hasCORS)) {
|
|
275
|
+
return new XMLHttpRequest();
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
catch (e) { }
|
|
279
|
+
if (!xdomain) {
|
|
280
|
+
try {
|
|
281
|
+
return new globals_node_js_1.globalThisShim[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP");
|
|
282
|
+
}
|
|
283
|
+
catch (e) { }
|
|
284
|
+
}
|
|
285
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseXHR, Request } from "./polling-xhr.js";
|
|
2
|
+
/**
|
|
3
|
+
* HTTP long-polling based on the `XMLHttpRequest` object provided by the `xmlhttprequest-ssl` package.
|
|
4
|
+
*
|
|
5
|
+
* Usage: Node.js, Deno (compat), Bun (compat)
|
|
6
|
+
*
|
|
7
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest
|
|
8
|
+
*/
|
|
9
|
+
export declare class XHR extends BaseXHR {
|
|
10
|
+
request(opts?: Record<string, any>): Request;
|
|
11
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.XHR = void 0;
|
|
27
|
+
const XMLHttpRequestModule = __importStar(require("xmlhttprequest-ssl"));
|
|
28
|
+
const polling_xhr_js_1 = require("./polling-xhr.js");
|
|
29
|
+
const XMLHttpRequest = XMLHttpRequestModule.default || XMLHttpRequestModule;
|
|
30
|
+
/**
|
|
31
|
+
* HTTP long-polling based on the `XMLHttpRequest` object provided by the `xmlhttprequest-ssl` package.
|
|
32
|
+
*
|
|
33
|
+
* Usage: Node.js, Deno (compat), Bun (compat)
|
|
34
|
+
*
|
|
35
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest
|
|
36
|
+
*/
|
|
37
|
+
class XHR extends polling_xhr_js_1.BaseXHR {
|
|
38
|
+
request(opts = {}) {
|
|
39
|
+
var _a;
|
|
40
|
+
Object.assign(opts, { xd: this.xd, cookieJar: (_a = this.socket) === null || _a === void 0 ? void 0 : _a._cookieJar }, this.opts);
|
|
41
|
+
return new polling_xhr_js_1.Request((opts) => new XMLHttpRequest(opts), this.uri(), opts);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.XHR = XHR;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Transport } from "../transport.js";
|
|
2
|
+
export declare abstract class Polling extends Transport {
|
|
3
|
+
private _polling;
|
|
4
|
+
get name(): string;
|
|
5
|
+
/**
|
|
6
|
+
* Opens the socket (triggers polling). We write a PING message to determine
|
|
7
|
+
* when the transport is open.
|
|
8
|
+
*
|
|
9
|
+
* @protected
|
|
10
|
+
*/
|
|
11
|
+
doOpen(): void;
|
|
12
|
+
/**
|
|
13
|
+
* Pauses polling.
|
|
14
|
+
*
|
|
15
|
+
* @param {Function} onPause - callback upon buffers are flushed and transport is paused
|
|
16
|
+
* @package
|
|
17
|
+
*/
|
|
18
|
+
pause(onPause: any): void;
|
|
19
|
+
/**
|
|
20
|
+
* Starts polling cycle.
|
|
21
|
+
*
|
|
22
|
+
* @private
|
|
23
|
+
*/
|
|
24
|
+
private _poll;
|
|
25
|
+
/**
|
|
26
|
+
* Overloads onData to detect payloads.
|
|
27
|
+
*
|
|
28
|
+
* @protected
|
|
29
|
+
*/
|
|
30
|
+
onData(data: any): void;
|
|
31
|
+
/**
|
|
32
|
+
* For polling, send a close packet.
|
|
33
|
+
*
|
|
34
|
+
* @protected
|
|
35
|
+
*/
|
|
36
|
+
doClose(): void;
|
|
37
|
+
/**
|
|
38
|
+
* Writes a packets payload.
|
|
39
|
+
*
|
|
40
|
+
* @param {Array} packets - data packets
|
|
41
|
+
* @protected
|
|
42
|
+
*/
|
|
43
|
+
write(packets: any): void;
|
|
44
|
+
/**
|
|
45
|
+
* Generates uri for connection.
|
|
46
|
+
*
|
|
47
|
+
* @private
|
|
48
|
+
*/
|
|
49
|
+
protected uri(): string;
|
|
50
|
+
abstract doPoll(): any;
|
|
51
|
+
abstract doWrite(data: string, callback: () => void): any;
|
|
52
|
+
}
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.Polling = void 0;
|
|
7
|
+
const transport_js_1 = require("../transport.js");
|
|
8
|
+
const util_js_1 = require("../util.js");
|
|
9
|
+
const engine_io_parser_1 = require("engine.io-parser");
|
|
10
|
+
const debug_1 = __importDefault(require("debug")); // debug()
|
|
11
|
+
const debug = (0, debug_1.default)("engine.io-client:polling"); // debug()
|
|
12
|
+
class Polling extends transport_js_1.Transport {
|
|
13
|
+
constructor() {
|
|
14
|
+
super(...arguments);
|
|
15
|
+
this._polling = false;
|
|
16
|
+
}
|
|
17
|
+
get name() {
|
|
18
|
+
return "polling";
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Opens the socket (triggers polling). We write a PING message to determine
|
|
22
|
+
* when the transport is open.
|
|
23
|
+
*
|
|
24
|
+
* @protected
|
|
25
|
+
*/
|
|
26
|
+
doOpen() {
|
|
27
|
+
this._poll();
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Pauses polling.
|
|
31
|
+
*
|
|
32
|
+
* @param {Function} onPause - callback upon buffers are flushed and transport is paused
|
|
33
|
+
* @package
|
|
34
|
+
*/
|
|
35
|
+
pause(onPause) {
|
|
36
|
+
this.readyState = "pausing";
|
|
37
|
+
const pause = () => {
|
|
38
|
+
debug("paused");
|
|
39
|
+
this.readyState = "paused";
|
|
40
|
+
onPause();
|
|
41
|
+
};
|
|
42
|
+
if (this._polling || !this.writable) {
|
|
43
|
+
let total = 0;
|
|
44
|
+
if (this._polling) {
|
|
45
|
+
debug("we are currently polling - waiting to pause");
|
|
46
|
+
total++;
|
|
47
|
+
this.once("pollComplete", function () {
|
|
48
|
+
debug("pre-pause polling complete");
|
|
49
|
+
--total || pause();
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
if (!this.writable) {
|
|
53
|
+
debug("we are currently writing - waiting to pause");
|
|
54
|
+
total++;
|
|
55
|
+
this.once("drain", function () {
|
|
56
|
+
debug("pre-pause writing complete");
|
|
57
|
+
--total || pause();
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
pause();
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Starts polling cycle.
|
|
67
|
+
*
|
|
68
|
+
* @private
|
|
69
|
+
*/
|
|
70
|
+
_poll() {
|
|
71
|
+
debug("polling");
|
|
72
|
+
this._polling = true;
|
|
73
|
+
this.doPoll();
|
|
74
|
+
this.emitReserved("poll");
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Overloads onData to detect payloads.
|
|
78
|
+
*
|
|
79
|
+
* @protected
|
|
80
|
+
*/
|
|
81
|
+
onData(data) {
|
|
82
|
+
debug("polling got data %s", data);
|
|
83
|
+
const callback = (packet) => {
|
|
84
|
+
// if its the first message we consider the transport open
|
|
85
|
+
if ("opening" === this.readyState && packet.type === "open") {
|
|
86
|
+
this.onOpen();
|
|
87
|
+
}
|
|
88
|
+
// if its a close packet, we close the ongoing requests
|
|
89
|
+
if ("close" === packet.type) {
|
|
90
|
+
this.onClose({ description: "transport closed by the server" });
|
|
91
|
+
return false;
|
|
92
|
+
}
|
|
93
|
+
// otherwise bypass onData and handle the message
|
|
94
|
+
this.onPacket(packet);
|
|
95
|
+
};
|
|
96
|
+
// decode payload
|
|
97
|
+
(0, engine_io_parser_1.decodePayload)(data, this.socket.binaryType).forEach(callback);
|
|
98
|
+
// if an event did not trigger closing
|
|
99
|
+
if ("closed" !== this.readyState) {
|
|
100
|
+
// if we got data we're not polling
|
|
101
|
+
this._polling = false;
|
|
102
|
+
this.emitReserved("pollComplete");
|
|
103
|
+
if ("open" === this.readyState) {
|
|
104
|
+
this._poll();
|
|
105
|
+
}
|
|
106
|
+
else {
|
|
107
|
+
debug('ignoring poll - transport state "%s"', this.readyState);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* For polling, send a close packet.
|
|
113
|
+
*
|
|
114
|
+
* @protected
|
|
115
|
+
*/
|
|
116
|
+
doClose() {
|
|
117
|
+
const close = () => {
|
|
118
|
+
debug("writing close packet");
|
|
119
|
+
this.write([{ type: "close" }]);
|
|
120
|
+
};
|
|
121
|
+
if ("open" === this.readyState) {
|
|
122
|
+
debug("transport open - closing");
|
|
123
|
+
close();
|
|
124
|
+
}
|
|
125
|
+
else {
|
|
126
|
+
// in case we're trying to close while
|
|
127
|
+
// handshaking is in progress (GH-164)
|
|
128
|
+
debug("transport not open - deferring close");
|
|
129
|
+
this.once("open", close);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Writes a packets payload.
|
|
134
|
+
*
|
|
135
|
+
* @param {Array} packets - data packets
|
|
136
|
+
* @protected
|
|
137
|
+
*/
|
|
138
|
+
write(packets) {
|
|
139
|
+
this.writable = false;
|
|
140
|
+
(0, engine_io_parser_1.encodePayload)(packets, (data) => {
|
|
141
|
+
this.doWrite(data, () => {
|
|
142
|
+
this.writable = true;
|
|
143
|
+
this.emitReserved("drain");
|
|
144
|
+
});
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Generates uri for connection.
|
|
149
|
+
*
|
|
150
|
+
* @private
|
|
151
|
+
*/
|
|
152
|
+
uri() {
|
|
153
|
+
const schema = this.opts.secure ? "https" : "http";
|
|
154
|
+
const query = this.query || {};
|
|
155
|
+
// cache busting is forced
|
|
156
|
+
if (false !== this.opts.timestampRequests) {
|
|
157
|
+
query[this.opts.timestampParam] = (0, util_js_1.randomString)();
|
|
158
|
+
}
|
|
159
|
+
if (!this.supportsBinary && !query.sid) {
|
|
160
|
+
query.b64 = 1;
|
|
161
|
+
}
|
|
162
|
+
return this.createUri(schema, query);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
exports.Polling = Polling;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Transport } from "../transport.js";
|
|
2
|
+
import type { Packet, RawData } from "engine.io-parser";
|
|
3
|
+
export declare abstract class BaseWS extends Transport {
|
|
4
|
+
protected ws: any;
|
|
5
|
+
get name(): string;
|
|
6
|
+
doOpen(): this;
|
|
7
|
+
abstract createSocket(uri: string, protocols: string | string[] | undefined, opts: Record<string, any>): any;
|
|
8
|
+
/**
|
|
9
|
+
* Adds event listeners to the socket
|
|
10
|
+
*
|
|
11
|
+
* @private
|
|
12
|
+
*/
|
|
13
|
+
private addEventListeners;
|
|
14
|
+
write(packets: any): void;
|
|
15
|
+
abstract doWrite(packet: Packet, data: RawData): any;
|
|
16
|
+
doClose(): void;
|
|
17
|
+
/**
|
|
18
|
+
* Generates uri for connection.
|
|
19
|
+
*
|
|
20
|
+
* @private
|
|
21
|
+
*/
|
|
22
|
+
private uri;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* WebSocket transport based on the built-in `WebSocket` object.
|
|
26
|
+
*
|
|
27
|
+
* Usage: browser, Node.js (since v21), Deno, Bun
|
|
28
|
+
*
|
|
29
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket
|
|
30
|
+
* @see https://caniuse.com/mdn-api_websocket
|
|
31
|
+
* @see https://nodejs.org/api/globals.html#websocket
|
|
32
|
+
*/
|
|
33
|
+
export declare class WS extends BaseWS {
|
|
34
|
+
createSocket(uri: string, protocols: string | string[] | undefined, opts: Record<string, any>): any;
|
|
35
|
+
doWrite(_packet: Packet, data: RawData): void;
|
|
36
|
+
}
|