-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdatabase.js
More file actions
193 lines (169 loc) · 4.53 KB
/
database.js
File metadata and controls
193 lines (169 loc) · 4.53 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
import mongoose from 'mongoose';
import { FuzzySearch } from 'mongoose-fuzzy-search-next';
import { COMMUNITY } from '@/models/communities';
import { CONTENT } from '@/models/content';
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 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 getPostByID(postID) {
verifyConnected();
return POST.findOne({
id: postID
});
}
async function getDuplicatePosts(pid, post, olderThanMs) {
verifyConnected();
return POST.findOne({
pid: pid,
body: post.body,
screenshot: post.screenshot,
painting: post.painting,
created_at: {
$gte: new Date(Date.now() - olderThanMs)
},
parent: null,
removed: false
});
}
async function getTotalPostsByUserID(userID) {
verifyConnected();
return POST.find({
pid: userID,
parent: null,
message_to_pid: null,
removed: false
}).countDocuments();
}
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 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 getUnreadNotificationCount(pid) {
verifyConnected();
return NOTIFICATION.find({
pid: pid,
read: false
}).countDocuments();
}
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 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,
getCommunitiesFuzzySearch,
getTotalPostsByUserID,
getPostByID,
getDuplicatePosts,
getEndPoint,
getUsersSettings,
getUserSettings,
getUserSettingsFuzzySearch,
getUserContent,
getNotifications,
getUnreadNotificationCount,
getNotification,
getAllOpenReports,
getReportsByReporter,
getReportsByOffender,
getDuplicateReports,
getReportById,
getLogsForTarget
};