import { type DefaultSocketData, type Handshake, type SocketReservedEventsMap } from '../types/socket-types'; import { StrictEventEmitter, type AllButLast, type DecorateAcknowledgements, type DecorateAcknowledgementsWithMultipleResponses, type DefaultEventsMap, type EventNames, type EventNamesWithAck, type EventParams, type EventsMap, type FirstNonErrorArg, type Last } from '../types/typed-events'; import type { SocketId, Room } from './socket.io-adapter'; import type { Client } from './client'; import type { Namespace } from './namespace'; import { BroadcastOperator } from './broadcast'; import { type Packet } from './socket.io-parser'; /** * `[eventName, ...args]` */ export type Event = [string, ...any[]]; export declare class Socket extends StrictEventEmitter { readonly nsp: Namespace; readonly client: Client; /** * An unique identifier for the session. */ readonly id: SocketId; /** * The handshake details. */ readonly handshake: Handshake; /** * Additional information that can be attached to the Socket instance and which will be used in the * {@link Server.fetchSockets()} method. */ data: SocketData; /** * Whether the socket is currently connected or not. * * @example * io.use((socket, next) => { * console.log(socket.connected); // false * next(); * }); * * io.on("connection", (socket) => { * console.log(socket.connected); // true * }); */ connected: boolean; private readonly server; private readonly adapter; private acks; private fns; private flags; private _anyListeners?; private _anyOutgoingListeners?; constructor(nsp: Namespace, client: Client, auth: Record); /** * Builds the `handshake` BC object * * @private */ private buildHandshake; /** * Emits to this client. * * @example * io.on("connection", (socket) => { * socket.emit("hello", "world"); * * // all serializable datastructures are supported (no need to call JSON.stringify) * socket.emit("hello", 1, "2", { 3: ["4"], 5: Buffer.from([6]) }); * * // with an acknowledgement from the client * socket.emit("hello", "world", (val) => { * // ... * }); * }); * * @return Always returns `true`. */ emit>(ev: Ev, ...args: EventParams): boolean; /** * Emits an event and waits for an acknowledgement * * @example * io.on("connection", async (socket) => { * // without timeout * const response = await socket.emitWithAck("hello", "world"); * * // with a specific timeout * try { * const response = await socket.timeout(1000).emitWithAck("hello", "world"); * } catch (err) { * // the client did not acknowledge the event in the given delay * } * }); * * @return a Promise that will be fulfilled when the client acknowledges the event */ emitWithAck>(ev: Ev, ...args: AllButLast>): Promise>>>; /** * @private */ private registerAckCallback; /** * Targets a room when broadcasting. * * @example * io.on("connection", (socket) => { * // the “foo” event will be broadcast to all connected clients in the “room-101” room, except this socket * socket.to("room-101").emit("foo", "bar"); * * // the code above is equivalent to: * io.to("room-101").except(socket.id).emit("foo", "bar"); * * // with an array of rooms (a client will be notified at most once) * socket.to(["room-101", "room-102"]).emit("foo", "bar"); * * // with multiple chained calls * socket.to("room-101").to("room-102").emit("foo", "bar"); * }); * * @param room - a room, or an array of rooms * @return a new {@link BroadcastOperator} instance for chaining */ to(room: Room | Room[]): BroadcastOperator, SocketData>; /** * Targets a room when broadcasting. Similar to `to()`, but might feel clearer in some cases: * * @example * io.on("connection", (socket) => { * // disconnect all clients in the "room-101" room, except this socket * socket.in("room-101").disconnectSockets(); * }); * * @param room - a room, or an array of rooms * @return a new {@link BroadcastOperator} instance for chaining */ in(room: Room | Room[]): BroadcastOperator, SocketData>; /** * Excludes a room when broadcasting. * * @example * io.on("connection", (socket) => { * // the "foo" event will be broadcast to all connected clients, except the ones that are in the "room-101" room * // and this socket * socket.except("room-101").emit("foo", "bar"); * * // with an array of rooms * socket.except(["room-101", "room-102"]).emit("foo", "bar"); * * // with multiple chained calls * socket.except("room-101").except("room-102").emit("foo", "bar"); * }); * * @param room - a room, or an array of rooms * @return a new {@link BroadcastOperator} instance for chaining */ except(room: Room | Room[]): BroadcastOperator, SocketData>; /** * Sends a `message` event. * * This method mimics the WebSocket.send() method. * * @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/send * * @example * io.on("connection", (socket) => { * socket.send("hello"); * * // this is equivalent to * socket.emit("message", "hello"); * }); * * @return self */ send(...args: EventParams): this; /** * Sends a `message` event. Alias of {@link send}. * * @return self */ write(...args: EventParams): this; /** * Writes a packet. * * @param {Object} packet - packet object * @param {Object} opts - options * @private */ packet( /** strict types */ packet: Omit & Partial>, opts?: any): void; /** * Joins a room. * * @example * io.on("connection", (socket) => { * // join a single room * socket.join("room1"); * * // join multiple rooms * socket.join(["room1", "room2"]); * }); * * @param {String|Array} rooms - room or array of rooms * @return a Promise or nothing, depending on the adapter */ join(rooms: Room | Array): Promise | void; /** * Leaves a room. * * @example * io.on("connection", (socket) => { * // leave a single room * socket.leave("room1"); * * // leave multiple rooms * socket.leave("room1").leave("room2"); * }); * * @param {String} room * @return a Promise or nothing, depending on the adapter */ leave(room: Room): Promise | void; /** * Leave all rooms. * * @private */ private leaveAll; /** * Called by `Namespace` upon successful * middleware execution (ie: authorization). * Socket is added to namespace array before * call to join, so adapters can access it. * * @private */ private _onconnect; /** * Called with each packet. Called by `Client`. * * @param {Object} packet * @private */ private _onpacket; /** * Called upon event packet. * * @param {Packet} packet - packet object * @private */ private onevent; /** * Produces an ack callback to emit with an event. * * @param {Number} id - packet id * @private */ private ack; /** * Called upon ack packet. * * @private */ private onack; /** * Called upon client disconnect packet. * * @private */ private ondisconnect; /** * Handles a client error. * * @private */ private _onerror; /** * Called upon closing. Called by `Client`. * * @param {String} reason * @param description * @throw {Error} optional error object * * @private */ private _onclose; /** * Makes the socket leave all the rooms it was part of and prevents it from joining any other room * * @private */ private _cleanup; /** * Produces an `error` packet. * * @param {Object} err - error object * * @private */ private _error; /** * Disconnects this client. * * @example * io.on("connection", (socket) => { * // disconnect this socket (the connection might be kept alive for other namespaces) * socket.disconnect(); * * // disconnect this socket and close the underlying connection * socket.disconnect(true); * }) * * @param {Boolean} close - if `true`, closes the underlying connection * @return self */ disconnect(close?: boolean): this; /** * Sets the compress flag. * * @example * io.on("connection", (socket) => { * socket.compress(false).emit("hello"); * }); * * @param {Boolean} compress - if `true`, compresses the sending data * @return {Socket} self */ compress(compress: boolean): this; /** * Sets a modifier for a subsequent event emission that the event data may be lost if the client is not ready to * receive messages (because of network slowness or other issues, or because they’re connected through long polling * and is in the middle of a request-response cycle). * * @example * io.on("connection", (socket) => { * socket.volatile.emit("hello"); // the client may or may not receive it * }); * * @return {Socket} self */ get volatile(): this; /** * Sets a modifier for a subsequent event emission that the event data will only be broadcast to every sockets but the * sender. * * @example * io.on("connection", (socket) => { * // the “foo” event will be broadcast to all connected clients, except this socket * socket.broadcast.emit("foo", "bar"); * }); * * @return a new {@link BroadcastOperator} instance for chaining */ get broadcast(): BroadcastOperator, SocketData>; /** * Sets a modifier for a subsequent event emission that the event data will only be broadcast to the current node. * * @example * io.on("connection", (socket) => { * // the “foo” event will be broadcast to all connected clients on this node, except this socket * socket.local.emit("foo", "bar"); * }); * * @return a new {@link BroadcastOperator} instance for chaining */ get local(): BroadcastOperator, SocketData>; /** * Sets a modifier for a subsequent event emission that the callback will be called with an error when the * given number of milliseconds have elapsed without an acknowledgement from the client: * * @example * io.on("connection", (socket) => { * socket.timeout(5000).emit("my-event", (err) => { * if (err) { * // the client did not acknowledge the event in the given delay * } * }); * }); * * @returns self */ timeout(timeout: number): Socket< /** strict types */ ListenEvents, DecorateAcknowledgements, ServerSideEvents, SocketData>; /** * Dispatch incoming event to socket listeners. * * @param {Array} event - event that will get emitted * @private */ private dispatch; /** * Sets up socket middleware. * * @example * io.on("connection", (socket) => { * socket.use(([event, ...args], next) => { * if (isUnauthorized(event)) { * return next(new Error("unauthorized event")); * } * // do not forget to call next * next(); * }); * * socket.on("error", (err) => { * if (err && err.message === "unauthorized event") { * socket.disconnect(); * } * }); * }); * * @param {Function} fn - middleware function (event, next) * @return {Socket} self */ use(fn: (event: Event, next: (err?: Error) => void) => void): this; /** * Executes the middleware for an incoming event. * * @param {Array} event - event that will get emitted * @param {Function} fn - last fn call in the middleware * @private */ private run; /** * Whether the socket is currently disconnected */ get disconnected(): boolean; /** * A reference to the request that originated the underlying Engine.IO Socket. */ get ctx(): import("hono").Context; /** * A reference to the underlying Client transport connection (Engine.IO Socket object). * * @example * io.on("connection", (socket) => { * // Not compatible with this socket.io-bun version * console.log(socket.conn.transport.name); // prints "polling" or "websocket" * * // Not compatible with this socket.io-bun version * socket.conn.once("upgrade", () => { * console.log(socket.conn.transport.name); // prints "websocket" * }); * }); */ get conn(): import("./engine.io").Socket; private get ws(); /** * Returns the rooms the socket is currently in. * * @example * io.on("connection", (socket) => { * console.log(socket.rooms); // Set { } * * socket.join("room1"); * * console.log(socket.rooms); // Set { , "room1" } * }); */ get rooms(): Set; /** * Adds a listener that will be fired when any event is received. The event name is passed as the first argument to * the callback. * * @example * io.on("connection", (socket) => { * socket.onAny((event, ...args) => { * console.log(`got event ${event}`); * }); * }); * * @param listener */ onAny(listener: (...args: any[]) => void): this; /** * Adds a listener that will be fired when any event is received. The event name is passed as the first argument to * the callback. The listener is added to the beginning of the listeners array. * * @param listener */ prependAny(listener: (...args: any[]) => void): this; /** * Removes the listener that will be fired when any event is received. * * @example * io.on("connection", (socket) => { * const catchAllListener = (event, ...args) => { * console.log(`got event ${event}`); * } * * socket.onAny(catchAllListener); * * // remove a specific listener * socket.offAny(catchAllListener); * * // or remove all listeners * socket.offAny(); * }); * * @param listener */ offAny(listener?: (...args: any[]) => void): this; /** * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated, * e.g. to remove listeners. */ listenersAny(): ((...args: any[]) => void)[]; /** * Adds a listener that will be fired when any event is sent. The event name is passed as the first argument to * the callback. * * Note: acknowledgements sent to the client are not included. * * @example * io.on("connection", (socket) => { * socket.onAnyOutgoing((event, ...args) => { * console.log(`sent event ${event}`); * }); * }); * * @param listener */ onAnyOutgoing(listener: (...args: any[]) => void): this; /** * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the * callback. The listener is added to the beginning of the listeners array. * * @example * io.on("connection", (socket) => { * socket.prependAnyOutgoing((event, ...args) => { * console.log(`sent event ${event}`); * }); * }); * * @param listener */ prependAnyOutgoing(listener: (...args: any[]) => void): this; /** * Removes the listener that will be fired when any event is sent. * * @example * io.on("connection", (socket) => { * const catchAllListener = (event, ...args) => { * console.log(`sent event ${event}`); * } * * socket.onAnyOutgoing(catchAllListener); * * // remove a specific listener * socket.offAnyOutgoing(catchAllListener); * * // or remove all listeners * socket.offAnyOutgoing(); * }); * * @param listener - the catch-all listener */ offAnyOutgoing(listener?: (...args: any[]) => void): this; /** * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated, * e.g. to remove listeners. */ listenersAnyOutgoing(): ((...args: any[]) => void)[]; /** * Notify the listeners for each packet sent (emit or broadcast) * * @param packet * * @private */ notifyOutgoingListeners(packet: Packet): void; private newBroadcastOperator; }