forked from angular-fullstack/generator-angular-fullstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.model(sequelizeModels).js
217 lines (196 loc) · 5.96 KB
/
user.model(sequelizeModels).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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import crypto from 'crypto';<% if(filters.oauth) { %>
var authTypes = ['github', 'twitter', 'facebook', 'google'];<% } %>
var validatePresenceOf = function(value) {
return value && value.length;
};
export default function(sequelize, DataTypes) {
const User = sequelize.define('User', {
_id: {
type: DataTypes.INTEGER,
allowNull: false,
primaryKey: true,
autoIncrement: true
},
name: DataTypes.STRING,
email: {
type: DataTypes.STRING,
unique: {
msg: 'The specified email address is already in use.'
},
validate: {
isEmail: true
}
},
role: {
type: DataTypes.STRING,
defaultValue: 'user'
},
password: {
type: DataTypes.STRING,
validate: {
notEmpty: true
}
},
provider: DataTypes.STRING,
salt: DataTypes.STRING<% if(filters.oauth) { %>,<% if(filters.facebookAuth) { %>
facebook: DataTypes.JSON,<% } %><% if(filters.twitterAuth) { %>
twitter: DataTypes.JSON,<% } %><% if(filters.googleAuth) { %>
google: DataTypes.JSON,<% } %>
github: DataTypes.JSON<% } %>
}, {
/**
* Virtual Getters
*/
getterMethods: {
// Public profile information
profile: function() {
return {
name: this.name,
role: this.role
};
},
// Non-sensitive info we'll be putting in the token
token: function() {
return {
_id: this._id,
role: this.role
};
}
},
/**
* Pre-save hooks
*/
hooks: {
beforeBulkCreate(users, fields) {
var promises = [];
users.forEach(user => promises.push(user.updatePassword()));
return Promise.all(promises);
},
beforeCreate(user, fields) {
return user.updatePassword();
},
beforeUpdate(user, fields) {
if(user.changed('password')) {
return user.updatePassword();
}
return Promise.resolve(user);
}
},
});
/**
* Instance Methods
*/
/**
* Authenticate - check if the passwords are the same
*
* @param {String} password
* @param {Function} callback
* @return {Boolean}
* @api public
*/
User.prototype.authenticate = function(password, callback) {
if(!callback) {
return this.password === this.encryptPassword(password);
}
var _this = this;
this.encryptPassword(password, function(err, pwdGen) {
if(err) {
callback(err);
}
if(_this.password === pwdGen) {
callback(null, true);
} else {
callback(null, false);
}
});
};
/**
* Make salt
*
* @param {Number} [byteSize] - Optional salt byte size, default to 16
* @param {Function} callback
* @return {String}
* @api public
*/
User.prototype.makeSalt = function(...args) {
let byteSize;
let callback;
let defaultByteSize = 16;
if(typeof args[0] === 'function') {
callback = args[0];
byteSize = defaultByteSize;
} else if(typeof args[1] === 'function') {
callback = args[1];
} else {
throw new Error('Missing Callback');
}
if(!byteSize) {
byteSize = defaultByteSize;
}
return crypto.randomBytes(byteSize, function(err, salt) {
if(err) {
callback(err);
}
return callback(null, salt.toString('base64'));
});
};
/**
* Encrypt password
*
* @param {String} password
* @param {Function} callback
* @return {String}
* @api public
*/
User.prototype.encryptPassword = function(password, callback) {
if(!password || !this.salt) {
return callback ? callback(null) : null;
}
var defaultIterations = 10000;
var defaultKeyLength = 64;
var salt = Buffer.from(this.salt, 'base64');
if(!callback) {
return crypto.pbkdf2Sync(password, salt, defaultIterations, defaultKeyLength, 'sha256')
.toString('base64');
}
return crypto.pbkdf2(password, salt, defaultIterations, defaultKeyLength, 'sha256',
function(err, key) {
if(err) {
callback(err);
}
return callback(null, key.toString('base64'));
});
};
/**
* Update password field
*
* @param {Function} fn
* @return {String}
* @api public
*/
User.prototype.updatePassword = function() {
return new Promise((resolve, reject) => {
if (!this.password) {
return resolve(user);
}
if (!validatePresenceOf(this.password)<% if(filters.oauth) { %> && authTypes.indexOf(this.provider) === -1<% } %>) {
return reject(new Error('Invalid password'));
}
// Make salt with a callback
return this.makeSalt((saltErr, salt) => {
if (saltErr) {
return reject(saltErr);
}
this.salt = salt;
return this.encryptPassword(this.password, (encryptErr, hashedPassword) => {
if (encryptErr) {
return reject(encryptErr);
}
this.password = hashedPassword;
return resolve(this);
});
});
});
};
return User;
};