在 PHP 中使用 Node.js、Socket.io、Redis 进行私聊
Private Chat Messaging using Node.js, Socket.io, Redis in PHP
我正在为我的 php 应用程序开发一个实时私人消息系统。我的代码适用于所有用户。但我需要私人消息系统作为一对一的消息。
设置节点和 redis 后,我可以获得我需要的消息数据:这是代码 ::
前端::
1. 我使用表单 - 用户名、消息和发送按钮
和通知 JS:
$( document ).ready(function() {
var socket = io.connect('http://192.168.2.111:8890');
socket.on('notification', function (data) {
var message = JSON.parse(data);
$( "#notifications" ).prepend("<p> <strong> " + message.user_name + "</strong>: " + message.message + "</p>" );
});
});
服务器端 js:
var app = require('express')();
var server = require('http').Server(app);
var io = require('socket.io')(server);
var redis = require('redis');
server.listen(8890);
var users = {};
var sockets = {};
io.on('connection', function (socket) {
console.log(" New User Connected ");
// instance of Redis Client
var redisClient = redis.createClient();
redisClient.subscribe('notification');
socket.on('set nickname', function (name) {
socket.set('nickname', name, function () {
socket.emit('ready');
});
});
socket.on('msg', function () {
socket.get('nickname', function (err, name) {
console.log('Chat message by ', name);
});
});
redisClient.on("message", function(channel, message)
{
// to view into terminal for monitoring
console.log("Message from: " + message + ". In channel: " + channel + ". Socket ID "+ socket.id );
//send to socket
socket.emit(channel, message);
});
redisClient.on('update_chatter_count', function(data)
{
socket.emit('count_chatters', data);
});
//close redis
socket.on('disconnect', function()
{
redisClient.quit();
});
});
HTML::
<script src="https://cdn.socket.io/socket.io-1.3.5.js"></script>
<form .....>
<input ....... >
</form>
<div id="notifications" ></div>
总产量:
John : Hello
Kate : Hi
Others: .....
以上代码在我的 php 应用程序中运行良好。现在我想设置私人或一对一的消息系统。
我需要为用户添加用户名或电子邮件或唯一 socketID 的方式。我对私人消息没有更多的想法。我试图在网上计算但失败了。
**如何在我的 php 应用程序中设置私人消息? **
变量的基本初始化:-
首先,制作 mapOfSocketIdToSocket 的 MAP,然后发送您要向其发送消息的特定用户的用户 ID前端。在服务器中,找到与用户标识映射的 套接字对象 并在该套接字中发出您的消息。这是想法的示例(不是完整的代码)
var io = socketio.listen(server);
var connectedCount = 0;
var clients = [];
var socketList = [];
var socketInfo = {};
var mapOfSocketIdToSocket={};
socket.on('connectionInitiation', function (user) {
io.sockets.sockets['socketID'] = socket.id;
socketInfo = {};
socketInfo['userId']=user.userId;
socketInfo['connectTime'] = new Date();
socketInfo['socketId'] = socket.id;
socketList.push(socketInfo);
socket.nickname = user.name;
socket.userId= user.userId;
loggjs.debug("<"+ user.name + "> is just connected!!");
clients.push(user.userId);
mapOfSocketIdToSocket[socket.id]=socket;
}
socket.on('messageFromClient', function (cMessageObj, callback) {
for(var i=0; i<socketList.length;i++){
if(socketList[i]['userId']==cMessageObj['messageToUserID']){ // if user is online
mapOfSocketIdToSocket[socketList[i]['socketId']].emit('clientToClientMessage', {sMessageObj: cMessageObj});
loggjs.debug(cMessageObj);
}
}
})
要么你想去私人一对多聊天室,要么你可以去一对一频道交流(如果只有两个成员交流)http://williammora.com/nodejs-tutorial-building-chatroom-with/
我建议您使用 socketIO 命名空间,它允许您从/向特定通信发送/发出事件"channels"。
这是关于房间和命名空间的 link 到 socketIO 文档
http://socket.io/docs/rooms-and-namespaces/
干杯
使用Pusher。它提供频道使用,无需任何额外代码即可进行私人聊天
一种解决方案是向具有特定套接字 ID 的人发送消息。由于您已经在使用 Redis,因此您可以在用户加入时将用户的详细信息和套接字 ID 存储在 Redis 中,然后在您想向他发送消息时通过从 Redis 获取套接字 ID 来向用户发送消息。像
这样的调用事件
socket.emit('send private') 来自前端
并在后端处理
socket.on('send private'){
// 在里面做 redis 的东西 }
我正在为我的 php 应用程序开发一个实时私人消息系统。我的代码适用于所有用户。但我需要私人消息系统作为一对一的消息。
设置节点和 redis 后,我可以获得我需要的消息数据:这是代码 ::
前端:: 1. 我使用表单 - 用户名、消息和发送按钮
和通知 JS:
$( document ).ready(function() {
var socket = io.connect('http://192.168.2.111:8890');
socket.on('notification', function (data) {
var message = JSON.parse(data);
$( "#notifications" ).prepend("<p> <strong> " + message.user_name + "</strong>: " + message.message + "</p>" );
});
});
服务器端 js:
var app = require('express')();
var server = require('http').Server(app);
var io = require('socket.io')(server);
var redis = require('redis');
server.listen(8890);
var users = {};
var sockets = {};
io.on('connection', function (socket) {
console.log(" New User Connected ");
// instance of Redis Client
var redisClient = redis.createClient();
redisClient.subscribe('notification');
socket.on('set nickname', function (name) {
socket.set('nickname', name, function () {
socket.emit('ready');
});
});
socket.on('msg', function () {
socket.get('nickname', function (err, name) {
console.log('Chat message by ', name);
});
});
redisClient.on("message", function(channel, message)
{
// to view into terminal for monitoring
console.log("Message from: " + message + ". In channel: " + channel + ". Socket ID "+ socket.id );
//send to socket
socket.emit(channel, message);
});
redisClient.on('update_chatter_count', function(data)
{
socket.emit('count_chatters', data);
});
//close redis
socket.on('disconnect', function()
{
redisClient.quit();
});
});
HTML::
<script src="https://cdn.socket.io/socket.io-1.3.5.js"></script>
<form .....>
<input ....... >
</form>
<div id="notifications" ></div>
总产量:
John : Hello
Kate : Hi
Others: .....
以上代码在我的 php 应用程序中运行良好。现在我想设置私人或一对一的消息系统。
我需要为用户添加用户名或电子邮件或唯一 socketID 的方式。我对私人消息没有更多的想法。我试图在网上计算但失败了。
**如何在我的 php 应用程序中设置私人消息? **
变量的基本初始化:-
首先,制作 mapOfSocketIdToSocket 的 MAP,然后发送您要向其发送消息的特定用户的用户 ID前端。在服务器中,找到与用户标识映射的 套接字对象 并在该套接字中发出您的消息。这是想法的示例(不是完整的代码)
var io = socketio.listen(server);
var connectedCount = 0;
var clients = [];
var socketList = [];
var socketInfo = {};
var mapOfSocketIdToSocket={};
socket.on('connectionInitiation', function (user) {
io.sockets.sockets['socketID'] = socket.id;
socketInfo = {};
socketInfo['userId']=user.userId;
socketInfo['connectTime'] = new Date();
socketInfo['socketId'] = socket.id;
socketList.push(socketInfo);
socket.nickname = user.name;
socket.userId= user.userId;
loggjs.debug("<"+ user.name + "> is just connected!!");
clients.push(user.userId);
mapOfSocketIdToSocket[socket.id]=socket;
}
socket.on('messageFromClient', function (cMessageObj, callback) {
for(var i=0; i<socketList.length;i++){
if(socketList[i]['userId']==cMessageObj['messageToUserID']){ // if user is online
mapOfSocketIdToSocket[socketList[i]['socketId']].emit('clientToClientMessage', {sMessageObj: cMessageObj});
loggjs.debug(cMessageObj);
}
}
})
要么你想去私人一对多聊天室,要么你可以去一对一频道交流(如果只有两个成员交流)http://williammora.com/nodejs-tutorial-building-chatroom-with/
我建议您使用 socketIO 命名空间,它允许您从/向特定通信发送/发出事件"channels"。
这是关于房间和命名空间的 link 到 socketIO 文档
http://socket.io/docs/rooms-and-namespaces/
干杯
使用Pusher。它提供频道使用,无需任何额外代码即可进行私人聊天
一种解决方案是向具有特定套接字 ID 的人发送消息。由于您已经在使用 Redis,因此您可以在用户加入时将用户的详细信息和套接字 ID 存储在 Redis 中,然后在您想向他发送消息时通过从 Redis 获取套接字 ID 来向用户发送消息。像
这样的调用事件socket.emit('send private') 来自前端
并在后端处理
socket.on('send private'){ // 在里面做 redis 的东西 }