imporve grant access

This commit is contained in:
grimhilt
2023-08-07 16:52:11 +02:00
parent 14b4f766c0
commit 86c423b07d
3 changed files with 48 additions and 17 deletions

View File

@@ -1,5 +1,6 @@
import { useAuth } from './auth-provider';
import Authentication from '../pages/auth';
import { useEffect } from 'react';
export const Perm = {
CREATE_ROLE: 0,
@@ -7,26 +8,38 @@ export const Perm = {
VIEW_PLAYLIST: 2,
OWN_PLAYLIST: 3,
EDIT_PLAYLIST: 4,
ACTIVATE_PLAYLIST: 5,
};
const checkPerm = (perm, user) => {
const checkPerm = (perm, user, item = {}) => {
console.log(user);
console.log(item);
switch (perm) {
case Perm.CREATE_ROLE:
return false;
case Perm.CREATE_PLAYLIST:
return user.roles.findIndex((role) => role.can_create_playlist) !== -1;
case Perm.OWN_PLAYLIST:
return item?.owner_id === user.id;
default:
return false;
}
};
const GrantAccess = ({ role, roles, children }) => {
const GrantAccess = ({ role, roles, children, item }) => {
const { user } = useAuth();
if (role && checkPerm(role, user)) {
return children;
} else if (roles && roles.includes(user)) {
if (role && checkPerm(role, user, item)) {
return children;
} else if (roles) {
let flag = false;
let i = 0;
while (!flag && i < roles.length) {
if (checkPerm(roles[i], user, item)) {
flag = true;
}
i++;
}
if (flag) return children;
}
return null;
};