lightclawbot 1.1.2 → 1.2.0-beta.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 +0 -1
- package/dist/index.js +38 -31
- package/dist/setup-entry.js +32 -0
- package/dist/src/channel.js +166 -253
- package/dist/src/channel.setup.js +16 -0
- package/dist/src/config.js +31 -124
- package/dist/src/dedup.js +0 -1
- package/dist/src/download-tool.js +0 -1
- package/dist/src/file-storage.js +2 -2
- package/dist/src/gateway.js +224 -178
- package/dist/src/history/cron-utils.js +0 -1
- package/dist/src/history/index.js +0 -1
- package/dist/src/history/message-parser.js +0 -1
- package/dist/src/history/session-reader.js +3 -1
- package/dist/src/history/session-store.js +0 -1
- package/dist/src/history/text-processing.js +0 -1
- package/dist/src/history/types.js +0 -1
- package/dist/src/inbound.js +165 -234
- package/dist/src/media.js +0 -1
- package/dist/src/messaging.js +65 -0
- package/dist/src/outbound.js +129 -45
- package/dist/src/runtime.js +9 -11
- package/dist/src/setup-core.js +27 -0
- package/dist/src/shared.js +141 -0
- package/dist/src/socket/handlers.js +72 -49
- package/dist/src/socket/index.js +0 -1
- package/dist/src/socket/native-socket.js +385 -0
- package/dist/src/socket/registry.js +0 -1
- package/dist/src/socket/reliable-emitter.js +188 -50
- package/dist/src/streaming/delta-tracker.js +140 -0
- package/dist/src/streaming/index.js +12 -0
- package/dist/src/streaming/stream-reply-sink.js +387 -0
- package/dist/src/streaming/types.js +4 -0
- package/dist/src/tools.js +13 -0
- package/dist/src/types.js +22 -2
- package/dist/src/upload-tool.js +0 -1
- package/dist/src/utils/account.js +73 -0
- package/dist/src/utils/common.js +48 -0
- package/dist/src/utils/index.js +2 -0
- package/node_modules/ws/index.js +22 -0
- package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/constants.js +1 -0
- package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/permessage-deflate.js +6 -6
- package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/websocket-server.js +10 -6
- package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/websocket.js +19 -14
- package/node_modules/{engine.io-client/node_modules/ws → ws}/package.json +4 -3
- package/node_modules/ws/wrapper.mjs +21 -0
- package/openclaw.plugin.json +0 -7
- package/package.json +8 -5
- package/dist/index.d.ts +0 -24
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/public/data/scripts/manifest.json +0 -11
- package/dist/public/data/scripts/preflight.9af62b39.sh +0 -191
- package/dist/public/data/scripts/preflight.sh +0 -191
- package/dist/src/channel.d.ts +0 -11
- package/dist/src/channel.d.ts.map +0 -1
- package/dist/src/channel.js.map +0 -1
- package/dist/src/config.d.ts +0 -129
- package/dist/src/config.d.ts.map +0 -1
- package/dist/src/config.js.map +0 -1
- package/dist/src/dedup.d.ts +0 -12
- package/dist/src/dedup.d.ts.map +0 -1
- package/dist/src/dedup.js.map +0 -1
- package/dist/src/download-tool.d.ts +0 -32
- package/dist/src/download-tool.d.ts.map +0 -1
- package/dist/src/download-tool.js.map +0 -1
- package/dist/src/file-storage.d.ts +0 -74
- package/dist/src/file-storage.d.ts.map +0 -1
- package/dist/src/file-storage.js.map +0 -1
- package/dist/src/format-urls.d.ts +0 -26
- package/dist/src/format-urls.d.ts.map +0 -1
- package/dist/src/format-urls.js +0 -53
- package/dist/src/format-urls.js.map +0 -1
- package/dist/src/gateway.d.ts +0 -16
- package/dist/src/gateway.d.ts.map +0 -1
- package/dist/src/gateway.js.map +0 -1
- package/dist/src/history/cron-utils.d.ts +0 -76
- package/dist/src/history/cron-utils.d.ts.map +0 -1
- package/dist/src/history/cron-utils.js.map +0 -1
- package/dist/src/history/index.d.ts +0 -20
- package/dist/src/history/index.d.ts.map +0 -1
- package/dist/src/history/index.js.map +0 -1
- package/dist/src/history/message-parser.d.ts +0 -52
- package/dist/src/history/message-parser.d.ts.map +0 -1
- package/dist/src/history/message-parser.js.map +0 -1
- package/dist/src/history/session-reader.d.ts +0 -58
- package/dist/src/history/session-reader.d.ts.map +0 -1
- package/dist/src/history/session-reader.js.map +0 -1
- package/dist/src/history/session-store.d.ts +0 -42
- package/dist/src/history/session-store.d.ts.map +0 -1
- package/dist/src/history/session-store.js.map +0 -1
- package/dist/src/history/text-processing.d.ts +0 -41
- package/dist/src/history/text-processing.d.ts.map +0 -1
- package/dist/src/history/text-processing.js.map +0 -1
- package/dist/src/history/types.d.ts +0 -134
- package/dist/src/history/types.d.ts.map +0 -1
- package/dist/src/history/types.js.map +0 -1
- package/dist/src/inbound.d.ts +0 -18
- package/dist/src/inbound.d.ts.map +0 -1
- package/dist/src/inbound.js.map +0 -1
- package/dist/src/media.d.ts +0 -12
- package/dist/src/media.d.ts.map +0 -1
- package/dist/src/media.js.map +0 -1
- package/dist/src/outbound.d.ts +0 -28
- package/dist/src/outbound.d.ts.map +0 -1
- package/dist/src/outbound.js.map +0 -1
- package/dist/src/runtime.d.ts +0 -4
- package/dist/src/runtime.d.ts.map +0 -1
- package/dist/src/runtime.js.map +0 -1
- package/dist/src/socket/handlers.d.ts +0 -26
- package/dist/src/socket/handlers.d.ts.map +0 -1
- package/dist/src/socket/handlers.js.map +0 -1
- package/dist/src/socket/index.d.ts +0 -11
- package/dist/src/socket/index.d.ts.map +0 -1
- package/dist/src/socket/index.js.map +0 -1
- package/dist/src/socket/registry.d.ts +0 -59
- package/dist/src/socket/registry.d.ts.map +0 -1
- package/dist/src/socket/registry.js.map +0 -1
- package/dist/src/socket/reliable-emitter.d.ts +0 -79
- package/dist/src/socket/reliable-emitter.d.ts.map +0 -1
- package/dist/src/socket/reliable-emitter.js.map +0 -1
- package/dist/src/types.d.ts +0 -112
- package/dist/src/types.d.ts.map +0 -1
- package/dist/src/types.js.map +0 -1
- package/dist/src/upload-tool.d.ts +0 -27
- package/dist/src/upload-tool.d.ts.map +0 -1
- package/dist/src/upload-tool.js.map +0 -1
- package/node_modules/@socket.io/component-emitter/LICENSE +0 -24
- package/node_modules/@socket.io/component-emitter/Readme.md +0 -79
- package/node_modules/@socket.io/component-emitter/lib/cjs/index.d.ts +0 -179
- package/node_modules/@socket.io/component-emitter/lib/cjs/index.js +0 -176
- package/node_modules/@socket.io/component-emitter/lib/cjs/package.json +0 -4
- package/node_modules/@socket.io/component-emitter/lib/esm/index.d.ts +0 -179
- package/node_modules/@socket.io/component-emitter/lib/esm/index.js +0 -169
- package/node_modules/@socket.io/component-emitter/lib/esm/package.json +0 -4
- package/node_modules/@socket.io/component-emitter/package.json +0 -28
- package/node_modules/debug/LICENSE +0 -20
- package/node_modules/debug/README.md +0 -481
- package/node_modules/debug/package.json +0 -64
- package/node_modules/debug/src/browser.js +0 -272
- package/node_modules/debug/src/common.js +0 -292
- package/node_modules/debug/src/index.js +0 -10
- package/node_modules/debug/src/node.js +0 -263
- package/node_modules/engine.io-client/LICENSE +0 -22
- package/node_modules/engine.io-client/README.md +0 -331
- package/node_modules/engine.io-client/build/cjs/browser-entrypoint.d.ts +0 -3
- package/node_modules/engine.io-client/build/cjs/browser-entrypoint.js +0 -4
- package/node_modules/engine.io-client/build/cjs/contrib/has-cors.d.ts +0 -1
- package/node_modules/engine.io-client/build/cjs/contrib/has-cors.js +0 -14
- package/node_modules/engine.io-client/build/cjs/contrib/parseqs.d.ts +0 -15
- package/node_modules/engine.io-client/build/cjs/contrib/parseqs.js +0 -38
- package/node_modules/engine.io-client/build/cjs/contrib/parseuri.d.ts +0 -1
- package/node_modules/engine.io-client/build/cjs/contrib/parseuri.js +0 -67
- package/node_modules/engine.io-client/build/cjs/globals.d.ts +0 -4
- package/node_modules/engine.io-client/build/cjs/globals.js +0 -26
- package/node_modules/engine.io-client/build/cjs/globals.node.d.ts +0 -21
- package/node_modules/engine.io-client/build/cjs/globals.node.js +0 -97
- package/node_modules/engine.io-client/build/cjs/index.d.ts +0 -15
- package/node_modules/engine.io-client/build/cjs/index.js +0 -32
- package/node_modules/engine.io-client/build/cjs/package.json +0 -10
- package/node_modules/engine.io-client/build/cjs/socket.d.ts +0 -482
- package/node_modules/engine.io-client/build/cjs/socket.js +0 -765
- package/node_modules/engine.io-client/build/cjs/transport.d.ts +0 -106
- package/node_modules/engine.io-client/build/cjs/transport.js +0 -153
- package/node_modules/engine.io-client/build/cjs/transports/index.d.ts +0 -8
- package/node_modules/engine.io-client/build/cjs/transports/index.js +0 -11
- package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.d.ts +0 -15
- package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.js +0 -60
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.d.ts +0 -108
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.js +0 -285
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.d.ts +0 -11
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.js +0 -44
- package/node_modules/engine.io-client/build/cjs/transports/polling.d.ts +0 -52
- package/node_modules/engine.io-client/build/cjs/transports/polling.js +0 -165
- package/node_modules/engine.io-client/build/cjs/transports/websocket.d.ts +0 -36
- package/node_modules/engine.io-client/build/cjs/transports/websocket.js +0 -136
- package/node_modules/engine.io-client/build/cjs/transports/websocket.node.d.ts +0 -14
- package/node_modules/engine.io-client/build/cjs/transports/websocket.node.js +0 -68
- package/node_modules/engine.io-client/build/cjs/transports/webtransport.d.ts +0 -18
- package/node_modules/engine.io-client/build/cjs/transports/webtransport.js +0 -94
- package/node_modules/engine.io-client/build/cjs/util.d.ts +0 -7
- package/node_modules/engine.io-client/build/cjs/util.js +0 -65
- package/node_modules/engine.io-client/build/esm/browser-entrypoint.d.ts +0 -3
- package/node_modules/engine.io-client/build/esm/browser-entrypoint.js +0 -2
- package/node_modules/engine.io-client/build/esm/contrib/has-cors.d.ts +0 -1
- package/node_modules/engine.io-client/build/esm/contrib/has-cors.js +0 -11
- package/node_modules/engine.io-client/build/esm/contrib/parseqs.d.ts +0 -15
- package/node_modules/engine.io-client/build/esm/contrib/parseqs.js +0 -34
- package/node_modules/engine.io-client/build/esm/contrib/parseuri.d.ts +0 -1
- package/node_modules/engine.io-client/build/esm/contrib/parseuri.js +0 -64
- package/node_modules/engine.io-client/build/esm/globals.d.ts +0 -4
- package/node_modules/engine.io-client/build/esm/globals.js +0 -22
- package/node_modules/engine.io-client/build/esm/globals.node.d.ts +0 -21
- package/node_modules/engine.io-client/build/esm/globals.node.js +0 -91
- package/node_modules/engine.io-client/build/esm/index.d.ts +0 -15
- package/node_modules/engine.io-client/build/esm/index.js +0 -15
- package/node_modules/engine.io-client/build/esm/package.json +0 -10
- package/node_modules/engine.io-client/build/esm/socket.d.ts +0 -482
- package/node_modules/engine.io-client/build/esm/socket.js +0 -727
- package/node_modules/engine.io-client/build/esm/transport.d.ts +0 -106
- package/node_modules/engine.io-client/build/esm/transport.js +0 -142
- package/node_modules/engine.io-client/build/esm/transports/index.d.ts +0 -8
- package/node_modules/engine.io-client/build/esm/transports/index.js +0 -8
- package/node_modules/engine.io-client/build/esm/transports/polling-fetch.d.ts +0 -15
- package/node_modules/engine.io-client/build/esm/transports/polling-fetch.js +0 -56
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.d.ts +0 -108
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.js +0 -271
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.d.ts +0 -11
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.js +0 -17
- package/node_modules/engine.io-client/build/esm/transports/polling.d.ts +0 -52
- package/node_modules/engine.io-client/build/esm/transports/polling.js +0 -145
- package/node_modules/engine.io-client/build/esm/transports/websocket.d.ts +0 -36
- package/node_modules/engine.io-client/build/esm/transports/websocket.js +0 -125
- package/node_modules/engine.io-client/build/esm/transports/websocket.node.d.ts +0 -14
- package/node_modules/engine.io-client/build/esm/transports/websocket.node.js +0 -41
- package/node_modules/engine.io-client/build/esm/transports/webtransport.d.ts +0 -18
- package/node_modules/engine.io-client/build/esm/transports/webtransport.js +0 -80
- package/node_modules/engine.io-client/build/esm/util.d.ts +0 -7
- package/node_modules/engine.io-client/build/esm/util.js +0 -59
- package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.d.ts +0 -3
- package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.js +0 -2
- package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.d.ts +0 -1
- package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.js +0 -11
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.d.ts +0 -15
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.js +0 -34
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.d.ts +0 -1
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.js +0 -64
- package/node_modules/engine.io-client/build/esm-debug/globals.d.ts +0 -4
- package/node_modules/engine.io-client/build/esm-debug/globals.js +0 -22
- package/node_modules/engine.io-client/build/esm-debug/globals.node.d.ts +0 -21
- package/node_modules/engine.io-client/build/esm-debug/globals.node.js +0 -91
- package/node_modules/engine.io-client/build/esm-debug/index.d.ts +0 -15
- package/node_modules/engine.io-client/build/esm-debug/index.js +0 -15
- package/node_modules/engine.io-client/build/esm-debug/package.json +0 -10
- package/node_modules/engine.io-client/build/esm-debug/socket.d.ts +0 -482
- package/node_modules/engine.io-client/build/esm-debug/socket.js +0 -756
- package/node_modules/engine.io-client/build/esm-debug/transport.d.ts +0 -106
- package/node_modules/engine.io-client/build/esm-debug/transport.js +0 -145
- package/node_modules/engine.io-client/build/esm-debug/transports/index.d.ts +0 -8
- package/node_modules/engine.io-client/build/esm-debug/transports/index.js +0 -8
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.d.ts +0 -15
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.js +0 -56
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.d.ts +0 -108
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.js +0 -276
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.d.ts +0 -11
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.js +0 -17
- package/node_modules/engine.io-client/build/esm-debug/transports/polling.d.ts +0 -52
- package/node_modules/engine.io-client/build/esm-debug/transports/polling.js +0 -158
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.d.ts +0 -36
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.js +0 -128
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.d.ts +0 -14
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.js +0 -41
- package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.d.ts +0 -18
- package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.js +0 -87
- package/node_modules/engine.io-client/build/esm-debug/util.d.ts +0 -7
- package/node_modules/engine.io-client/build/esm-debug/util.js +0 -59
- package/node_modules/engine.io-client/dist/engine.io.esm.min.js +0 -7
- package/node_modules/engine.io-client/dist/engine.io.esm.min.js.map +0 -1
- package/node_modules/engine.io-client/dist/engine.io.js +0 -3064
- package/node_modules/engine.io-client/dist/engine.io.js.map +0 -1
- package/node_modules/engine.io-client/dist/engine.io.min.js +0 -7
- package/node_modules/engine.io-client/dist/engine.io.min.js.map +0 -1
- package/node_modules/engine.io-client/node_modules/ws/index.js +0 -13
- package/node_modules/engine.io-client/node_modules/ws/wrapper.mjs +0 -8
- package/node_modules/engine.io-client/package.json +0 -95
- package/node_modules/engine.io-parser/LICENSE +0 -22
- package/node_modules/engine.io-parser/Readme.md +0 -158
- package/node_modules/engine.io-parser/build/cjs/commons.d.ts +0 -14
- package/node_modules/engine.io-parser/build/cjs/commons.js +0 -19
- package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.d.ts +0 -2
- package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.js +0 -48
- package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.d.ts +0 -2
- package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.js +0 -66
- package/node_modules/engine.io-parser/build/cjs/decodePacket.d.ts +0 -2
- package/node_modules/engine.io-parser/build/cjs/decodePacket.js +0 -59
- package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.d.ts +0 -4
- package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.js +0 -72
- package/node_modules/engine.io-parser/build/cjs/encodePacket.d.ts +0 -3
- package/node_modules/engine.io-parser/build/cjs/encodePacket.js +0 -38
- package/node_modules/engine.io-parser/build/cjs/index.d.ts +0 -9
- package/node_modules/engine.io-parser/build/cjs/index.js +0 -164
- package/node_modules/engine.io-parser/build/cjs/package.json +0 -8
- package/node_modules/engine.io-parser/build/esm/commons.d.ts +0 -14
- package/node_modules/engine.io-parser/build/esm/commons.js +0 -14
- package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.d.ts +0 -2
- package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js +0 -43
- package/node_modules/engine.io-parser/build/esm/decodePacket.browser.d.ts +0 -2
- package/node_modules/engine.io-parser/build/esm/decodePacket.browser.js +0 -62
- package/node_modules/engine.io-parser/build/esm/decodePacket.d.ts +0 -2
- package/node_modules/engine.io-parser/build/esm/decodePacket.js +0 -55
- package/node_modules/engine.io-parser/build/esm/encodePacket.browser.d.ts +0 -4
- package/node_modules/engine.io-parser/build/esm/encodePacket.browser.js +0 -68
- package/node_modules/engine.io-parser/build/esm/encodePacket.d.ts +0 -3
- package/node_modules/engine.io-parser/build/esm/encodePacket.js +0 -33
- package/node_modules/engine.io-parser/build/esm/index.d.ts +0 -9
- package/node_modules/engine.io-parser/build/esm/index.js +0 -156
- package/node_modules/engine.io-parser/build/esm/package.json +0 -8
- package/node_modules/engine.io-parser/package.json +0 -46
- package/node_modules/ms/index.js +0 -162
- package/node_modules/ms/license.md +0 -21
- package/node_modules/ms/package.json +0 -38
- package/node_modules/ms/readme.md +0 -59
- package/node_modules/socket.io-client/LICENSE +0 -21
- package/node_modules/socket.io-client/README.md +0 -29
- package/node_modules/socket.io-client/build/cjs/browser-entrypoint.d.ts +0 -2
- package/node_modules/socket.io-client/build/cjs/browser-entrypoint.js +0 -4
- package/node_modules/socket.io-client/build/cjs/contrib/backo2.d.ts +0 -12
- package/node_modules/socket.io-client/build/cjs/contrib/backo2.js +0 -69
- package/node_modules/socket.io-client/build/cjs/index.d.ts +0 -29
- package/node_modules/socket.io-client/build/cjs/index.js +0 -76
- package/node_modules/socket.io-client/build/cjs/manager.d.ts +0 -295
- package/node_modules/socket.io-client/build/cjs/manager.js +0 -416
- package/node_modules/socket.io-client/build/cjs/on.d.ts +0 -2
- package/node_modules/socket.io-client/build/cjs/on.js +0 -9
- package/node_modules/socket.io-client/build/cjs/socket.d.ts +0 -593
- package/node_modules/socket.io-client/build/cjs/socket.js +0 -909
- package/node_modules/socket.io-client/build/cjs/url.d.ts +0 -33
- package/node_modules/socket.io-client/build/cjs/url.js +0 -69
- package/node_modules/socket.io-client/build/esm/browser-entrypoint.d.ts +0 -2
- package/node_modules/socket.io-client/build/esm/browser-entrypoint.js +0 -2
- package/node_modules/socket.io-client/build/esm/contrib/backo2.d.ts +0 -12
- package/node_modules/socket.io-client/build/esm/contrib/backo2.js +0 -66
- package/node_modules/socket.io-client/build/esm/index.d.ts +0 -29
- package/node_modules/socket.io-client/build/esm/index.js +0 -58
- package/node_modules/socket.io-client/build/esm/manager.d.ts +0 -295
- package/node_modules/socket.io-client/build/esm/manager.js +0 -367
- package/node_modules/socket.io-client/build/esm/on.d.ts +0 -2
- package/node_modules/socket.io-client/build/esm/on.js +0 -6
- package/node_modules/socket.io-client/build/esm/package.json +0 -5
- package/node_modules/socket.io-client/build/esm/socket.d.ts +0 -593
- package/node_modules/socket.io-client/build/esm/socket.js +0 -880
- package/node_modules/socket.io-client/build/esm/url.d.ts +0 -33
- package/node_modules/socket.io-client/build/esm/url.js +0 -59
- package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.d.ts +0 -2
- package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.js +0 -2
- package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.d.ts +0 -12
- package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.js +0 -66
- package/node_modules/socket.io-client/build/esm-debug/index.d.ts +0 -29
- package/node_modules/socket.io-client/build/esm-debug/index.js +0 -62
- package/node_modules/socket.io-client/build/esm-debug/manager.d.ts +0 -295
- package/node_modules/socket.io-client/build/esm-debug/manager.js +0 -386
- package/node_modules/socket.io-client/build/esm-debug/on.d.ts +0 -2
- package/node_modules/socket.io-client/build/esm-debug/on.js +0 -6
- package/node_modules/socket.io-client/build/esm-debug/package.json +0 -5
- package/node_modules/socket.io-client/build/esm-debug/socket.d.ts +0 -593
- package/node_modules/socket.io-client/build/esm-debug/socket.js +0 -902
- package/node_modules/socket.io-client/build/esm-debug/url.d.ts +0 -33
- package/node_modules/socket.io-client/build/esm-debug/url.js +0 -63
- package/node_modules/socket.io-client/dist/socket.io.esm.min.js +0 -7
- package/node_modules/socket.io-client/dist/socket.io.esm.min.js.map +0 -1
- package/node_modules/socket.io-client/dist/socket.io.js +0 -4955
- package/node_modules/socket.io-client/dist/socket.io.js.map +0 -1
- package/node_modules/socket.io-client/dist/socket.io.min.js +0 -7
- package/node_modules/socket.io-client/dist/socket.io.min.js.map +0 -1
- package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js +0 -7
- package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js.map +0 -1
- package/node_modules/socket.io-client/package.json +0 -101
- package/node_modules/socket.io-parser/LICENSE +0 -20
- package/node_modules/socket.io-parser/Readme.md +0 -81
- package/node_modules/socket.io-parser/build/cjs/binary.d.ts +0 -20
- package/node_modules/socket.io-parser/build/cjs/binary.js +0 -87
- package/node_modules/socket.io-parser/build/cjs/index.d.ts +0 -101
- package/node_modules/socket.io-parser/build/cjs/index.js +0 -367
- package/node_modules/socket.io-parser/build/cjs/is-binary.d.ts +0 -7
- package/node_modules/socket.io-parser/build/cjs/is-binary.js +0 -54
- package/node_modules/socket.io-parser/build/cjs/package.json +0 -3
- package/node_modules/socket.io-parser/build/esm/binary.d.ts +0 -20
- package/node_modules/socket.io-parser/build/esm/binary.js +0 -83
- package/node_modules/socket.io-parser/build/esm/index.d.ts +0 -101
- package/node_modules/socket.io-parser/build/esm/index.js +0 -356
- package/node_modules/socket.io-parser/build/esm/is-binary.d.ts +0 -7
- package/node_modules/socket.io-parser/build/esm/is-binary.js +0 -50
- package/node_modules/socket.io-parser/build/esm/package.json +0 -3
- package/node_modules/socket.io-parser/build/esm-debug/binary.d.ts +0 -20
- package/node_modules/socket.io-parser/build/esm-debug/binary.js +0 -83
- package/node_modules/socket.io-parser/build/esm-debug/index.d.ts +0 -101
- package/node_modules/socket.io-parser/build/esm-debug/index.js +0 -361
- package/node_modules/socket.io-parser/build/esm-debug/is-binary.d.ts +0 -7
- package/node_modules/socket.io-parser/build/esm-debug/is-binary.js +0 -50
- package/node_modules/socket.io-parser/build/esm-debug/package.json +0 -3
- package/node_modules/socket.io-parser/package.json +0 -44
- package/node_modules/xmlhttprequest-ssl/LICENSE +0 -22
- package/node_modules/xmlhttprequest-ssl/README.md +0 -67
- package/node_modules/xmlhttprequest-ssl/lib/XMLHttpRequest.js +0 -689
- package/node_modules/xmlhttprequest-ssl/package.json +0 -40
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/LICENSE +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/README.md +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/browser.js +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/buffer-util.js +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/event-target.js +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/extension.js +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/limiter.js +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/receiver.js +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/sender.js +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/stream.js +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/subprotocol.js +0 -0
- /package/node_modules/{engine.io-client/node_modules/ws → ws}/lib/validation.js +0 -0
|
@@ -1,285 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
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;
|
|
@@ -1,52 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,165 +0,0 @@
|
|
|
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;
|
|
@@ -1,36 +0,0 @@
|
|
|
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
|
-
}
|