web-dev-qa-db-ja.com

node.jsとsocket.ioを使用してキー間のプライベートチャットを作成する

Node.jsとsocket.ioを使用してconversation_idを共有するプライベートチャットですべてのユーザーにメッセージを送信するにはどうすればよいですか?

var express = require('express'),
app = express(),
server = require('http').createServer(app),
io = require('socket.io').listen(server);
conversations = {};

app.get('/', function(req, res) {
res.sendfile('/');
});

io.sockets.on('connection', function (socket) {

socket.on('send message', function (data) {

    var conversation_id = data.conversation_id;

    if (conversation_id in conversations) {

        console.log (conversation_id + ' is already in the conversations object');

        // emit the message [data.message] to all connected users in the conversation

    } else {
        socket.conversation_id = data;
        conversations[socket.conversation_id] = socket;

        conversations[conversation_id] = data.conversation_id;

        console.log ('adding '  + conversation_id + ' to conversations.');

        // emit the message [data.message] to all connected users in the conversation

    }
})
});

server.listen(8080);
24
Asa Carter

conversation_idでルームを作成し、そのルームにユーザーをサブスクライブさせる必要があります。そうすることで、そのルームにプライベートメッセージを送信できます。

クライアント

var socket = io.connect('http://ip:port');

socket.emit('subscribe', conversation_id);

socket.emit('send message', {
    room: conversation_id,
    message: "Some message"
});

socket.on('conversation private post', function(data) {
    //display data.message
});

サーバー

socket.on('subscribe', function(room) {
    console.log('joining room', room);
    socket.join(room);
});

socket.on('send message', function(data) {
    console.log('sending room post', data.room);
    socket.broadcast.to(data.room).emit('conversation private post', {
        message: data.message
    });
});

ルームを作成し、ルームにサブスクライブし、ルームにメッセージを送信するためのドキュメントと例は次のとおりです。

  1. Socket.io Rooms
  2. Socket.IOは複数のチャンネルにサブスクライブします
  3. socket.ioの部屋はbroadcast.toとsockets.inの違い
55
Srikanth Jeeva

確かに、単純に、

これはあなたが必要とするものです:

 io.to(socket.id).emit("event", data);

ユーザーがサーバーに参加するたびに、IDを含むソケットの詳細が生成されます。これは、特定の人にメッセージを送信するのに本当に役立つIDです。

まず、すべてのsocket.idを配列に保存する必要があります。

   var people={};

   people[name] =  socket.id;

ここで、nameは受信者の名前です。例:

  people["ccccc"]=2387423cjhgfwerwer23;

したがって、メッセージを送信するたびに、受信者の名前でそのsocket.idを取得できます。

そのためには、受信者名を知る必要があります。受信者名をサーバーに送信する必要があります。

最後に:

  socket.on('chat message', function(data){
 io.to(people[data.reciever]).emit('chat message', data.msg);
 });

これがあなたのためにうまくいくことを願っています!

15
Trojan