forked from nbredikhin/fivem-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
313 lines (258 loc) · 11.2 KB
/
index.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
const { MongoClient } = require("mongodb");
const utils = require("./utils");
const url = GetConvar("mongodb_url", "changeme");
const dbName = GetConvar("mongodb_database", "changeme");
let db;
if (url != "changeme" && dbName != "changeme") {
MongoClient.connect(url, { useNewUrlParser: true, useUnifiedTopology: true }, function (err, client) {
if (err) return print("Error: " + err.message);
db = client.db(dbName);
console.log(`^2[MongoDB] Connected to database "${dbName}".^0`);
emit("onDatabaseConnect", dbName);
});
} else {
if (url == "changeme") console.log(`^1[MongoDB][ERROR] Convar "mongodb_url" not set^0`);
if (dbName == "changeme") console.log(`^1[MongoDB][ERROR] Convar "mongodb_database" not set^0`);
}
function checkDatabaseReady() {
if (!db) {
console.log(`[MongoDB][ERROR] Database is not connected.`);
return false;
}
return true;
}
function checkParams(params) {
return params !== null && typeof params === 'object';
}
function getParamsCollection(params) {
if (!params.collection) return;
return db.collection(params.collection)
}
/* MongoDB methods wrappers */
/**
* MongoDB insert method
* @param {Object} params - Params object
* @param {Array} params.documents - An array of documents to insert.
* @param {Object} params.options - Options passed to insert.
*/
function dbInsert(params, callback) {
if (!checkDatabaseReady()) return;
if (!checkParams(params)) return console.log(`^1[MongoDB][ERROR] (exports.insert) Invalid params object.^0`);
let collection = getParamsCollection(params);
if (!collection) return console.log(`^1[MongoDB][ERROR] (exports.insert) Invalid collection "${params.collection}"^0`);
let documents = params.documents;
if (!documents || !Array.isArray(documents))
return console.log(`^1[MongoDB][ERROR] (exports.insert) Invalid 'params.documents' value. Expected object or array of objects.^0`);
const options = utils.safeObjectArgument(params.options);
collection.insertMany(documents, options, (err, result) => {
if (err) {
console.log(`^1[MongoDB][ERROR] (exports.insert) Error "${err.message}".^0`);
//utils.safeCallback(callback, false, err.message);
return;
}
let arrayOfIds = [];
// Convert object to an array
for (let key in result.insertedIds) {
if (result.insertedIds.hasOwnProperty(key)) {
arrayOfIds[parseInt(key)] = result.insertedIds[key].toString();
}
}
utils.safeCallback(callback, true, result.insertedCount, arrayOfIds);
});
process._tickCallback();
}
/**
* MongoDB insertOne method
* @param {Object} params - Params object
* @param {Object} params.document - The object to insert.
* @param {Object} params.options - Options passed to insert.
*/
async function dbInsertOne(params, callback) {
if (!checkDatabaseReady()) return;
if (!checkParams(params)) return console.log(`^1[MongoDB][ERROR] (exports.insertOne) Invalid params object.^0`);
const collection = getParamsCollection(params);
if (!collection) return console.log(`^1[MongoDB][ERROR] (exports.insertOne) Invalid collection "${params.collection}"^0`);
const doc = utils.safeObjectArgument(params.document);
const options = utils.safeObjectArgument(params.options);
try {
const result = await collection.insertOne(doc, options);
if(callback) utils.safeCallback(callback, true, result.insertedId);
return result.insertedId;
} catch(err) {
console.log(`^1[MongoDB][ERROR] (exports.insertOne) ${err}^0`);
return false;
}
}
/**
* MongoDB find method
* @param {Object} params - Params object
* @param {Object} params.query - Query object.
* @param {Object} params.options - Options passed to insert.
* @param {number} params.limit - Limit documents count.
*/
async function dbFind(params, callback, returnError = false) {
if (!checkDatabaseReady()) return;
if (!checkParams(params)) return console.log(`^1[MongoDB][ERROR] (exports.find) Invalid params object.^0`);
let collection = getParamsCollection(params);
if (!collection) return console.log(`^1[MongoDB][ERROR] (exports.find) Invalid collection "${params.collection}"^0`);
const query = utils.safeObjectArgument(params.query);
const options = utils.safeObjectArgument(params.options);
let cursor = collection.find(query, options);
if (params.limit) cursor = cursor.limit(params.limit);
const allValues = await cursor.toArray();
cursor.toArray((err, documents) => {
if (err) {
console.log(`^1[MongoDB][ERROR] (exports.find) Error "${err.message}".^0`);
if (returnError) {
utils.safeCallback(callback, false, err.message);
}
return;
};
utils.safeCallback(callback, true, utils.exportDocuments(documents));
});
process._tickCallback();
return allValues;
}
/**
* MongoDB findOne method
* @param {Object} params - Params object
* @param {Object} params.query - Query object.
* @param {Object} params.options - Options passed to insert.
*/
async function dbFindOne(params, callback) {
if (!checkDatabaseReady()) return;
if (!checkParams(params)) return console.log(`^1[MongoDB][ERROR] (exports.findOne) Invalid params object.^0`);
const collection = getParamsCollection(params);
if (!collection) return console.log(`^1[MongoDB][ERROR] (exports.findOne) Invalid collection "${params.collection}"^0`);
const query = utils.safeObjectArgument(params.query);
const options = utils.safeObjectArgument(params.options);
try {
const result = await collection.findOne(query, options);
if(callback) utils.safeCallback(callback, true, [result]);
return result;
} catch(err) {
console.log(`^1[MongoDB][ERROR] (exports.findOne) ${err}^0`);
return false;
}
process._tickCallback();
}
/**
* MongoDB update method
* @param {Object} params - Params object
* @param {Object} params.query - Filter query object.
* @param {Object} params.update - Update query object.
* @param {Object} params.options - Options passed to insert.
*/
function dbUpdate(params, callback, isUpdateOne) {
if (!checkDatabaseReady()) return;
if (!checkParams(params)) return console.log(`^1[MongoDB][ERROR] (exports.update) Invalid params object.^0`);
let collection = getParamsCollection(params);
if (!collection) return console.log(`^1[MongoDB][ERROR] (exports.insert) Invalid collection "${params.collection}"^0`);
const query = utils.safeObjectArgument(params.query);
const update = params.pipeline || utils.safeObjectArgument(params.update);
const options = utils.safeObjectArgument(params.options);
const cb = (err, res) => {
if (err) {
console.log(`^1[MongoDB][ERROR] (exports.update) ${err.message}^0`);
//utils.safeCallback(callback, false, err.message);
return;
}
utils.safeCallback(callback, true, res.result.nModified);
};
isUpdateOne ? collection.updateOne(query, update, options, cb) : collection.updateMany(query, update, options, cb);
process._tickCallback();
}
/**
* MongoDB count method
* @param {Object} params - Params object
* @param {Object} params.query - Query object.
* @param {Object} params.options - Options passed to insert.
*/
async function dbCount(params, callback) {
if (!checkDatabaseReady()) return;
if (!checkParams(params)) return console.log(`^1[MongoDB][ERROR] (exports.count) Invalid params object.^0`);
let collection = getParamsCollection(params);
if (!collection) return console.log(`^1[MongoDB][ERROR] (exports.insert) Invalid collection "${params.collection}"^0`);
const query = utils.safeObjectArgument(params.query);
const options = utils.safeObjectArgument(params.options);
try {
const count = await collection.countDocuments(query, options);
if(callback) utils.safeCallback(callback, true, count);
return count;
} catch(err) {
console.log(`^1[MongoDB][ERROR] (exports.count) ${err}^0`);
return false;
}
process._tickCallback();
}
/**
* MongoDB delete method
* @param {Object} params - Params object
* @param {Object} params.query - Query object.
* @param {Object} params.options - Options passed to insert.
*/
function dbDelete(params, callback, isDeleteOne) {
if (!checkDatabaseReady()) return;
if (!checkParams(params)) return console.log(`^1[MongoDB][ERROR] (exports.delete) Invalid params object.^0`);
let collection = getParamsCollection(params);
if (!collection) return console.log(`^1[MongoDB][ERROR] (exports.insert) Invalid collection "${params.collection}"^0`);
const query = utils.safeObjectArgument(params.query);
const options = utils.safeObjectArgument(params.options);
const cb = (err, res) => {
if (err) {
console.log(`^1[MongoDB][ERROR] (exports.delete) ${err.message}^0`);
//utils.safeCallback(callback, false, err.message);
return false;
}
utils.safeCallback(callback, true, res.result.n);
return res.result.n;
};
isDeleteOne ? collection.deleteOne(query, options, cb) : collection.deleteMany(query, options, cb);
process._tickCallback();
}
async function dbAggregate(params) {
if (!checkDatabaseReady()) return;
if (!checkParams(params)) return console.log(`^1[MongoDB][ERROR] (exports.aggregate) Invalid params object.^0`);
const collection = getParamsCollection(params);
if (!collection) return console.log(`^1[MongoDB][ERROR] (exports.aggregate) Invalid collection "${params.collection}"^0`);
if (!params.pipeline) return console.log(`^1[MongoDB][ERROR] (exports.aggregate) Invalid pipeline^0`);
try {
const cursor = await collection.aggregate(params.pipeline);
const result = await cursor.toArray();
return result;
} catch(err) {
console.log(`^1[MongoDB][ERROR] (exports.aggregate) ${err}^0`);
return false;
}
}
async function dbBulkWrite(params) {
if (!checkDatabaseReady()) return;
if (!checkParams(params)) return console.log(`^1[MongoDB][ERROR] (exports.bulkWrite) Invalid params object.^0`);
const collection = getParamsCollection(params);
if (!collection) return console.log(`^1[MongoDB][ERROR] (exports.bulkWrite) Invalid collection "${params.collection}"^0`);
if (!params.operations) return console.log(`^1[MongoDB][ERROR] (exports.bulkWrite) Invalid operations^0`);
try {
const result = await collection.bulkWrite(params.operations);
return result;
} catch(err) {
console.log(`^1[MongoDB][ERROR] (exports.bulkWrite) ${err}^0`);
return false;
}
}
/* Exports definitions */
exports("isConnected", () => !!db);
exports("insert", dbInsert);
exports("insertOne", dbInsertOne);
exports("find", dbFind);
exports("findOne", dbFindOne);
exports("update", dbUpdate);
exports("updateOne", (params, callback) => {
return dbUpdate(params, callback, true);
});
exports("count", dbCount);
exports("delete", dbDelete);
exports("deleteOne", (params, callback) => {
return dbDelete(params, callback, true);
});
exports("aggregate", dbAggregate);
exports("bulkWrite", dbBulkWrite);