-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdatabase.js
More file actions
537 lines (477 loc) · 12.4 KB
/
database.js
File metadata and controls
537 lines (477 loc) · 12.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
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
import mongoose from 'mongoose';
import { FuzzySearch } from 'mongoose-fuzzy-search-next';
import { COMMUNITY } from '@/models/communities';
import { CONTENT } from '@/models/content';
import { CONVERSATION } from '@/models/conversation';
import { ENDPOINT } from '@/models/endpoint';
import { NOTIFICATION } from '@/models/notifications';
import { POST } from '@/models/post';
import { SETTINGS } from '@/models/settings';
import { REPORT } from '@/models/report';
import { LOGS } from '@/models/logs';
import { logger } from '@/logger';
import { config } from '@/config';
let connection;
mongoose.set('strictQuery', true);
async function connect() {
connection = mongoose.connection;
connection.on('connected', function () {
logger.info(`MongoDB connected ${this.name}`);
});
connection.on('error', err => logger.error(err, 'Database connection error'));
connection.on('close', () => {
connection.removeAllListeners();
});
await mongoose.connect(config.mongoose.uri);
}
function verifyConnected() {
if (!connection) {
connect();
}
}
export function notBanned() {
return { account_status: { $in: [0, 1] } };
}
async function getCommunities(numberOfCommunities, offset) {
verifyConnected();
if (!offset) {
offset = 0;
}
if (numberOfCommunities === -1) {
return COMMUNITY.find({ parent: null, type: [0, 2] }).skip(offset);
} else {
return COMMUNITY.find({ parent: null, type: [0, 2] }).skip(offset).limit(numberOfCommunities);
}
}
async function getCommunitiesFuzzySearch(search_key, limit, offset) {
verifyConnected();
if (limit === -1) {
return COMMUNITY.find(FuzzySearch(['name'], search_key)).skip(offset);
} else {
return COMMUNITY.find(FuzzySearch(['name'], search_key)).skip(offset).limit(limit);
}
}
async function getMostPopularCommunities(numberOfCommunities) {
verifyConnected();
return COMMUNITY.find({ parent: null, type: 0 }).sort({ followers: -1 }).limit(numberOfCommunities);
}
async function getNewCommunities(numberOfCommunities) {
verifyConnected();
return COMMUNITY.find({ parent: null, type: 0 }).sort([['created_at', -1]]).limit(numberOfCommunities);
}
async function getSubCommunities(communityID) {
verifyConnected();
return COMMUNITY.find({
parent: communityID
});
}
async function getCommunityByTitleID(title_id) {
verifyConnected();
return COMMUNITY.findOne({
title_id: title_id
});
}
async function getCommunityByID(community_id) {
verifyConnected();
return COMMUNITY.findOne({
olive_community_id: community_id
});
}
async function getTotalPostsByCommunity(community) {
verifyConnected();
return POST.find({
community_id: community.olive_community_id,
parent: null,
removed: false
}).countDocuments();
}
async function getPostByID(postID) {
verifyConnected();
return POST.findOne({
id: postID
});
}
async function getPostReplies(postID, number) {
verifyConnected();
return POST.find({
parent: postID,
removed: false
}).limit(number);
}
async function getDuplicatePosts(pid, post) {
verifyConnected();
return POST.findOne({
pid: pid,
body: post.body,
painting: post.painting,
screenshot: post.screenshot,
parent: null,
removed: false
});
}
async function getUserPostRepliesAfterTimestamp(post, numberOfPosts) {
verifyConnected();
return POST.find({
parent: post.pid,
created_at: { $lt: post.created_at },
message_to_pid: null,
removed: false
}).limit(numberOfPosts);
}
async function getTotalPostsByUserID(userID) {
verifyConnected();
return POST.find({
pid: userID,
parent: null,
message_to_pid: null,
removed: false
}).countDocuments();
}
async function getHotPostsByCommunity(community, numberOfPosts) {
verifyConnected();
return POST.find({
community_id: community.olive_community_id,
parent: null,
removed: false
}).sort({ empathy_count: -1 }).limit(numberOfPosts);
}
async function getNumberNewCommunityPostsByID(community, number) {
verifyConnected();
return POST.find({
community_id: community.olive_community_id,
parent: null,
removed: false
}).sort({ created_at: -1 }).limit(number);
}
async function getNumberPopularCommunityPostsByID(community, limit, offset) {
verifyConnected();
return POST.find({
community_id: community.olive_community_id,
parent: null,
removed: false
}).sort({ empathy_count: -1 }).skip(offset).limit(limit);
}
async function getNumberVerifiedCommunityPostsByID(community, limit, offset) {
verifyConnected();
return POST.find({
community_id: community.olive_community_id,
verified: true,
parent: null,
removed: false
}).sort({ created_at: -1 }).skip(offset).limit(limit);
}
async function getPostsByCommunity(community, numberOfPosts) {
verifyConnected();
return POST.find({
community_id: community.olive_community_id,
parent: null,
removed: false
}).limit(numberOfPosts);
}
async function getPostsByCommunityKey(community, numberOfPosts, search_key) {
verifyConnected();
return POST.find({
community_id: community.olive_community_id,
search_key: search_key,
parent: null,
removed: false
}).limit(numberOfPosts);
}
async function getNewPostsByCommunity(community, limit, offset) {
verifyConnected();
return POST.find({
community_id: community.olive_community_id,
parent: null,
removed: false
}).sort({ created_at: -1 }).skip(offset).limit(limit);
}
async function getAllUserPosts(pid) {
verifyConnected();
return POST.find({
pid: pid,
message_to_pid: null
});
}
async function getRemovedUserPosts(pid) {
verifyConnected();
return POST.find({
pid: pid,
message_to_pid: null,
removed: true
});
}
async function getUserPostsAfterTimestamp(post, numberOfPosts) {
verifyConnected();
return POST.find({
pid: post.pid,
created_at: { $lt: post.created_at },
parent: null,
message_to_pid: null,
removed: false
}).limit(numberOfPosts);
}
async function getCommunityPostsAfterTimestamp(post, numberOfPosts) {
verifyConnected();
return POST.find({
community_id: post.community_id,
created_at: { $lt: post.created_at },
parent: null,
removed: false
}).limit(numberOfPosts);
}
async function getEndpoints() {
verifyConnected();
return ENDPOINT.find({});
}
async function getEndPoint(accessLevel) {
verifyConnected();
return ENDPOINT.findOne({
server_access_level: accessLevel
});
}
async function getUsersSettings(numberOfUsers, offset) {
verifyConnected();
if (numberOfUsers === -1) {
return SETTINGS.find({}).skip(offset);
} else {
return SETTINGS.find({}).skip(offset).limit(numberOfUsers);
}
}
async function getUserSettingsFuzzySearch(search_key, numberOfUsers, offset) {
verifyConnected();
if (numberOfUsers === -1) {
return SETTINGS.find(FuzzySearch(['screen_name'], search_key)).skip(offset);
} else {
return SETTINGS.find(FuzzySearch(['screen_name'], search_key)).skip(offset).limit(numberOfUsers);
}
}
async function getUserSettings(pid) {
verifyConnected();
return SETTINGS.findOne({ pid: pid });
}
async function getUserContent(pid) {
verifyConnected();
return CONTENT.findOne({ pid: pid });
}
async function getFollowingUsers(content) {
verifyConnected();
return SETTINGS.find({
pid: content.following_users,
...notBanned()
});
}
async function getFollowedUsers(content) {
verifyConnected();
return SETTINGS.find({
pid: content.followed_users
});
}
async function getNewsFeed(content, numberOfPosts, includeCommunities) {
verifyConnected();
return POST.find({
$or: [
{ pid: content.followed_users },
{ pid: content.pid },
{ community_id: includeCommunities ? content.followed_communities : [] }
],
parent: null,
message_to_pid: null,
removed: false
}).limit(numberOfPosts).sort({ created_at: -1 });
}
async function getNewsFeedAfterTimestamp(content, numberOfPosts, post, includeCommunities) {
verifyConnected();
return POST.find({
$or: [
{ pid: content.followed_users },
{ pid: content.pid },
{ community_id: includeCommunities ? content.followed_communities : [] }
],
created_at: { $lt: post.created_at },
parent: null,
message_to_pid: null,
removed: false
}).limit(numberOfPosts).sort({ created_at: -1 });
}
async function getNewsFeedOffset(content, limit, offset, includeCommunities) {
verifyConnected();
return POST.find({
$or: [
{ pid: content.followed_users },
{ pid: content.pid },
{ community_id: includeCommunities ? content.followed_communities : [] }
],
parent: null,
message_to_pid: null,
removed: false
}).skip(offset).limit(limit).sort({ created_at: -1 });
}
async function getConversations(pid) {
verifyConnected();
return CONVERSATION.find({
'users.pid': pid
}).sort({ last_updated: -1 });
}
async function getUnreadConversationCount(pid) {
verifyConnected();
return CONVERSATION.find({
users: {
$elemMatch: {
pid: pid,
read: false
}
}
}).countDocuments();
}
async function getConversationByID(community_id) {
verifyConnected();
return CONVERSATION.findOne({
type: 3,
id: community_id
});
}
async function getConversationMessages(community_id, limit, offset) {
verifyConnected();
return POST.find({
community_id: community_id,
parent: null,
removed: false
}).sort({ created_at: 1 }).skip(offset).limit(limit);
}
async function getConversationByUsers(pids) {
verifyConnected();
return CONVERSATION.findOne({
$and: [
{ 'users.pid': pids[0] },
{ 'users.pid': pids[1] }
]
});
}
async function getLatestMessage(pid, pid2) {
verifyConnected();
return POST.findOne({
$or: [
{ pid: pid, message_to_pid: pid2 },
{ pid: pid2, message_to_pid: pid }
],
removed: false
});
}
async function getNotifications(pid, limit, offset) {
verifyConnected();
return NOTIFICATION.find({
pid: pid
}).sort({ lastUpdated: -1 }).skip(offset).limit(limit);
}
async function getNotification(pid, type, reference_id) {
verifyConnected();
return NOTIFICATION.findOne({
pid: pid,
type: type,
reference_id: reference_id
});
}
async function getLastNotification(pid) {
verifyConnected();
return NOTIFICATION.findOne({
pid: pid
}).sort({ lastUpdated: -1 }).limit(1);
}
async function getUnreadNotificationCount(pid) {
verifyConnected();
return NOTIFICATION.find({
pid: pid,
read: false
}).countDocuments();
}
async function getAllReports(offset, limit) {
verifyConnected();
return REPORT.find().sort({ created_at: -1 }).skip(offset).limit(limit);
}
async function getAllOpenReports(offset, limit) {
verifyConnected();
return REPORT.find({ resolved: false }).sort({ created_at: -1 }).skip(offset).limit(limit);
}
async function getReportsByReporter(pid, offset, limit) {
verifyConnected();
return REPORT.find({ reported_by: pid }).sort({ created_at: -1 }).skip(offset).limit(limit);
}
async function getReportsByOffender(pid, offset, limit) {
verifyConnected();
return REPORT.find({ pid: pid }).sort({ created_at: -1 }).skip(offset).limit(limit);
}
async function getReportsByPost(postID, offset, limit) {
verifyConnected();
return REPORT.find({ post_id: postID }).sort({ created_at: -1 }).skip(offset).limit(limit);
}
async function getDuplicateReports(pid, postID) {
verifyConnected();
return REPORT.findOne({
reported_by: pid,
post_id: postID
});
}
async function getReportById(id) {
verifyConnected();
return REPORT.findById(id);
}
async function getLogsForTarget(targetPID, offset, limit) {
verifyConnected();
return LOGS.find({ target: targetPID }).sort({ timestamp: -1 }).skip(offset).limit(limit);
}
export const database = {
connect,
getCommunities,
getCommunitiesFuzzySearch,
getMostPopularCommunities,
getNewCommunities,
getSubCommunities,
getCommunityByTitleID,
getCommunityByID,
getTotalPostsByCommunity,
getPostsByCommunity,
getHotPostsByCommunity,
getNumberNewCommunityPostsByID,
getNumberPopularCommunityPostsByID,
getNumberVerifiedCommunityPostsByID,
getNewPostsByCommunity,
getPostsByCommunityKey,
getPostReplies,
getUserPostRepliesAfterTimestamp,
getTotalPostsByUserID,
getPostByID,
getDuplicatePosts,
getEndpoints,
getEndPoint,
getUserPostsAfterTimestamp,
getCommunityPostsAfterTimestamp,
getNewsFeed,
getNewsFeedAfterTimestamp,
getNewsFeedOffset,
getFollowingUsers,
getFollowedUsers,
getConversations,
getConversationByID,
getConversationByUsers,
getConversationMessages,
getUnreadConversationCount,
getLatestMessage,
getUsersSettings,
getUserSettings,
getUserSettingsFuzzySearch,
getUserContent,
getNotifications,
getUnreadNotificationCount,
getNotification,
getLastNotification,
getAllUserPosts,
getRemovedUserPosts,
getAllReports,
getAllOpenReports,
getReportsByReporter,
getReportsByOffender,
getReportsByPost,
getDuplicateReports,
getReportById,
getLogsForTarget
};