mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import {DirectoryDTO} from './DirectoryDTO';
|
|
import {Utils} from '../Utils';
|
|
|
|
export enum UserRoles {
|
|
LimitedGuest = 1,
|
|
Guest = 2,
|
|
User = 3,
|
|
Admin = 4,
|
|
Developer = 5,
|
|
|
|
}
|
|
|
|
export interface UserDTO {
|
|
id: number;
|
|
name: string;
|
|
password: string;
|
|
role: UserRoles;
|
|
permissions: string[]; // user can only see these permissions. if ends with *, its recursive
|
|
}
|
|
|
|
export module UserDTO {
|
|
|
|
export const isPathAvailable = (path: string, permissions: string[]): boolean => {
|
|
if (permissions == null || permissions.length === 0 || permissions[0] === '/*') {
|
|
return true;
|
|
}
|
|
for (let i = 0; i < permissions.length; i++) {
|
|
let permission = permissions[i];
|
|
if (permission[permission.length - 1] === '*') {
|
|
permission = permission.slice(0, -1);
|
|
if (path.startsWith(permission)) {
|
|
return true;
|
|
}
|
|
} else if (path === permission) {
|
|
return true;
|
|
} else if (path === '.' && permission === '/') {
|
|
return true;
|
|
}
|
|
|
|
}
|
|
return false;
|
|
};
|
|
|
|
export const isDirectoryAvailable = (directory: DirectoryDTO, permissions: string[]): boolean => {
|
|
|
|
return isPathAvailable(Utils.concatUrls(directory.path, directory.name), permissions);
|
|
};
|
|
}
|