-
Notifications
You must be signed in to change notification settings - Fork 109
/
model.js
81 lines (75 loc) · 1.64 KB
/
model.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
import mongoose, { Schema } from 'mongoose';
/**
* @example
* {
* username: 'shyam-chen',
* password: '3345678',
* email: '[email protected]',
* role: 'user',
* permissions: [
* {
* route: '/foo',
* operations: ['create', 'read', 'update', 'delete'],
* },
* {
* route: '/bar',
* operations: ['read'],
* },
* ],
* }
*/
const userSchema = new Schema({
username: {
type: String,
required: true,
unique: true,
},
password: {
type: String,
required: true,
},
email: {
type: String,
validate: {
validator(value) {
return /^(([^<>()[\].,;:\s@"]+(\.[^<>()[\].,;:\s@"]+)*)|(".+"))@(([^<>()[\].,;:\s@"]+\.)+[^<>()[\].,;:\s@"]{2,})$/i.test(
value,
);
},
message: ({ value }) => `${value} is not a valid email format`,
},
required: true,
},
role: {
type: String,
enum: ['admin', 'user'],
default: 'user',
},
permissions: [
{
route: String,
operations: {
type: [String],
enum: ['create', 'read', 'update', 'delete'],
},
},
],
});
export const UserColl = mongoose.model('User', userSchema);
const refreshTokenSchema = new Schema({
user: { type: Schema.Types.ObjectId, ref: 'User' },
token: String,
expires: Date,
revoked: Date,
ipAddress: String,
});
refreshTokenSchema.virtual('isExpired').get(() => {
return Date.now() >= this.expires;
});
refreshTokenSchema.virtual('isActive').get(() => {
return !this.revoked && !this.isExpired;
});
export default {
User: UserColl,
RefreshToken: mongoose.model('RefreshToken', refreshTokenSchema),
};