mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 23:26:38 +00:00
41 lines
885 B
TypeScript
41 lines
885 B
TypeScript
|
import lodash from 'lodash';
|
||
|
type StrategyValue = false | '*' | string | string[];
|
||
|
|
||
|
export interface AvailableStrategyOptions {
|
||
|
displayName?: string;
|
||
|
actions: false | string | string[];
|
||
|
resource?: '*';
|
||
|
}
|
||
|
|
||
|
export function strategyValueMatched(strategy: StrategyValue, value: string) {
|
||
|
if (strategy === '*') {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
if (lodash.isString(strategy) && strategy === value) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
if (lodash.isArray(strategy) && strategy.includes(value)) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
export class ACLAvailableStrategy {
|
||
|
options: AvailableStrategyOptions;
|
||
|
|
||
|
constructor(options: AvailableStrategyOptions) {
|
||
|
this.options = options;
|
||
|
}
|
||
|
|
||
|
matchAction(actionName: string) {
|
||
|
return strategyValueMatched(this.options.actions, actionName);
|
||
|
}
|
||
|
|
||
|
allow(resourceName: string, actionName: string) {
|
||
|
return this.matchAction(actionName);
|
||
|
}
|
||
|
}
|