-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathObjectAclController.js
104 lines (76 loc) · 2.53 KB
/
ObjectAclController.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
const CurrentUserUtil = require("./lib/CurrentUserUtil");
const ObjectAcl = require("./lib/ObjectAcl");
const RequestParser = require("./lib/RequestParser");
const AclError = require("./lib/AclError");
class ObjectAclController {
constructor(Model, options = {}) {
this.model = Model;
this.model.settings.strictObjectIDCoercion = true;
this.model.observe("before save", (ctx, next) => this.beforeSave(ctx, next));
this.model.observe("access", (ctx, next) => this.onAccess(ctx, next, options));
this.model.afterRemote("**", (ctx, instance, next) => this.afterRemote(ctx, instance, next));
}
afterRemote(ctx, instance, next) {
if (instance) {
const parser = new RequestParser(instance);
parser.DataSource.parse();
}
next();
}
beforeSave(ctx, next) {
//Set flag for onAccess to skip ACL's for isValid() check
if (this.model.base.modelName === "User") {
ctx.options.userBeforeSave = true;
}
if (ctx.isNewInstance) {
const parser = new RequestParser(ctx.instance);
if (parser.Client.hasAcl()) {
if (!parser.Client.hasReadPerm() && !parser.Client.hasWritePerm()) {
return next(
new AclError("No permissions found").status(400)
);
}
parser.Client.resolveReadPerms();
parser.Client.resolveWritePerms();
parser.Client.clearAclOnRequest();
return next();
}
else {
//No Object ACL's present == public object
parser.Client.setReadPermissions(["*"], ["*"]);
parser.Client.setWritePermissions(["*"], ["*"]);
return next();
}
}
next();
}
onAccess(ctx, next, options) {
//From options
if (ctx.options.skipAcl) {
return next();
}
//Skip ACLs when isValid()-check is made on User model
if (ctx.options.userBeforeSave){
return next();
}
//If no CurrentUser (un-authenticated request is made), allow only
//for public objects to be returned
if (!ctx.options.currentUser) {
let objectAcl = new ObjectAcl({query:ctx.query});
objectAcl.setPublicReadQuery();
return next();
}
const currentUserUtil = new CurrentUserUtil({
currentUser: ctx.options.currentUser,
app: this.model.app,
aclPropertyName:options.aclPropertyName
});
let objectAcl = new ObjectAcl({
currentUser: currentUserUtil,
query: ctx.query
});
objectAcl.buildReadQuery();
next();
}
}
module.exports = (model, options) => new ObjectAclController(model, options);