misc_pterodactyl-panel/resources/scripts/plugins/usePermissions.ts

28 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-03-29 21:19:17 +00:00
import { ServerContext } from '@/state/server';
import { useDeepMemo } from '@/plugins/useDeepMemo';
export const usePermissions = (action: string | string[]): boolean[] => {
const userPermissions = ServerContext.useStoreState(state => state.server.permissions);
return useDeepMemo(() => {
if (userPermissions[0] === '*') {
return ([] as boolean[]).fill(
true, 0, Array.isArray(action) ? action.length : 1,
);
}
2020-03-29 21:19:17 +00:00
return (Array.isArray(action) ? action : [ action ])
.map(permission => (
// Allows checking for any permission matching a name, for example files.*
// will return if the user has any permission under the file.XYZ namespace.
(
permission.endsWith('.*') &&
permission !== 'websocket.*' &&
userPermissions.filter(p => p.startsWith(permission.split('.')[0])).length > 0
) ||
// Otherwise just check if the entire permission exists in the array or not.
userPermissions.indexOf(permission) >= 0
));
2020-03-29 21:19:17 +00:00
}, [ action, userPermissions ]);
};