-
Notifications
You must be signed in to change notification settings - Fork 85
/
models.js
186 lines (161 loc) · 3.98 KB
/
models.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
/*
* Define models here:
* * User
* * DocPrivilege
* * Document
* *
*/
var crypto = require("crypto")
, mongoose = require("mongoose")
, Schema = mongoose.Schema
, ObjectId = Schema.ObjectId
// load configurations here
, configs = require("./configs")
, fs = require("fs-extra");
var DocPrivilege = new Schema ({
access: { type: Number
, default: 6 }
/*
* 6 - read and write
* 4 - read only
* 2 - write only
* 0 - none
*/
, _id: ObjectId
, name: String
});
var Document = new Schema ({
name: String
, data: Buffer
, lastModified: Date
, createdAt: { type: Date
, default: new Date() }
/*
* latex source file -> 0
* other types to come...
*/
, documentType: Number
, usersWithShareAccess: [String] // store userNames of users with full access to doc
});
var User = new Schema ({
// _id == User name
_id: { type: String }
, hashedPassword: { type: String
, index: {unique: true }
}
, salt: String
, firstName: String
, lastName: String
, email: { type: String }
, githubId: { type: String
, default: ""
}
, twitterId: {type: String
, default: ""
}
, memberSince: {type: Date
, default: new Date()
}
, documentsPriv: [DocPrivilege] // list of DocPrivilege Objects
});
var Message = new Schema ({
messageType: Number
/*
* requestAccess: 0
* shareAccess: 1
* more to come...
*/
, fromUser: String
, toUser: String
, documentId: ObjectId
, documentName: String
, access: Number // as in DocPrivilege model
, timeSent: { type: Date
, default: new Date()
}
});
/*
* specify directory for includes
*/
var includespath = configs.includes.path;
if (includespath == undefined || includespath.length == 0) {
includespath = __dirname + "/texpackages/";
} else {
includespath = (includespath[-1] == "/" ? includespath : includespath + "/");
}
/*
* Create the new directory to store compiled pdfs
*/
var pdfspath = configs.pdfs.path;
if (pdfspath == undefined || pdfspath.length == 0) {
pdfspath = __dirname + "/pdfs/";
} else {
pdfspath = (pdfspath[-1] == "/" ? pdfspath : pdfspath + "/");
}
fs.mkdirp(pdfspath, function(err) {
if (err) {
console.log("An error occured while creating directory: "
, pdfspath);
}
});
fs.mkdirp(includespath, function(err) {
if (err) {
console.log("An error occured while creating directory: "
, includespath);
}
});
configs.pdfs.path = pdfspath;
configs.includes.path = includespath;
/*
* virtual methods here
*/
User.virtual("id").get(function() {
return this._id.toHexString();
});
User.virtual("password").set(function(password) {
this._password = password;
this.salt = this.makeSalt();
this.hashedPassword = this.encryptPassword(password);
}).get(function() {
return this._password;
});
User.method("authenticate", function(plainText) {
return this.encryptPassword(plainText) == this.hashedPassword;
});
User.method("makeSalt", function() {
return Math.round((new Date().valueOf() * Math.random())) + '';
});
User.method("encryptPassword", function(password) {
return crypto.createHmac("sha1", this.salt)
.update(password).digest("hex");
});
/** end of virutal methods def */
/**
* define middleware for models here
*/
User.pre("save", function(next) {
if (!(this.firstName && this.lastName
&& this.email && this.userName)) {
next(new Error("Invalid Params"));
} else {
next();
}
});
User.virtual("userName").get(function() {
return this["_id"];
});
User.virtual("userName").set(function(userName) {
this["_id"] = userName;
});
/** end of definition of middleware here */
// export the models:
// i) User
// ii) Document
// iii) DocPrivilege
// iv) Message
module.exports = function() {
mongoose.model("User", User);
mongoose.model("Document", Document);
mongoose.model("DocPrivilege", DocPrivilege);
mongoose.model("Message", Message);
};