-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCurrentUserUtil.js
57 lines (48 loc) · 1.2 KB
/
CurrentUserUtil.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
class CurrentUserUtil {
constructor(options = {}) {
this._currentUser = options.currentUser;
this._app = options.app;
this._aclPropertyName = options.aclPropertyName || "acl_groups";
}
/**
* Return all AclGroup-ids for current user
*
* Use on creation of new user
*/
fetchAclRelations(id) {
}
/**
* Persists ACL relations to User
* @param {Array<String>} relations
* @return Promise <User>
*/
saveAclRelations(relations) {
let acl = {};
acl[this._aclPropertyName] = relations;
return this.currentUser.save(acl);
}
/**
* Get Current User ACL Relations
* @return {Array.<String>}
*/
getGroupAcls() {
return this.currentUser[this._aclPropertyName] || [];
//return groups.map(group => group.toString());
}
/**
* Returns Current User's id in array
* @return {Array<String>}
*/
getIdForQuery() {
return [this.currentUser.id]; //Query 'inq' only accepts arrays
}
get currentUser() {
if (!this._currentUser) throw new Error("Current user not set");
return this._currentUser;
}
get app(){
if (!this._app) throw new Error("App object not set");
return this._app;
}
}
module.exports = CurrentUserUtil;