-
Notifications
You must be signed in to change notification settings - Fork 237
/
util.js
439 lines (389 loc) · 11.5 KB
/
util.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
var marked = require('marked'),
_ = require('underscore'),
sanitizer = require('sanitizer'),
nodemailer = require("nodemailer"),
mongoose = require('mongoose');
/**
* Converts Markdown-formatted comment text into HTML.
*
* @param {String} content Markdown-formatted text
* @return {String} HTML
*/
exports.markdown = function(content) {
var markdowned;
try {
markdowned = marked(content);
} catch(e) {
markdowned = content;
}
// Strip dangerous markup, but allow links to all URL-s
var sanitized_output = sanitizer.sanitize(markdowned, function(str) {
return str;
});
// IE does not support '
return sanitized_output.replace(/'/g, ''');
};
/**
* Calculates up/down scores for each comment.
*
* Marks if the current user has already voted on the comment.
* Ensures createdAt timestamp is a string.
*
* @param {Object[]} comments
* @param {Object} req Containing username data
* @return {Object[]}
*/
exports.scoreComments = function(comments, req) {
return _.map(comments, function(comment) {
comment = _.extend(comment._doc, {
score: comment.upVotes.length - comment.downVotes.length,
createdAt: String(comment.createdAt)
});
if (req.commentMeta.reads.length > 0) {
comment.read = _.include(req.commentMeta.reads, ""+comment._id);
}
if (req.session.user) {
comment.upVote = _.contains(comment.upVotes, req.session.user.username);
comment.downVote = _.contains(comment.downVotes, req.session.user.username);
}
return comment;
});
};
/**
* Sorts array of objects by the value of given field.
*
* @param {Array} arr
* @param {String} field
* @param {String} [direction="ASC"] either "ASC" or "DESC".
*/
exports.sortByField = function(arr, field, direction) {
if (direction === "DESC") {
var more = -1;
var less = 1;
}
else {
var more = 1;
var less = -1;
}
arr.sort(function(aObj, bObj) {
var a = aObj[field];
var b = bObj[field];
return a > b ? more : a < b ? less : 0;
});
};
/**
* Performs voting on comment.
*
* @param {Object} req The request object.
* @param {Object} res The response object where voting result is written.
* @param {Comment} comment The comment to vote on.
*/
exports.vote = function(req, res, comment) {
var voteDirection;
var username = req.session.user.username;
if (username == comment.author) {
// Ignore votes from the author
res.json({success: false, reason: 'You cannot vote on your own content'});
return;
} else if (req.body.vote == 'up' && !_.include(comment.upVotes, username)) {
var voted = _.include(comment.downVotes, username);
comment.downVotes = _.reject(comment.downVotes, function(v) {
return v == username;
});
if (!voted) {
voteDirection = 'up';
comment.upVotes.push(username);
}
} else if (req.body.vote == 'down' && !_.include(comment.downVotes, username)) {
var voted = _.include(comment.upVotes, username);
comment.upVotes = _.reject(comment.upVotes, function(v) {
return v == username;
});
if (!voted) {
voteDirection = 'down';
comment.downVotes.push(username);
}
}
comment.save(function(err) {
res.json({
success: true,
direction: voteDirection,
total: (comment.upVotes.length - comment.downVotes.length)
});
});
};
/**
* Appends update record to comment updates log.
*
* @param {Object} comment The comment we're updating
* @param {String} author Author of the update
* @param {String} [action] The user action we're recording.
* Leaving this empty, means normal update. Other currently used
* actions are "delete" and "undo_delete".
*/
exports.logUpdate = function(comment, author, action) {
var up = {
updatedAt: new Date(),
author: author
};
if (action) {
up.action = action;
}
comment.updates = comment.updates || [];
comment.updates.push(up);
};
/**
* Ensures that user is logged in.
*
* @param {Object} req
* @param {Object} res
* @param {Function} next
*/
exports.requireLoggedInUser = function(req, res, next) {
if (!req.session || !req.session.user) {
res.json({success: false, reason: 'Forbidden'}, 403);
} else {
next();
}
};
/**
* Looks up comment by ID.
*
* Stores it into `req.comment`.
*
* @param {Object} req
* @param {Object} res
* @param {Function} next
*/
exports.findComment = function(req, res, next) {
if (req.params.commentId) {
Comment.findById(req.params.commentId, function(err, comment) {
req.comment = comment;
next();
});
} else {
res.json({success: false, reason: 'No such comment'});
}
};
/**
* Looks up comment meta by comment ID.
*
* Stores it into `req.commentMeta`.
*
* @param {Object} req
* @param {Object} res
* @param {Function} next
*/
exports.findCommentMeta = function(req, res, next) {
if (req.params.commentId) {
var userCommentMeta = {
userId: req.session.user.userid,
commentId: req.params.commentId
};
Meta.findOne(userCommentMeta, function(err, commentMeta) {
req.commentMeta = commentMeta || new Meta(userCommentMeta);
next();
});
} else {
res.json({success: false, reason: 'No such comment'});
}
};
/**
* True if the user is author of the comment
*/
function isAuthor(user, comment) {
return user.username === comment.author;
}
exports.isAuthor = isAuthor;
/**
* Ensures that user is allowed to modify/delete the comment,
* that is, he is the owner of the comment or a moderator.
*
* @param {Object} req
* @param {Object} res
* @param {Function} next
*/
exports.requireOwner = function(req, res, next) {
if (req.session.user.moderator || isAuthor(req.session.user, req.comment)) {
next();
}
else {
res.json({ success: false, reason: 'Forbidden' }, 403);
}
};
/**
* Sends e-mail updates when comment is posted to a thread that has
* subscribers.
*
* @param {Comment} comment
*/
exports.sendEmailUpdates = function(comment) {
var mailTransport = nodemailer.createTransport("SMTP",{
host: 'localhost',
port: 25
});
var sendSubscriptionEmail = function(emails) {
var email = emails.shift();
if (email) {
nodemailer.sendMail(email, function(err){
if (err){
console.log(err);
} else{
console.log("Sent email to " + email.to);
sendSubscriptionEmail(emails);
}
});
} else {
console.log("Finished sending emails");
mailTransport.close();
}
};
var subscriptionBody = {
sdk: comment.sdk,
version: comment.version,
target: comment.target
};
var emails = [];
Subscription.find(subscriptionBody, function(err, subscriptions) {
_.each(subscriptions, function(subscription) {
var mailOptions = {
transport: mailTransport,
from: "Sencha Documentation <no-reply@sencha.com>",
to: subscription.email,
subject: "Comment on '" + comment.title + "'",
text: [
"A comment by " + comment.author + " on '" + comment.title + "' was posted on the Sencha Documentation:\n",
comment.content + "\n",
"--",
"Original thread: " + comment.url,
"Unsubscribe from this thread: http://projects.sencha.com/auth/unsubscribe/" + subscription._id,
"Unsubscribe from all threads: http://projects.sencha.com/auth/unsubscribe/" + subscription._id + '?all=true'
].join("\n")
};
if (Number(comment.userId) != Number(subscription.userId)) {
emails.push(mailOptions);
}
});
if (emails.length) {
sendSubscriptionEmail(emails);
} else {
console.log("No emails to send");
}
});
};
/**
* Retrieves comment counts for each target.
*
* Stores into `req.commentCounts` field an array like this:
*
* [
* {"_id": "class__Ext__", "value": 3},
* {"_id": "class__Ext__method-define", "value": 1},
* {"_id": "class__Ext.Panel__cfg-title", "value": 8}
* ]
*
* @param {Object} req
* @param {Object} res
* @param {Function} next
*/
exports.getCommentCounts = function(req, res, next) {
// Map each comment into: ("type__Class__member", 1)
var map = function() {
if (this.target) {
emit(this.target.slice(0,3).join('__'), 1);
} else {
return;
}
};
// Sum comment counts for each target
var reduce = function(key, values) {
var total = 0;
for (var i = 0; i < values.length; i++) {
total += values[i];
}
return total;
};
mongoose.connection.db.executeDbCommand({
mapreduce: 'comments',
map: map.toString(),
reduce: reduce.toString(),
out: 'commentCounts',
query: {
deleted: { '$ne': true },
sdk: req.params.sdk,
version: req.params.version
}
}, function(err, dbres) {
mongoose.connection.db.collection('commentCounts', function(err, collection) {
collection.find({}).toArray(function(err, comments) {
req.commentCounts = comments;
next();
});
});
});
};
/**
* Retrieves list of commenting targets into which the current user
* has subscribed for e-mail updates.
*
* Stores them into `req.commentMeta.subscriptions` field as array:
*
* [
* ["class", "Ext", ""],
* ["class", "Ext", "method-define"],
* ["class", "Ext.Panel", "cfg-title"]
* ]
*
* @param {Object} req
* @param {Object} res
* @param {Function} next
*/
exports.getCommentSubscriptions = function(req, res, next) {
req.commentMeta = req.commentMeta || {};
req.commentMeta.subscriptions = req.commentMeta.subscriptions || [];
if (req.session.user) {
Subscription.find({
sdk: req.params.sdk,
version: req.params.version,
userId: req.session.user.userid
}, function(err, subscriptions) {
req.commentMeta.subscriptions = _.map(subscriptions, function(subscription) {
return subscription.target;
});
next();
});
} else {
next();
}
};
/**
* Retrieves list of comments marked 'read' by the current user.
*
* Stores them into `req.commentMeta.reads` field as array:
*
* [
* 'abc123',
* 'abc456',
* 'abc789'
* ]
*
* @param {Object} req
* @param {Object} res
* @param {Function} next
*/
exports.getCommentReads = function(req, res, next) {
req.commentMeta = req.commentMeta || {};
req.commentMeta.reads = req.commentMeta.reads || [];
if (req.session.user && req.session.user.moderator) {
Meta.find({
userId: req.session.user.userid
}, function(err, commentMeta) {
req.commentMeta.reads = _.map(commentMeta, function(commentMeta) {
return commentMeta.commentId;
});
next();
});
} else {
next();
}
};