Meteor - 无法识别验证登录后创建的新用户

Meteor - New user created after validating login is not recognized

我有一个登录验证功能设置来检查是否有新用户在应用程序之外注册。用户信息存储在临时集合中。如果用户信息通过验证,我希望能够在客户端使用 Accounts.createUser,但我不知道该怎么做。文档说 "registered validate login callbacks are called with a single argument, the attempt info object",但我找不到任何有关如何执行此操作的示例。

environment.js

Accounts.config({
 forbidClientAccountCreation : true
});

server.js

    Accounts.validateLoginAttempt(function(info){
    if (!info.allowed)
    {
        var userEmail = info.methodArguments[0].user['email'].toLowerCase();
        var userPass = info.methodArguments[0].password['digest'];

        // check if this is a temp user
        if (tmpUsers.find({'email': userEmail}).count() == 1)
        {
            var user = tmpUsers.findOne({'email': userEmail})
            // check for active
            if (user.active == "Yes")
            {
                // check password
                if (userPass == user.password)
                {
                    var accountId = Accounts.createUser({
                        'password': userPass,
                        'email': userEmail,
                        'profile': ({'acctType': user.type})
                    });
                    return true;
                } else {
                    throw new Meteor.Error(403, "Incorrect password.");
                    return false;
                }
            } else {
                throw new Meteor.Error(403, "Your account has yet to be activated.);
                return false;
            }
        } else {
            throw new Meteor.Error(403, "Can not find user " + userEmail);
            return false;
        }
    } else {
        return true;
    }
}); 

更新:

我最终将 Account.userCreate 部分放在服务器端,现在它确实创建了用户但是当我尝试登录时我得到 "Email already exists." 所以它看起来好像没有期望登录成功并尝试再次创建用户。

{ // This user works
 "_id" : "hCBLo3AJJwmtR6s62",
 "createdAt" : ISODate("2014-12-26T20:27:58.44Z"),
 "services" : {
   "password" : {
    "bcrypt" : "a$pxlEy.JFomgwQwV2cpm72.TBG4.llP98BF9ssTCptC4WsekLzJO9G"
   },
 "resume" : {
  "loginTokens" : []
 }
},
"emails" : [{
  "address" : "demo@demo.com",
  "verified" : false
}]
} 

{ // This one does not
 "_id" : "w6SGuqJJPs5LoCTTj",
 "createdAt" : ISODate("2015-01-10T20:54:16.032Z"),
 "services" : {
  "password" : {
   "bcrypt" : "a$VJFj0UOrQiLs7djfGWAeMeruDactDFrl1nlEsXh/r5Z/895C5ubAW"
  }
 },
  "emails" : [{
    "address" : "demo2@demo.com",
    "verified" : false
  }],
 "profile" : {
   "acctType" : null
 }
}

这样的事情对你有用吗?

var options = {
  username: "username",    // you'll need to fill this in
  email:    userEmail,
  password: userPass,
  profile:  {name: "name"} // you'll need to fill this in
};

Accounts.createUser(options, function (error) {
  if (error) {
    console.log("Cannot create user");
  }
});