forked from getlackey/mongoose-acl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
147 lines (118 loc) · 4.6 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
/*jslint node:true, nomen: true, unparam:true */
'use strict';
/*
Copyright 2015 Enigma Marketing Services Limited
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
function deep(obj, str) {
var o = obj,
s = (Array.isArray(str) ? str : str.split('.'));
o = o[s.shift()];
if (s.length > 0) {
return deep(o, s);
}
return o;
}
module.exports = function (schema, options) {
var schemaAddition = {}; // properties we will add to the schema
options = options || {};
options.required = options.required || ['admin'];
options.addAuthor = !!options.addAuthor;
options.userGrantsField = options.userGrantsField || 'grants';
options.userIdField = options.userIdField || '_id';
options.docGrantsField = options.docGrantsField || 'grants';
options.authorIdField = options.authorIdField || 'author._id';
// update the schema to include a grants array
schemaAddition[options.userGrantsField] = [String];
schema.add(schemaAddition);
if (!options.defaults) {
options.defaults = options.required.slice(0);
// we only push public grant if the defaults haven't
// been set. Some models will have no public access
if (options.defaults.indexOf('public') === -1) {
options.defaults.push('public');
}
}
// Add the required grants to defaults so we had them to new docs
// in one step
options.required.forEach(function (grant) {
if (options.defaults.indexOf(grant) === -1) {
options.defaults.push(grant);
}
});
// add default grants to document on creation
// throw error if required grants were remove
schema.pre('save', function (next) {
var self = this,
missingGrants = [],
err = null,
authorGrant,
authorId;
if (self.isNew) {
if (!self.grants || self.grants.length === 0) {
self.grants = options.defaults;
}
} else if (self.isModified()) {
if (!self.grants) {
self.grants = [];
}
options.required.forEach(function (grant) {
if (self.grants.indexOf(grant) === -1) {
missingGrants.push(grant);
}
});
}
if (options.addAuthor) {
authorId = deep(self, options.authorIdField);
authorGrant = 'author-' + authorId;
if (authorId && self.grants.indexOf(authorGrant) === -1) {
self.grants.push(authorGrant);
}
}
if (missingGrants.length > 0) {
err = new Error('Missing required Grants: ' + missingGrants.join(','));
}
next(err);
});
// expose the checkAcl method in the model
schema.on('init', function (Model) {
// We are overwriting/extending the find method
// we keep the reference to the old method in __find
// and call it in our new find method
Model.__find = Model.find;
Model.find = function (conditions, fields, opts, callback) {
var self = this,
mq = self.__find(conditions, fields, opts, callback);
mq.checkAcl = function (user, cb) {
var cond = mq._conditions,
userGrants = (user && user[options.userGrantsField] && user[options.userGrantsField].slice(0)) || [],
authorId,
authorGrant;
if (userGrants.indexOf('public') === -1) {
userGrants.push('public');
}
if (options.addAuthor) {
authorId = deep(user, options.userIdField);
authorGrant = 'author-' + authorId;
if (authorId && userGrants.indexOf(authorGrant) === -1) {
userGrants.push(authorGrant);
}
}
cond[options.docGrantsField] = {
$in: userGrants
};
mq.find(cond, cb);
return mq;
};
return mq;
};
});
};