forked from deitch/activator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.js
203 lines (197 loc) · 6.73 KB
/
example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/*jslint node:true, nomen:true, debug:true, unused:false */
/*global escape */
/*
* this is sample code for usage of activator, but it is not a fully functioning example. For that, you would need smtp, template
* email files, etc. For true working examples, see the test directory.
*/
var express = require('express'), request = require('supertest'),
app = express(), _ = require('lodash'), async = require('async'), smtp = require('smtp-tester'),
mail,
activator = require('./lib/activator'), templates = __dirname+'/test/resources',
users = {
"1": {id:"1",email:"me@you.com",password:"1234"}
},
users,
userModel = {
_find: function (login,cb) {
var found = null;
if (!login) {
cb("nologin");
} else if (users[login]) {
cb(null,_.cloneDeep(users[login]));
} else {
_.each(users,function (val) {
if (val && val.email === login) {
found = val;
return(false);
}
});
cb(null,_.cloneDeep(found));
}
},
find: function() {
this._find.apply(this,arguments);
},
activate: function (id,cb) {
if (id && users[id]) {
users[id].activated = true;
cb(null);
} else {
cb(404);
}
},
setPassword: function (id,password,cb) {
if (id && users[id]) {
users[id].password = password;
cb(null);
} else {
cb(404);
}
}
},
MAILPORT = 30111,
PORT = 30110,
URL = "http://localhost:"+PORT,
r = request(URL),
url = "smtp://localhost:"+MAILPORT+"/gopickup.net/"+escape("GoPickup Test <test@gopickup.net>"),
createUser = function (req,res,next) {
users["2"] = {id:"2",email:"you@foo.com",password:"5678"};
req.activator = {id:"2",body:"2"};
next();
},
genHandler = function(email,subject,path,data,cb) {
if (!cb) {
cb = data;
data = null;
}
return function(rcpt,msgid,content) {
var url, ret, re = new RegExp('http:\\/\\/\\S*'+path.replace(/\//g,'\\/')+'\\?code=([^\\s\\&]+)\\&email=(\\S+)\\&user=([^\\s\\&]+)');
rcpt.should.eql(email);
// check for the correct Subject in the email
// do we have actual content to test? if so, we should ignore templates, because we do not have the request stuff
if (data && data.text) {
url = content.text.match(re);
ret = _.object(["path","code","email","user"],url);
}
if (data && data.html) {
url = content.html.match(re);
ret = _.object(["path","code","email","user"],url);
}
if (!ret) {
url = (content.text||content.html).match(re);
ret = _.object(["path","code","email","user"],url);
}
cb(null,ret);
};
},
aHandler = function (email,data,cb) {
return genHandler(email,"Activate Email","/activate/my/account",data,cb);
},
rHandler = function(email,data,cb) {
return genHandler(email,"Password Reset Email","/reset/my/password",data,cb);
},
createActivateHandler = function (req,res,next) {
// the header is not normally set, so we know we incurred the handler
res.set("activator","createActivateHandler");
res.send(req.activator.code,req.activator.message);
},
completeActivateHandler = function (req,res,next) {
// the header is not normally set, so we know we incurred the handler
res.set("activator","completeActivateHandler");
res.send(req.activator.code,req.activator.message);
},
createResetHandler = function (req,res,next) {
// the header is not normally set, so we know we incurred the handler
res.set("activator","createResetHandler");
res.send(req.activator.code,req.activator.message);
},
completeResetHandler = function (req,res,next) {
// the header is not normally set, so we know we incurred the handler
res.set("activator","completeResetHandler");
res.send(req.activator.code,req.activator.message);
};
mail = smtp.init(MAILPORT);
app.use(express.bodyParser());
app.use(app.router);
app.get('/users',function (req,res,next) {
res.send(200,users);
});
app.post('/usersbad',activator.createActivate);
app.post('/users',createUser,activator.createActivate);
app.post('/usersnext',createUser,activator.createActivateNext,createActivateHandler);
app.put('/users/:user/activate',activator.completeActivate);
app.put('/usersnext/:user/activate',activator.completeActivateNext,completeActivateHandler);
app.post('/passwordreset',activator.createPasswordReset);
app.put('/passwordreset/:user',activator.completePasswordReset);
app.post('/passwordresetnext',activator.createPasswordResetNext,createResetHandler);
app.put('/passwordresetnext/:user',activator.completePasswordResetNext,completeResetHandler);
app.listen(PORT);
activator.init({user:userModel,url:url,templates:templates});
var examples = {
// run this function to do a regular activation
activate: function () {
var email, handler;
async.waterfall([
function (cb) {r.post('/users').expect(201,cb);},
function (res,cb) {
res.text.should.equal("2");
email = users["2"].email;
handler = aHandler(email,cb);
mail.bind(email,handler);
},
function (res,cb) {
mail.unbind(email,handler);
r.put('/users/'+res.user+'/activate').type("json").send({Activation:res.code}).expect(200,cb);
}
],function () {
console.log("done");
});
},
// run this function to do a regular activation with a special handler
activateHandler: function () {
var email, handler;
async.waterfall([
function (cb) {r.post('/usersnext').expect('activator','createActivateHandler').expect(201,cb);},
function (res,cb) {
res.text.should.equal("2");
email = users["2"].email;
handler = aHandler(email,cb);
mail.bind(email,handler);
},
function (res,cb) {
mail.unbind(email,handler);
r.put('/usersnext/'+res.user+'/activate').type("json").send({Activation:res.code}).expect('activator','completeActivateHandler').expect(200,cb);
}
],function () {
console.log("done");
});
},
// run this function to do a regular password reset
passwordRest: function () {
var email = users["1"].email, handler;
async.waterfall([
function (cb) {r.post('/passwordreset').type('json').send({user:"1"}).expect(201,cb);},
function (res,cb) {handler = rHandler(email,cb); mail.bind(email,handler);},
function (res,cb) {
mail.unbind(email,handler);
r.put('/passwordreset/'+res.user).type("json").send({Activation:res.code,password:"abcdefgh"}).expect(200,cb);
}
],function () {
console.log("done");
});
},
// run this function to do a regular password reset with a special handler
passwordResetHandler: function () {
var email = users["1"].email, handler;
async.waterfall([
function (cb) {r.post('/passwordresetnext').type('json').send({user:"1"}).expect('activator','createResetHandler').expect(201,cb);},
function (res,cb) {handler = rHandler(email,cb); mail.bind(email,handler);},
function (res,cb) {
mail.unbind(email,handler);
r.put('/passwordresetnext/'+res.user).type("json").send({Activation:res.code,password:"abcdefgh"}).expect('activator','completeResetHandler').expect(200,cb);
}
],function () {
console.log("done");
});
}
};