nocobase/packages/core/acl/src/acl-resource.ts
jack zhang 62b2b5c68b
chore: add copyright information to the file header (#4028)
* fix: add license code

* fix: bug

* fix: bug

* fix: upgrade

* fix: improve

* chore: add copyright information to the file header

* fix: d.ts bug

* fix: bug

* fix: e2e bug

* fix: merge main

---------

Co-authored-by: chenos <chenlinxh@gmail.com>
2024-04-30 15:51:31 +08:00

84 lines
2.1 KiB
TypeScript

/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { ACLRole, RoleActionParams } from './acl-role';
import { ACL, ListenerContext } from './acl';
import lodash from 'lodash';
export type ResourceActions = { [key: string]: RoleActionParams };
interface AclResourceOptions {
name: string;
role: ACLRole;
actions?: ResourceActions;
}
export class ACLResource {
actions = new Map<string, RoleActionParams>();
acl: ACL;
role: ACLRole;
name: string;
constructor(options: AclResourceOptions) {
this.acl = options.role.acl;
this.role = options.role;
this.name = options.name;
const actionsOption: ResourceActions = options.actions || {};
for (const actionName of Object.keys(actionsOption)) {
this.actions.set(actionName, actionsOption[actionName]);
}
}
getActions() {
return Array.from(this.actions.keys()).reduce((carry, key) => {
carry[key] = this.actions.get(key);
return carry;
}, {});
}
getAction(name: string) {
const result = this.actions.get(name) || this.actions.get(this.acl.resolveActionAlias(name));
if (!result) {
return null;
}
if (Array.isArray(result.fields) && result.fields.length > 0) {
result.fields = lodash.uniq(result.fields);
}
return lodash.cloneDeep(result);
}
setAction(name: string, params: RoleActionParams) {
const context: ListenerContext = {
role: this.role,
acl: this.role.acl,
params: params || {},
path: `${this.name}:${name}`,
resourceName: this.name,
actionName: name,
};
this.acl.emit('beforeGrantAction', context);
this.actions.set(name, context.params);
}
setActions(actions: ResourceActions) {
for (const actionName of Object.keys(actions)) {
this.setAction(actionName, actions[actionName]);
}
}
removeAction(name: string) {
this.actions.delete(name);
}
}