-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
73 lines (61 loc) · 1.69 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
import fp from 'fastify-plugin'
/**
* @todo:
* - add custom error
* - add event emitter :)
*/
const fastifyMongoCrud = (fastify, opts, next) => {
const crud = (collectionName) => {
const collection = fastify.mongo.db.collection(collectionName)
const ObjectId = fastify.mongo.ObjectId
return {
get collection() {
return collection
},
get newId() {
return new ObjectId()
},
async create(data) {
await collection.insertOne(Object.assign(data, { created: new Date() }))
return data
},
read(id) {
return this.findOne({ _id: ObjectId(id) })
},
async update(id, data) {
const result = await collection.findOneAndUpdate(
{ _id: ObjectId(id) },
{ $set: data, $currentDate: { modified: true } },
{ returnDocument: 'after', upsert: true }
)
return result.value
},
async delete(id) {
const result = await collection.findOneAndDelete({
_id: ObjectId(id)
})
if (result.value) return result.value
throw fastify.httpErrors.notFound()
},
async list(query = {}) {
const result = await collection.find(query).toArray()
return result
},
async findOne(query) {
const result = await collection.findOne(query)
if (result) return result
throw fastify.httpErrors.notFound()
}
}
}
fastify.decorate(opts.decoratesAs || 'crud', crud)
next()
}
export default fp(fastifyMongoCrud, {
fastify: '>=2.x',
name: 'fastify-mongo-crud',
decorators: {
fastify: ['httpErrors', 'mongo']
},
dependencies: ['@fastify/sensible', '@fastify/mongodb']
})