Skip to content
Snippets Groups Projects
Commit af46e1b4 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

implement stubbed email verification loop.

parent 0ff7ff26
No related branches found
No related tags found
No related merge requests found
......@@ -3,14 +3,11 @@ var g_emails = {
};
// half created user accounts (pending email verification)
var g_stagedUsers = {
};
// OR
// half added emails (pending verification)
var g_stagedEmails = {
var g_staged = {
};
exports.haveEmail = function(email) {
return g_emails.hasOwnProperty(email);
};
......@@ -28,10 +25,24 @@ function generateSecret() {
exports.stageUser = function(obj) {
var secret = generateSecret();
// overwrite previously staged users
g_stagedUsers[obj.email] = {
secret: secret,
g_staged[secret] = {
email: obj.email,
pubkey: obj.pubkey,
pass: obj.pass
};
return secret;
};
/* invoked when a user clicks on a verification URL in their email */
exports.gotVerificationSecret = function(secret) {
if (!g_staged.hasOwnProperty(secret)) return false;
// simply move from staged over to the emails "database"
var o = g_staged[secret];
delete g_staged[secret];
g_emails[o.email] = {
pass: o.pass,
pubkey: o.pubkey
};
return true;
};
exports.sendVerificationEmail = function(email, hash) {
exports.sendVerificationEmail = function(email, secret) {
console.log("fakely sending a verification email for " + email);
// XXX: what we would really do here is send out an email, instead
// we'll just wait 5 seconds and manually feed the secret back into the
// system, as if a user had clicked a link
setTiemout(function() {
db.gotVerificationSecret(secret);
}, 5000);
};
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment