-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
256 lines (205 loc) · 6.71 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
"use strict";
const fastifyPlugin = require("fastify-plugin");
const { AbilityBuilder, Ability } = require("@casl/ability");
// RESTful Aliases
Ability.addAlias("POST", "create");
Ability.addAlias("GET", "read");
Ability.addAlias("PATCH", "update");
Ability.addAlias("DELETE", "delete");
const { permittedFieldsOf } = require("@casl/ability/extra");
// Retrieves the values from the 1st object argument based on the keys provided on the 2nd string array argument
const pick = require("lodash/pick");
class CASL {
assetClasses = {};
constructor(mongoose, assets, denyByDefault, verbose) {
this.denyByDefault = denyByDefault;
this.verbose = verbose;
assets.forEach(({ name, actions }) => {
// Define class with dynamic name for casl checking
this.assetClasses[name] = class {
static get modelName() {
return name;
}
constructor(obj) {
Object.assign(this, obj);
}
};
// For each action (GET, POST etc.)
Object.keys(actions).map(action => {
// For each user described in action (writer, admin etc.)
Object.keys(actions[action]).forEach(user => {
if (
actions[action][user] === null ||
(typeof actions[action][user] !== "boolean" &&
typeof actions[action][user] !== "object")
)
throw new Error("Invalid user rights provided");
const rule = {};
// If the value is true, the destructuring will result in undefined values for $if & $fields ensuring no type of rule checking
const { $if, $fields } = actions[action][user];
if (Array.isArray($fields)) rule.$fields = $fields;
if ($if !== null && typeof $if === "object") {
rule.$if = $if;
}
actions[action][user] = rule;
});
});
// We also need $allFields to ensure that if no rules are specified, all fields are to be retrieved
this[name] = {
...actions,
$allFields: Object.keys(mongoose[name].paths)
};
});
}
sanitizeOutput(userField = "type", path = undefined, asset = undefined) {
return async (r, _, payload) => {
const {
raw: { url }
} = r;
if (!asset) {
const end =
url.indexOf("/", 1) === -1 ? url.length : url.indexOf("/", 1);
asset = url[1].toUpperCase() + url.substring(2, end);
}
const assetClass = this.assetClasses[asset];
let assetField;
if (path !== undefined) assetField = this.getNestedValue(payload, path);
else if (Array.isArray(payload)) assetField = payload.slice();
else assetField = { ...payload };
if (Array.isArray(assetField)) {
assetField = assetField.map(async member => {
const allowedFields = await this.getAllowedFields(
r,
userField,
new assetClass(member)
);
return pick(member, allowedFields);
});
assetField = (await Promise.all(assetField)).filter(
obj => Object.entries(obj).length !== 0
);
if (path !== undefined) this.setNestedValue(payload, path, assetField);
else payload = assetField;
return payload;
} else {
const allowedFields = await this.getAllowedFields(
r,
userField,
new assetClass(assetField)
);
assetField = pick(assetField, allowedFields);
if (path !== undefined) this.setNestedValue(payload, path, assetField);
else payload = assetField;
return payload;
}
};
}
guardPath(userField = "type", asset = undefined) {
return async r => {
const {
raw: { url }
} = r;
if (!asset) {
const end =
url.indexOf("/", 1) === -1 ? url.length : url.indexOf("/", 1);
asset = url[1].toUpperCase() + url.substring(2, end);
}
const allowedFields = await this.getAllowedFields(
r,
userField,
new this.assetClasses[asset](r.body)
);
r.body = pick(r.body, allowedFields);
};
}
async getAllowedFields(r, userField, asset) {
const {
raw: { method }
} = r;
const user = await r.jwtVerify();
const assetName = asset.constructor.modelName;
const ability = this.createAbilities(
assetName,
method,
this.getNestedValue(user, userField),
user
);
const allAssetFields = this[assetName].$allFields;
return permittedFieldsOf(ability, method, asset, {
fieldsFrom: rule => rule.fields || allAssetFields
});
}
constructRule(action, asset, $fields, $if, userInfo) {
const rule = [action, asset];
if (Array.isArray($fields) && typeof $fields[0] === "string")
rule.push($fields);
$if = { ...$if };
const keys = Object.keys($if);
if (keys.length !== 0) {
keys.forEach(key => {
if (key[0] === "$") {
$if[key.substring(1)] = this.getNestedValue(userInfo, $if[key]);
delete $if[key];
}
});
rule.push($if);
}
return rule;
}
createAbilities(asset, action, userType, userInfo) {
return AbilityBuilder.define(can => {
if (
this[asset][action] &&
(this[asset][action][userType] || this[asset][action].$default)
) {
let { $if, $fields } =
this[asset][action][userType] || this[asset][action].$default;
if (Array.isArray($if)) {
$if.forEach(($fi, i) => {
can(
...this.constructRule(action, asset, $fields[i], $fi, userInfo)
);
});
} else {
can(...this.constructRule(action, asset, $fields, $if, userInfo));
}
} else {
if (this.denyByDefault) throw new Error("Insufficient Privileges");
can("POST", "all");
can("GET", "all");
can("PATCH", "all");
can("DELETE", "all");
}
});
}
getNestedValue(obj, path) {
path
.split(".")
.forEach(segment => (obj = obj !== undefined ? obj[segment] : undefined));
if (obj === undefined)
throw new Error(
this.verbose
? `Inexistent nested value for path "${path}"`
: "Fatal Error"
);
return obj;
}
// This method is called after getNestedValue so no type of undefined checking is required
setNestedValue(obj, path, val) {
path
.split(".")
.slice(0, -1)
.forEach(segment => (obj = obj[segment]));
obj[path.substring(path.lastIndexOf(".") + 1)] = val;
}
}
async function caslConnector(
fastify,
{ assets, mongooseSchemas, denyByDefault = false, verbose = false }
) {
fastify.decorate(
"casl",
new CASL(mongooseSchemas, assets, denyByDefault, verbose)
);
}
module.exports = fastifyPlugin(caslConnector);