monastery 1.40.5 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +2 -0
- package/docs/model/remove.md +1 -0
- package/lib/model.js +26 -1
- package/package.json +1 -1
- package/test/model.js +52 -0
package/changelog.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.41.0](https://github.com/boycce/monastery/compare/1.40.5...1.41.0) (2023-04-16)
|
|
6
|
+
|
|
5
7
|
### [1.40.5](https://github.com/boycce/monastery/compare/1.40.4...1.40.5) (2023-02-22)
|
|
6
8
|
|
|
7
9
|
### [1.40.4](https://github.com/boycce/monastery/compare/1.40.3...1.40.4) (2022-12-21)
|
package/docs/model/remove.md
CHANGED
|
@@ -13,6 +13,7 @@ Remove document(s) in a collection and calls model hooks: `beforeRemove`, `afte
|
|
|
13
13
|
|
|
14
14
|
- `query` *(object\|id)*: [`MongoDB query document`](https://www.mongodb.com/docs/v4.4/tutorial/query-documents/), or id
|
|
15
15
|
- [`sort`] *(string\|object\|array)*: same as the mongodb option, but allows for string parsing e.g. 'name', 'name:1'
|
|
16
|
+
- [`multi`] *(boolean)*: set to false remove only the first document that match the query criteria
|
|
16
17
|
- [[`any mongodb option`](http://mongodb.github.io/node-mongodb-native/3.2/api/Collection.html#remove)] *(any)*
|
|
17
18
|
|
|
18
19
|
[`callback`] *(function)*: pass instead of return a promise
|
package/lib/model.js
CHANGED
|
@@ -131,6 +131,25 @@ Model.prototype._setupFields = function(fields) {
|
|
|
131
131
|
* @param {object|array} fields - subsdocument or array
|
|
132
132
|
*/
|
|
133
133
|
util.forEach(fields, function(field, fieldName) {
|
|
134
|
+
// Preprocess type objects
|
|
135
|
+
if (util.isSchema(field) && typeof field.type == 'object') {
|
|
136
|
+
if (field.schema) {
|
|
137
|
+
this.error(`Field "${fieldName}.schema" on model "${this.name}" is ignored when using `
|
|
138
|
+
+ 'object types, simply define the schema fields alongside field.type.')
|
|
139
|
+
delete fields[fieldName]
|
|
140
|
+
return
|
|
141
|
+
}
|
|
142
|
+
if (util.isSchema(field.type)) {
|
|
143
|
+
this.error(`"${fieldName}.type" on model "${this.name}" is a schema object, it must be either a `
|
|
144
|
+
+ 'string, subdocument or array')
|
|
145
|
+
delete fields[fieldName]
|
|
146
|
+
return
|
|
147
|
+
}
|
|
148
|
+
let fieldCache = field
|
|
149
|
+
field = fields[fieldName] = field.type
|
|
150
|
+
field.schema = util.omit(fieldCache, ['type'])
|
|
151
|
+
}
|
|
152
|
+
|
|
134
153
|
// Schema field
|
|
135
154
|
if (util.isSchema(field)) {
|
|
136
155
|
// No image schema pre-processing done yet by a plugin
|
|
@@ -195,7 +214,13 @@ Model.prototype._setupFields = function(fields) {
|
|
|
195
214
|
field.schema.index = index2dsphere
|
|
196
215
|
delete field.index
|
|
197
216
|
}
|
|
198
|
-
field.schema = {
|
|
217
|
+
field.schema = {
|
|
218
|
+
type: 'object',
|
|
219
|
+
isObject: true,
|
|
220
|
+
default: objectDefault,
|
|
221
|
+
nullObject: nullObject,
|
|
222
|
+
...field.schema
|
|
223
|
+
}
|
|
199
224
|
this._setupFields(field)
|
|
200
225
|
}
|
|
201
226
|
}, this)
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "monastery",
|
|
3
3
|
"description": "⛪ A straight forward MongoDB ODM built around Monk",
|
|
4
4
|
"author": "Ricky Boyce",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.41.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": "github:boycce/monastery",
|
|
8
8
|
"homepage": "https://boycce.github.io/monastery/",
|
package/test/model.js
CHANGED
|
@@ -68,6 +68,58 @@ module.exports = function(monastery, opendb) {
|
|
|
68
68
|
))
|
|
69
69
|
})
|
|
70
70
|
|
|
71
|
+
test('model setup with type object', async () => {
|
|
72
|
+
// Setup
|
|
73
|
+
let db = (await opendb(false)).db
|
|
74
|
+
let user = db.model('user', { fields: {
|
|
75
|
+
name: {
|
|
76
|
+
type: { cat: { type: 'string' }}, // subdocument
|
|
77
|
+
minLength: 4,
|
|
78
|
+
},
|
|
79
|
+
name2: {
|
|
80
|
+
type: [{ type: 'string' }], // array
|
|
81
|
+
minLength: 4,
|
|
82
|
+
},
|
|
83
|
+
}})
|
|
84
|
+
|
|
85
|
+
// subdocument object type
|
|
86
|
+
expect(user.fields.name).toEqual({
|
|
87
|
+
cat: { isString: true, type: 'string' },
|
|
88
|
+
schema: { isObject: true, type: 'object', minLength: 4 }
|
|
89
|
+
})
|
|
90
|
+
// array object type
|
|
91
|
+
expect(JSON.stringify(user.fields.name2)).toEqual(JSON.stringify(
|
|
92
|
+
[{ type: 'string', isString: true }]
|
|
93
|
+
))
|
|
94
|
+
expect(user.fields.name2.schema).toEqual({
|
|
95
|
+
type: 'array',
|
|
96
|
+
isArray: true,
|
|
97
|
+
minLength: 4,
|
|
98
|
+
})
|
|
99
|
+
})
|
|
100
|
+
|
|
101
|
+
test('model setup with invalid schema type object', async () => {
|
|
102
|
+
// Setup
|
|
103
|
+
let db = (await opendb(false, { hideErrors: true })).db // hide debug error
|
|
104
|
+
let user = db.model('user', { fields: {
|
|
105
|
+
// valid subdocument
|
|
106
|
+
name: {
|
|
107
|
+
type: { type: 'string' },
|
|
108
|
+
},
|
|
109
|
+
// schema with invlaid object type
|
|
110
|
+
name2: {
|
|
111
|
+
type: { type: 'string' },
|
|
112
|
+
minLength: 10,
|
|
113
|
+
},
|
|
114
|
+
}})
|
|
115
|
+
|
|
116
|
+
expect(user.fields.name).toEqual({
|
|
117
|
+
type: { isString: true, type: 'string' },
|
|
118
|
+
schema: { isObject: true, type: 'object' },
|
|
119
|
+
})
|
|
120
|
+
expect(user.fields.name2).toEqual(undefined)
|
|
121
|
+
})
|
|
122
|
+
|
|
71
123
|
test('model setup with default fields', async () => {
|
|
72
124
|
// Setup
|
|
73
125
|
let db = (await opendb(false, { defaultObjects: true })).db
|