Node.js / Socket.io / Passport.js LOGOUT问题

时间:2012-08-06 15:54:55

标签: node.js socket.io passport.js

我正在使用Node.jsExpress框架)创建网站,并使用Passportjs进行身份验证。我使用socket.io在客户端和服务器之间进行通信。我的网站显示哪些用户在线。我想要的是,当客户关闭他的标签或浏览器本身而不退出网站时,我希望用户在'disconnect'事件触发时从网站注销。代码片段应该在server侧看起来像。

io.sockets.on('connection', function (socket) {
socket.on('disconnect', function()  {
    console.log("|||||| DISCONNECTED ||||||");
    //LOGOUT USER CODE
});
});

我正在使用Passportjs的本地策略。它在CouchDB数据库中搜索用户,如果用户名/密码组合正确,则登录。

我的解决方案显然不起作用:

app.configure(function() {
  app.set('views', __dirname + '/views');
  app.set('view engine', 'ejs');
  app.use(express.logger());
  app.use(express.cookieParser());
  app.use(express.bodyParser());
  app.use(express.methodOverride());
  app.use(express.static(__dirname + '/'));
  app.use(express.session({ secret: 'keyboard cat'}));
  // Initialize Passport!  Also use passport.session() middleware, to support
  // persistent login sessions (recommended).
  app.use(passport.initialize());
  app.use(passport.session());
  app.use(app.router);

  //a new custom middleware to logout the user when the pathname is '/exit'      

  app.use(function(req, res, next)  {
      var pathname = url.parse(req.url).pathname;
      if(pathname == '/exit')
        req.logout();
      next();
  });
});

我使用了一个名为xmlhttprequest的节点模块来定义这样的创建http请求。

var XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;

然后在我的socket的断开事件中,我添加了以下行。

io.sockets.on('connection', function (socket) {
socket.on('disconnect', function()  {
    console.log("|||||| DISCONNECTED ||||||");
    var xhr = new XMLHttpRequest();      
    xhr.open("GET", "http://localhost:3000/exit");
    xhr.send();
});
});

这不起作用,并且disconnect事件触发时用户未注销。我可以在控制台上看到此消息|||||| DISCONNECTED ||||||。此外,如果我在浏览器地址栏中输入http://localhost:3000/exit,然后按回车键,我会在浏览器中看到此消息:Cannot GET /exit,但在按下并刷新用户注销的页面时。

1 个答案:

答案 0 :(得分:0)

这段代码不好。

 app.use(function(req, res, next)  {
      var pathname = url.parse(req.url).pathname;
      if(pathname == '/exit')
        req.logout();
        //try adding this line, so that it doesn't just show the "can't retrieve"
        res.end('<html><head>logged out</head><body>logged out</body></html>');
      next();
  });

编辑:

socket.on('disconnect', function()  {
    console.log("|||||| DISCONNECTED ||||||");
    var xhr = new XMLHttpRequest();      
    //this won't work, don't do this
    xhr.open("GET", "http://localhost:3000/exit");
    xhr.send();
});

相反,请执行此操作:

socket.on('disconnect', function()  {
    console.log("|||||| DISCONNECTED ||||||");
    user.logout();
});

我建议此时从页面进行重定向,退出,然后退出再发送另一个重定向到另一个页面。我就是这样做的。