1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/common/entities/UserDTO.ts
2019-02-22 23:39:01 +01:00

49 lines
1.4 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;
usedSharingKey?: string;
permissions: string[]; // user can only see these permissions. if ends with *, its recursive
}
export module UserDTO {
export const isDirectoryPathAvailable = (path: string, permissions: string[], separator = '/'): boolean => {
if (permissions == null || permissions.length === 0 || permissions[0] === separator + '*') {
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) && (!path[permission.length] || path[permission.length] === separator)) {
return true;
}
} else if (path === permission) {
return true;
} else if (path === '.' && permission === separator) {
return true;
}
}
return false;
};
export const isDirectoryAvailable = (directory: DirectoryDTO, permissions: string[]): boolean => {
return isDirectoryPathAvailable(Utils.concatUrls(directory.path, directory.name), permissions);
};
}