我想通过以上认证socketIO一个MySQL数据库。 我已经建立了连接,并可以没有问题查询结果,但由于某些原因,我无法通过用户是否被认证为connection
socketio的一部分。 这个想法是我的应用程序具有主机和观众。 如果要连接到的应用程序,而不在发送密码QueryString
的应用程序假定它是一个浏览器和接受连接。 如果密码被发送,这是对DB检查,接受/拒绝连接。 我想要一个变量传递到connection
,所以我可以用它我的应用程序事件的内部。 这里就是我有这么远,但显然data.query['ishost']
不流通到应用程序。
sio.configure(function() {
sio.set('authorization', function (data, accept) {
UserID = data.query['username'];
try {
UserID = UserID.toLowerCase();
} catch(err) {
return accept("No WebBot Specified. ("+err+")", false);
}
// if not sending a password, skip authorization and connect as a viewer
if (data.query['password'] === 'undefined')
{
return accept(null, true);
}
// if sending a password, attempt authorization and connect as a host
else
{
client.query(
'SELECT * FROM web_users WHERE username = "'+UserID+'" LIMIT 1',
function selectCb(err, results, fields) {
if (err) {
throw err;
}
// Found match, hash password and check against DB
if (results.length != 0)
{
// Passwords match, authenticate.
if (hex_md5(data.query['password']) == results[0]['password'])
{
data.query['ishost'] = true;
accept(null, true);
}
// Passwords don't match, do not authenticate
else
{
data.query['ishost'] = false;
return accept("Invalid Password", false);
}
}
// No match found, add to DB then authenticate
else
{
client.query(
'INSERT INTO web_users (username, password) VALUES ("'+UserID+'", "'+hex_md5(data.query['password'])+'")', null);
data.query['ishost'] = "1";
accept(null, true);
}
client.end();
}
);
// Should never reach this
return accept("Hacking Attempt", false);
}
// Definitely should never reach this
return accept("Hacking Attempt", false);
});
});
写data.query
使得通过handshakeData访问。 但由于某些原因,它不是通过它通过应用程序。 任何帮助表示赞赏,谢谢。