-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
51 lines (48 loc) · 1.82 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
/**
* Create a list of all paths and their minimum access level
* @param {Array<Object>} Registry array of routes
* @returns {Array<Object>} modified registry
*/
const getAllPaths = (registry) => {
const newRegistry = [];
registry.forEach(() => {
registry.forEach(path => {
if ((!path.parent || path.parent === '/') && !newRegistry.find(aux => aux.absolutePath === path.path)){ // PATH AS ABSOLUTE
newRegistry.push({...path ,absolutePath: path.path})
} else {
newRegistry.forEach(added => {
if (path.parent === added.path && added.absolutePath != '/' && !newRegistry.find(aux => aux.absolutePath === added.absolutePath+path.path)) {
newRegistry.push({...path, level: Math.max(added.level, path.level), absolutePath: added.absolutePath+path.path})
}
});
}
});
});
return newRegistry;
}
/**
* Check accessibilty for a user
* @param {Object} User { name: string, level: number }
* @param {String} Path path to check
* @param {Array<Object>} ModifiedRegistry getAllPaths() result
* @returns {Boolean} if the user has acces
*/
const hasAccess = (user, path, paths) => {
if (user && user.level && path && paths.length) {
const aux = paths.find(regis => regis.absolutePath && regis.absolutePath === path);
return aux ? (aux.level && aux.level <= user.level) : false;
}
}
/**
* Get all paths a user has access too
* @param {Object} User { name: string, level: number }
* @param {Array<Object>} ModifiedRegistry getAllPaths() result
* @returns {Array<Object>} filtered array of routes
*/
const getUserPaths = (user, paths) => (user && paths.length) ?
paths.filter(registry => hasAccess(user, registry.absolutePath, paths)).map(filtered => ({absolutePath: filtered.absolutePath})) : [];
module.exports = {
getAllPaths,
hasAccess,
getUserPaths
}