forked from labring/laf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongo.ts
523 lines (444 loc) · 16.8 KB
/
mongo.ts
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
import { AccessorInterface, ReadResult, UpdateResult, AddResult, RemoveResult, CountResult, ListIndexesResult, DropIndexResult, CreateIndexResult } from "./accessor"
import { Params, ActionType, Order, Direction } from '../types'
import { MongoClient, ObjectId, MongoClientOptions, Db, UpdateOptions, Filter } from 'mongodb'
import * as mongodb from 'mongodb'
import { DefaultLogger, LoggerInterface } from "../logger"
import { EventEmitter } from "events"
import { EJSON } from "bson"
import { AggregateStage } from "database-ql/dist/commonjs/interface"
/**
* Mongodb Accessor 负责执行 mongodb 数据操作
*
* 连接参数同 mongodb nodejs driver,参考以下链接:
* @see https://docs.mongodb.com/manual/reference/connection-string/
*
* 实例化本对象后,须调用 `init()` 待数据库连接成功,方可执行数据操作。
* ```js
* const accessor = new MongoAccessor('dbname', 'mongodb://localhost:27017', { directConnection: true })
*
* accessor.init()
* ```
*
* 可通过 `ready` 属性等待数据库连接就绪,该属性为 `Promise` 对象:
* ```js
* accessor.ready.then(() => {
* // 连接就绪,可进行数据操作
* })
* ```
*/
export class MongoAccessor implements AccessorInterface {
readonly type: string = 'mongo'
/**
* 数据库名
*/
readonly db_name: string
readonly conn: MongoClient
protected _event = new EventEmitter()
/**
* `ready` 属性可用于等待数据库连接就绪,该属性为 `Promise` 对象:
* ```js
* accessor.ready.then(() => {
* // 连接就绪,可进行数据操作
* })
* ```
*/
ready: Promise<MongoClient>
db: Db
private _logger: LoggerInterface
get logger() {
if (!this._logger) {
this._logger = new DefaultLogger()
}
return this._logger
}
setLogger(logger: LoggerInterface) {
this._logger = logger
}
/**
* Mongodb Accessor 负责执行 mongodb 数据操作
*
* 连接参数同 mongodb nodejs driver,参考以下链接:
* @see https://docs.mongodb.com/manual/reference/connection-string/
*
* 实例化本对象后,须调用 `init()` 待数据库连接成功,方可执行数据操作。
* ```js
* const accessor = new MongoAccessor('dbname', 'mongodb://localhost:27017', { directConnection: true })
*
* accessor.init()
* ```
*
* 可通过 `ready` 属性等待数据库连接就绪,该属性为 `Promise` 对象:
* ```js
* accessor.ready.then(() => {
* // 连接就绪,可进行数据操作
* })
* ```
*/
constructor(db: string, url: string, options?: MongoClientOptions) {
this.db_name = db
this.conn = new MongoClient(url, options || {})
this.db = null
// 初始化为空 Promise,永远不被 resolved
this.ready = new Promise(() => { /* nop */ })
}
emit(event: string | symbol, ...args: any[]): boolean {
return this._event.emit(event, ...args)
}
once(event: string | symbol, listener: (...args: any[]) => void): void {
this.once(event, listener)
}
removeAllListeners(event?: string | symbol): void {
this._event.removeAllListeners(event)
}
on(event: string | symbol, listener: (...args: any[]) => void): void {
this._event.on(event, listener)
}
off(event: string | symbol, listener: (...args: any[]) => void): void {
this._event.off(event, listener)
}
/**
* 初始化实例: 执行数据库连接
* @returns Promise<MongoClient>
*/
async init() {
this.logger.info(`mongo accessor connecting...`)
this.ready = this.conn
.connect()
.then(ret => {
this.logger.info(`mongo accessor connected, db: ` + this.db_name)
this.db = this.conn.db(this.db_name)
return ret
})
return await this.ready
}
/**
* 关闭连接
*/
async close() {
await this.conn.close()
this.logger.info('mongo connection closed')
}
/**
* 执行数据请求
* @param params 数据请求参数
* @returns
*/
async execute(params: Params): Promise<ReadResult | UpdateResult | AddResult | RemoveResult | CountResult | CreateIndexResult | DropIndexResult | ListIndexesResult | never> {
const { collection, action } = params
this.logger.info(`mongo start executing {${collection}}: ` + JSON.stringify(params))
switch (action) {
case ActionType.READ:
return await this.read(collection, params)
case ActionType.UPDATE:
return await this.update(collection, params)
case ActionType.AGGREGATE:
return await this.aggregate(collection, params)
case ActionType.REMOVE:
return await this.remove(collection, params)
case ActionType.ADD:
return await this.add(collection, params)
case ActionType.COUNT:
return await this.count(collection, params)
case ActionType.CREATE_INDEX:
return await this.createIndex(collection, params)
case ActionType.CREATE_INDEX:
return await this.createIndex(collection, params)
case ActionType.DROP_INDEX:
return await this.dropIndex(collection, params)
case ActionType.LIST_INDEXES:
return await this.listIndexes(collection, params)
}
const error = new Error(`invalid 'action': ${action}`)
this.logger.error(`mongo end of executing occurred error: `, error)
throw error
}
/**
* 查询单个文档,主要用于 `访问规则` 中的数据查询
*/
async get(collection: string, query: Filter<any>): Promise<any> {
const coll = this.db.collection(collection)
return await coll.findOne(query)
}
/**
* 触发查询结果事件
* @param params
* @param data
*/
protected emitResult(params: Params, result: any) {
this.emit('result', { params, result })
}
/**
* 执行查询文档操作
* @param collection 集合名
* @param params 请求参数
* @returns 查询结果
*/
protected async read(collection: string, params: Params): Promise<ReadResult> {
const coll = this.db.collection(collection)
const { order, offset, limit, projection, count } = params
const query: any = this.deserializedEjson(params.query || {})
const options: any = {
limit: 100,
skip: 0
}
if (order) options.sort = this.processOrder(order)
if (offset) options.skip = offset
if (projection) options.projection = projection
if (limit) {
options.limit = limit
}
this.logger.debug(`mongo before read {${collection}}: `, { query, options })
const data = await coll.find(query, options).toArray()
this.logger.debug(`mongo end of read {${collection}}: `, { query, options, dataLength: data.length })
let total: number
if (count) {
total = await coll.countDocuments(query as Filter<any>)
}
this.emitResult(params, { data })
const serialized = data.map(doc => this.serializeBson(doc))
return { list: serialized, limit: options.limit, offset: options.skip, total }
}
/**
* Execute aggregate query
* @param collection
* @param params
* @returns
*/
protected async aggregate(collection: string, params: Params): Promise<ReadResult> {
const coll = this.db.collection(collection)
const stages = this.processAggregateStages(params.stages)
this.logger.debug(`mongo before aggregate {${collection}}: `, stages)
const data = await coll.aggregate(stages).toArray()
this.logger.debug(`mongo after aggregate {${collection}}: `, stages, { dataLength: data.length })
this.emitResult(params, { data })
const serialized = data.map(doc => this.serializeBson(doc))
return { list: serialized }
}
/**
* Execute update query
* @param collection Collection name
* @param params
* @returns
*/
protected async update(collection: string, params: Params): Promise<UpdateResult> {
const coll = this.db.collection(collection)
let { query, data, multi, upsert, merge } = params
query = this.deserializedEjson(query || {})
data = this.deserializedEjson(data || {})
let options: UpdateOptions = {}
if (upsert) options.upsert = upsert
// merge 不为 true 代表替换操作,暂只允许单条替换
if (!merge) {
this.logger.debug(`mongo before update (replaceOne) {${collection}}: `, { query, data, options, merge, multi })
const result: any = await coll.replaceOne(query, data, options)
const _data = {
upsert_id: result.upsertedId,
updated: result.modifiedCount,
matched: result.matchedCount
}
this.emitResult(params, _data)
return _data
}
let result: mongodb.UpdateResult
// multi 表示更新一条或多条
if (!multi) {
this.logger.debug(`mongo before update (updateOne) {${collection}}: `, { query, data, options, merge, multi })
result = await coll.updateOne(query, data, options)
} else {
options.upsert = false
this.logger.debug(`mongo before update (updateMany) {${collection}}: `, { query, data, options, merge, multi })
result = await coll.updateMany(query, data, options) as mongodb.UpdateResult
}
const ret: UpdateResult = {
upsert_id: this.serializeBson(result.upsertedId) as any,
updated: result.modifiedCount,
matched: result.matchedCount
}
this.emitResult(params, ret)
this.logger.debug(`mongo end of update {${collection}}: `, { query, data, options, merge, multi, result: ret })
return ret
}
/**
* Execute insert query
* @param collection Collection name
* @param params
* @returns
*/
protected async add(collection: string, params: Params): Promise<AddResult> {
const coll = this.db.collection(collection)
let { data, multi } = params
data = this.deserializedEjson(data || {})
let result: mongodb.InsertOneResult | mongodb.InsertManyResult
this.logger.debug(`mongo before add {${collection}}: `, { data, multi })
// multi 表示单条或多条添加
if (!multi) {
data._id = this.generateDocId()
result = await coll.insertOne(data)
} else {
data = data instanceof Array ? data : [data]
data.forEach((ele: any) => ele._id = this.generateDocId())
result = await coll.insertMany(data)
}
const ret: AddResult = {
_id: this.serializeBson((result as mongodb.InsertManyResult).insertedIds || (result as mongodb.InsertOneResult).insertedId) as any,
insertedCount: (result as mongodb.InsertManyResult).insertedCount
}
this.emitResult(params, ret)
this.logger.debug(`mongo end of add {${collection}}: `, { data, multi, result: ret })
return ret
}
/**
* 执行删除文档操作
* @param collection 集合名
* @param params 请求参数
* @returns 执行结果
*/
protected async remove(collection: string, params: Params): Promise<RemoveResult> {
const coll = this.db.collection(collection)
let { query, multi } = params
query = this.deserializedEjson(query || {})
let result: any
this.logger.debug(`mongo before remove {${collection}}: `, { query, multi })
// multi 表示单条或多条删除
if (!multi) {
result = await coll.deleteOne(query)
} else {
result = await coll.deleteMany(query)
}
const ret = {
deleted: result.deletedCount
}
this.emitResult(params, ret)
this.logger.debug(`mongo end of remove {${collection}}: `, ret)
return ret
}
/**
* 执行文档计数操作
* @param collection 集合名
* @param params 请求参数
* @returns 执行结果
*/
protected async count(collection: string, params: Params): Promise<CountResult> {
const coll = this.db.collection(collection)
const query = this.deserializedEjson(params.query || {}) as any
const options = {}
this.logger.debug(`mongo before count {${collection}}: `, { query })
const result = await coll.countDocuments(query, options)
this.logger.debug(`mongo end of count {${collection}}: `, { query, result })
this.emitResult(params, result)
return {
total: result
}
}
/**
* Convert order params to Mongodb's order format
* @param order
* @returns
*/
protected processOrder(order: Order[]) {
if (!(order instanceof Array))
return undefined
return order.map(o => {
const dir = o.direction === Direction.DESC ? -1 : 1
return [o.field, dir]
})
}
/**
* Generate a hex string document id
* @returns
*/
protected generateDocId(): string {
const id = new ObjectId()
return id.toHexString()
}
/**
* Serialize Bson to Extended JSON
* @see https://docs.mongodb.com/manual/reference/mongodb-extended-json/
* @param bsonDoc
* @returns
*/
protected serializeBson(bsonDoc: any) {
return EJSON.serialize(bsonDoc, { relaxed: true })
}
/**
* Deserialize Extended JSOn to Bson
* @see https://docs.mongodb.com/manual/reference/mongodb-extended-json/
* @param ejsonDoc
* @returns
*/
protected deserializedEjson(ejsonDoc: any) {
return EJSON.deserialize(ejsonDoc, { relaxed: true })
}
/**
* Convert aggregate stages params to Mongodb aggregate pipelines
* @param stages
* @returns
*/
protected processAggregateStages(stages: AggregateStage[]) {
const _stages = stages.map(item => {
const key = item.stageKey
const value = EJSON.parse(item.stageValue, { relaxed: true })
return { [key]: value }
})
return _stages
}
/**
* Execute create index query
* @param collection Collection name
* @param params
* @returns
*/
protected async createIndex(collection: string, params: Params): Promise<CreateIndexResult> {
const coll = this.db.collection(collection)
let { data } = params
data = this.deserializedEjson(data || {})
const { keys, options } = data;
this.logger.debug(`mongo before creating index {${collection}}: `, { data })
const result = await coll.createIndex(
keys as mongodb.IndexSpecification,
options as mongodb.CreateIndexesOptions
)
const ret: CreateIndexResult = {
indexName: result
}
this.emitResult(params, ret)
this.logger.debug(`mongo end of creating index {${collection}}: `, { data, result: ret })
return ret
}
/**
* Execute drop index query
* @param collection Collection name
* @param params
* @returns
*/
protected async dropIndex(collection: string, params: Params): Promise<DropIndexResult> {
const coll = this.db.collection(collection)
let { data } = params
data = this.deserializedEjson(data || {})
this.logger.debug(`mongo before drop index {${collection}}: `, { data })
const result = await coll.dropIndex(data)
const ret: DropIndexResult = {
result
}
this.emitResult(params, ret)
this.logger.debug(`mongo end of drop index {${collection}}: `, { data, result: ret })
return ret
}
/**
* Execute list indexes query
* @param collection Collection name
* @param params
* @returns
*/
protected async listIndexes(collection: string, params: Params): Promise<ListIndexesResult> {
const coll = this.db.collection(collection)
let { data } = params
data = this.deserializedEjson(data || {})
this.logger.debug(`mongo before listing indexes {${collection}}: `, { data })
const result = await coll.listIndexes(data).toArray()
this.logger.debug(`mongo end of listing indexes {${collection}}: `, { data })
this.emitResult(params, { result })
const serialized = result.map(doc => this.serializeBson(doc))
return { list: serialized }
}
}