forked from koajs/session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
224 lines (185 loc) · 4.4 KB
/
Copy pathindex.js
File metadata and controls
224 lines (185 loc) · 4.4 KB
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/**
* Module dependencies.
*/
var debug = require('debug')('koa-session');
/**
* Initialize session middleware with `opts`:
*
* - `key` session cookie name ["koa:sess"]
* - all other options are passed as cookie options
*
* @param {Object} [opts]
* @api public
*/
module.exports = function(opts){
opts = opts || {};
// key
opts.key = opts.key || 'koa:sess';
// defaults
if (null == opts.overwrite) opts.overwrite = true;
if (null == opts.httpOnly) opts.httpOnly = true;
if (null == opts.signed) opts.signed = true;
debug('session options %j', opts);
return function *(next){
var sess, json;
// to pass to Session()
this.sessionOptions = opts;
this.sessionKey = opts.key;
this.__defineGetter__('session', function(){
// already retrieved
if (sess) return sess;
// unset
if (false === sess) return null;
json = this.cookies.get(opts.key, opts);
if (json) {
debug('parse %s', json);
try {
sess = new Session(this, decode(json));
} catch (err) {
// backwards compatibility:
// create a new session if parsing fails.
// new Buffer(string, 'base64') does not seem to crash
// when `string` is not base64-encoded.
// but `JSON.parse(string)` will crash.
if (!(err instanceof SyntaxError)) throw err;
sess = new Session(this);
}
} else {
debug('new session');
sess = new Session(this);
}
return sess;
});
this.__defineSetter__('session', function(val){
if (null == val) return sess = false;
if ('object' == typeof val) return sess = new Session(this, val);
throw new Error('this.session can only be set as null or an object.');
});
try {
yield *next;
} catch (err) {
throw err;
} finally {
commit(this, json, sess, opts);
}
}
};
/**
* Commit the session changes or removal.
*
* @param {Context} ctx
* @param {String} json
* @param {Object} sess
* @param {Object} opts
* @api private
*/
function commit(ctx, json, sess, opts) {
// not accessed
if (undefined === sess) return;
// removed
if (false === sess) {
ctx.cookies.set(opts.key, '', opts);
return;
}
// do nothing if new and not populated
if (!json && !sess.length) return;
// save
if (sess.changed(json)) sess.save();
}
/**
* Session model.
*
* @param {Context} ctx
* @param {Object} obj
* @api private
*/
function Session(ctx, obj) {
this._ctx = ctx;
if (!obj) this.isNew = true;
else for (var k in obj) this[k] = obj[k];
}
/**
* JSON representation of the session.
*
* @return {Object}
* @api public
*/
Session.prototype.inspect =
Session.prototype.toJSON = function(){
var self = this;
var obj = {};
Object.keys(this).forEach(function(key){
if ('isNew' == key) return;
if ('_' == key[0]) return;
obj[key] = self[key];
});
return obj;
};
/**
* Check if the session has changed relative to the `prev`
* JSON value from the request.
*
* @param {String} [prev]
* @return {Boolean}
* @api private
*/
Session.prototype.changed = function(prev){
if (!prev) return true;
this._json = encode(this);
return this._json != prev;
};
/**
* Return how many values there are in the session object.
* Used to see if it's "populated".
*
* @return {Number}
* @api public
*/
Session.prototype.__defineGetter__('length', function(){
return Object.keys(this.toJSON()).length;
});
/**
* populated flag, which is just a boolean alias of .length.
*
* @return {Boolean}
* @api public
*/
Session.prototype.__defineGetter__('populated', function(){
return !!this.length;
});
/**
* Save session changes by
* performing a Set-Cookie.
*
* @api private
*/
Session.prototype.save = function(){
var ctx = this._ctx;
var json = this._json || encode(this);
var opts = ctx.sessionOptions;
var key = ctx.sessionKey;
debug('save %s', json);
ctx.cookies.set(key, json, opts);
};
/**
* Decode the base64 cookie value to an object.
*
* @param {String} string
* @return {Object}
* @api private
*/
function decode(string) {
var body = new Buffer(string, 'base64').toString('utf8');
return JSON.parse(body);
}
/**
* Encode an object into a base64-encoded JSON string.
*
* @param {Object} body
* @return {String}
* @api private
*/
function encode(body) {
body = JSON.stringify(body);
return new Buffer(body).toString('base64');
}