部屋に接続されているサーバー側のすべてのソケットを取得したい。
clients
メソッドの後にチェーンするin
と、部屋に接続されているすべてのソケットが返されるメソッドを見つけました。
import * as express from 'express';
import * as SocketIO from 'socket.io';
import * as redisSocket from 'socket.io-redis';
import * as sharedsession from 'express-socket.io-session';
const app = express();
const redisOption = {port: 6379, host: 'XXX'};
// use the RedisStore as express session
const session = session({
name: 'SESSIONID',
store: new RedisStore(redisOption),
secret: 'Ashg8hV77bxFeyLVec',
resave: false,
saveUninitialized: false
});
app.use(session);
// start express server
const httpServer = app.listen(80);
// attach the express app to socket.io server
const socketServer = SocketIO(httpServer, { path: '/api/socket.io', origins: '*:*' });
// set redis as socket adpter for multi instance/nodes
socketServer.adapter(redisSocket(redisOption));
// share the express session with socket.io
socketServer.use(sharedsession(session, {autoSave: true}));
// get all client in a room
socketServer.in(room_id).clients((err, clients) => {
for (let i = 0, e = clients.length; i < e; i++) {
const client = clients[i];
console.log(client); // print the socket id
// HOW RETRIVE THE SOCKET OBJECT???
}
});
しかし、すべてのソケット セッション/ハンドシェイクを取得する必要があります。
すべてのソケット セッション/ハンドシェイクを取得する方法はありますか?
補足: ソケット サーバーは、socket.io-redis を使用したマルチ インスタンス/ノードです。
- ソケット.io: 2.3.0
- socket.io-redis: 5.2.0