Documentation ¶
Index ¶
- Variables
- func Allowf(format string, a ...interface{}) error
- func DecisionContext(parent context.Context, decision error) context.Context
- func Denyf(format string, a ...interface{}) error
- func Skipf(format string, a ...interface{}) error
- type AlertMutationRuleFunc
- type AlertQueryRuleFunc
- type BouncerMutationRuleFunc
- type BouncerQueryRuleFunc
- type DecisionMutationRuleFunc
- type DecisionQueryRuleFunc
- type EventMutationRuleFunc
- type EventQueryRuleFunc
- type MachineMutationRuleFunc
- type MachineQueryRuleFunc
- type MetaMutationRuleFunc
- type MetaQueryRuleFunc
- type MutationPolicy
- type MutationRule
- type MutationRuleFunc
- type Policy
- type QueryMutationRule
- type QueryPolicy
- type QueryRule
- type QueryRuleFunc
Constants ¶
This section is empty.
Variables ¶
var ( // Allow may be returned by rules to indicate that the policy // evaluation should terminate with an allow decision. Allow = errors.New("ent/privacy: allow rule") // Deny may be returned by rules to indicate that the policy // evaluation should terminate with an deny decision. Deny = errors.New("ent/privacy: deny rule") // Skip may be returned by rules to indicate that the policy // evaluation should continue to the next rule. Skip = errors.New("ent/privacy: skip rule") )
Functions ¶
func DecisionContext ¶
DecisionContext creates a decision context.
Types ¶
type AlertMutationRuleFunc ¶
type AlertMutationRuleFunc func(context.Context, *ent.AlertMutation) error
The AlertMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.
func (AlertMutationRuleFunc) EvalMutation ¶
EvalMutation calls f(ctx, m).
type AlertQueryRuleFunc ¶
type AlertQueryRuleFunc func(context.Context, *ent.AlertQuery) error
The AlertQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.
type BouncerMutationRuleFunc ¶
type BouncerMutationRuleFunc func(context.Context, *ent.BouncerMutation) error
The BouncerMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.
func (BouncerMutationRuleFunc) EvalMutation ¶
EvalMutation calls f(ctx, m).
type BouncerQueryRuleFunc ¶
type BouncerQueryRuleFunc func(context.Context, *ent.BouncerQuery) error
The BouncerQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.
type DecisionMutationRuleFunc ¶
type DecisionMutationRuleFunc func(context.Context, *ent.DecisionMutation) error
The DecisionMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.
func (DecisionMutationRuleFunc) EvalMutation ¶
EvalMutation calls f(ctx, m).
type DecisionQueryRuleFunc ¶
type DecisionQueryRuleFunc func(context.Context, *ent.DecisionQuery) error
The DecisionQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.
type EventMutationRuleFunc ¶
type EventMutationRuleFunc func(context.Context, *ent.EventMutation) error
The EventMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.
func (EventMutationRuleFunc) EvalMutation ¶
EvalMutation calls f(ctx, m).
type EventQueryRuleFunc ¶
type EventQueryRuleFunc func(context.Context, *ent.EventQuery) error
The EventQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.
type MachineMutationRuleFunc ¶
type MachineMutationRuleFunc func(context.Context, *ent.MachineMutation) error
The MachineMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.
func (MachineMutationRuleFunc) EvalMutation ¶
EvalMutation calls f(ctx, m).
type MachineQueryRuleFunc ¶
type MachineQueryRuleFunc func(context.Context, *ent.MachineQuery) error
The MachineQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.
type MetaMutationRuleFunc ¶
type MetaMutationRuleFunc func(context.Context, *ent.MetaMutation) error
The MetaMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.
func (MetaMutationRuleFunc) EvalMutation ¶
EvalMutation calls f(ctx, m).
type MetaQueryRuleFunc ¶
The MetaQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.
type MutationPolicy ¶
type MutationPolicy []MutationRule
MutationPolicy combines multiple mutation rules into a single policy.
func (MutationPolicy) EvalMutation ¶
EvalMutation evaluates a mutation against a mutation policy.
type MutationRule ¶
MutationRule defines the interface deciding whether a mutation is allowed and optionally modify it.
func DenyMutationOperationRule ¶
func DenyMutationOperationRule(op ent.Op) MutationRule
DenyMutationOperationRule returns a rule denying specified mutation operation.
func OnMutationOperation ¶
func OnMutationOperation(rule MutationRule, op ent.Op) MutationRule
OnMutationOperation evaluates the given rule only on a given mutation operation.
type MutationRuleFunc ¶
MutationRuleFunc type is an adapter to allow the use of ordinary functions as mutation rules.
func (MutationRuleFunc) EvalMutation ¶
EvalMutation returns f(ctx, m).
type Policy ¶
type Policy struct { Query QueryPolicy Mutation MutationPolicy }
Policy groups query and mutation policies.
func (Policy) EvalMutation ¶
EvalMutation forwards evaluation to mutation policy.
type QueryMutationRule ¶
type QueryMutationRule interface { QueryRule MutationRule }
QueryMutationRule is the interface that groups query and mutation rules.
func AlwaysAllowRule ¶
func AlwaysAllowRule() QueryMutationRule
AlwaysAllowRule returns a rule that returns an allow decision.
func AlwaysDenyRule ¶
func AlwaysDenyRule() QueryMutationRule
AlwaysDenyRule returns a rule that returns a deny decision.
func ContextQueryMutationRule ¶
func ContextQueryMutationRule(eval func(context.Context) error) QueryMutationRule
ContextQueryMutationRule creates a query/mutation rule from a context eval func.
type QueryPolicy ¶
type QueryPolicy []QueryRule
QueryPolicy combines multiple query rules into a single policy.