mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 22:48:31 +00:00
77 lines
2.1 KiB
TypeScript
77 lines
2.1 KiB
TypeScript
|
import { ACL } from './acl';
|
||
|
|
||
|
type ConditionFunc = (ctx: any) => boolean;
|
||
|
|
||
|
export class SkipManager {
|
||
|
protected skipActions = new Map<string, Map<string, string | ConditionFunc | true>>();
|
||
|
|
||
|
protected registeredCondition = new Map<string, ConditionFunc>();
|
||
|
|
||
|
constructor(public acl: ACL) {
|
||
|
this.registerSkipCondition('logged-in', (ctx) => {
|
||
|
return ctx.state.currentUser;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
skip(resourceName: string, actionName: string, condition?: string | ConditionFunc) {
|
||
|
const actionMap = this.skipActions.get(resourceName) || new Map<string, string | ConditionFunc>();
|
||
|
actionMap.set(actionName, condition || true);
|
||
|
|
||
|
this.skipActions.set(resourceName, actionMap);
|
||
|
}
|
||
|
|
||
|
getSkippedConditions(resourceName: string, actionName: string): Array<ConditionFunc | true> {
|
||
|
const fetchActionSteps: string[] = ['*', resourceName];
|
||
|
|
||
|
const results = [];
|
||
|
|
||
|
for (const fetchActionStep of fetchActionSteps) {
|
||
|
const resource = this.skipActions.get(fetchActionStep);
|
||
|
if (resource) {
|
||
|
const condition = resource.get('*') || resource.get(actionName);
|
||
|
if (condition) {
|
||
|
results.push(typeof condition === 'string' ? this.registeredCondition.get(condition) : condition);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return results;
|
||
|
}
|
||
|
|
||
|
registerSkipCondition(name: string, condition: ConditionFunc) {
|
||
|
this.registeredCondition.set(name, condition);
|
||
|
}
|
||
|
|
||
|
aclMiddleware() {
|
||
|
return async (ctx, next) => {
|
||
|
const { resourceName, actionName } = ctx.action;
|
||
|
const skippedConditions = ctx.app.acl.skipManager.getSkippedConditions(resourceName, actionName);
|
||
|
let skip = false;
|
||
|
|
||
|
for (const skippedCondition of skippedConditions) {
|
||
|
if (skippedCondition) {
|
||
|
let skipResult = false;
|
||
|
|
||
|
if (typeof skippedCondition === 'function') {
|
||
|
skipResult = skippedCondition(ctx);
|
||
|
} else if (skippedCondition) {
|
||
|
skipResult = true;
|
||
|
}
|
||
|
|
||
|
if (skipResult) {
|
||
|
skip = true;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (skip) {
|
||
|
ctx.permission = {
|
||
|
skip: true,
|
||
|
};
|
||
|
}
|
||
|
await next();
|
||
|
};
|
||
|
}
|
||
|
}
|