privacy

package
v0.0.0-...-7abf5e3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 6, 2024 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// Allow may be returned by rules to indicate that the policy
	// evaluation should terminate with allow decision.
	Allow = privacy.Allow

	// Deny may be returned by rules to indicate that the policy
	// evaluation should terminate with deny decision.
	Deny = privacy.Deny

	// Skip may be returned by rules to indicate that the policy
	// evaluation should continue to the next rule.
	Skip = privacy.Skip
)

Functions

func Allowf

func Allowf(format string, a ...any) error

Allowf returns a formatted wrapped Allow decision.

func DecisionContext

func DecisionContext(parent context.Context, decision error) context.Context

DecisionContext creates a new context from the given parent context with a policy decision attach to it.

func DecisionFromContext

func DecisionFromContext(ctx context.Context) (error, bool)

DecisionFromContext retrieves the policy decision from the context.

func Denyf

func Denyf(format string, a ...any) error

Denyf returns a formatted wrapped Deny decision.

func Skipf

func Skipf(format string, a ...any) error

Skipf returns a formatted wrapped Skip decision.

Types

type APITokenMutationRuleFunc

type APITokenMutationRuleFunc func(context.Context, *generated.APITokenMutation) error

The APITokenMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (APITokenMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type APITokenQueryRuleFunc

type APITokenQueryRuleFunc func(context.Context, *generated.APITokenQuery) error

The APITokenQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (APITokenQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type DocumentDataHistoryMutationRuleFunc

type DocumentDataHistoryMutationRuleFunc func(context.Context, *generated.DocumentDataHistoryMutation) error

The DocumentDataHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (DocumentDataHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type DocumentDataHistoryQueryRuleFunc

type DocumentDataHistoryQueryRuleFunc func(context.Context, *generated.DocumentDataHistoryQuery) error

The DocumentDataHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (DocumentDataHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type DocumentDataMutationRuleFunc

type DocumentDataMutationRuleFunc func(context.Context, *generated.DocumentDataMutation) error

The DocumentDataMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (DocumentDataMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type DocumentDataQueryRuleFunc

type DocumentDataQueryRuleFunc func(context.Context, *generated.DocumentDataQuery) error

The DocumentDataQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (DocumentDataQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type EmailVerificationTokenMutationRuleFunc

type EmailVerificationTokenMutationRuleFunc func(context.Context, *generated.EmailVerificationTokenMutation) error

The EmailVerificationTokenMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (EmailVerificationTokenMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type EmailVerificationTokenQueryRuleFunc

type EmailVerificationTokenQueryRuleFunc func(context.Context, *generated.EmailVerificationTokenQuery) error

The EmailVerificationTokenQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (EmailVerificationTokenQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type EntitlementHistoryMutationRuleFunc

type EntitlementHistoryMutationRuleFunc func(context.Context, *generated.EntitlementHistoryMutation) error

The EntitlementHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (EntitlementHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type EntitlementHistoryQueryRuleFunc

type EntitlementHistoryQueryRuleFunc func(context.Context, *generated.EntitlementHistoryQuery) error

The EntitlementHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (EntitlementHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type EntitlementMutationRuleFunc

type EntitlementMutationRuleFunc func(context.Context, *generated.EntitlementMutation) error

The EntitlementMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (EntitlementMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type EntitlementQueryRuleFunc

type EntitlementQueryRuleFunc func(context.Context, *generated.EntitlementQuery) error

The EntitlementQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (EntitlementQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type EventHistoryMutationRuleFunc

type EventHistoryMutationRuleFunc func(context.Context, *generated.EventHistoryMutation) error

The EventHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (EventHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type EventHistoryQueryRuleFunc

type EventHistoryQueryRuleFunc func(context.Context, *generated.EventHistoryQuery) error

The EventHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (EventHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type EventMutationRuleFunc

type EventMutationRuleFunc func(context.Context, *generated.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, *generated.EventQuery) error

The EventQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (EventQueryRuleFunc) EvalQuery

func (f EventQueryRuleFunc) EvalQuery(ctx context.Context, q generated.Query) error

EvalQuery return f(ctx, q).

type FeatureHistoryMutationRuleFunc

type FeatureHistoryMutationRuleFunc func(context.Context, *generated.FeatureHistoryMutation) error

The FeatureHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (FeatureHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type FeatureHistoryQueryRuleFunc

type FeatureHistoryQueryRuleFunc func(context.Context, *generated.FeatureHistoryQuery) error

The FeatureHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (FeatureHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type FeatureMutationRuleFunc

type FeatureMutationRuleFunc func(context.Context, *generated.FeatureMutation) error

The FeatureMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (FeatureMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type FeatureQueryRuleFunc

type FeatureQueryRuleFunc func(context.Context, *generated.FeatureQuery) error

The FeatureQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (FeatureQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type FileHistoryMutationRuleFunc

type FileHistoryMutationRuleFunc func(context.Context, *generated.FileHistoryMutation) error

The FileHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (FileHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type FileHistoryQueryRuleFunc

type FileHistoryQueryRuleFunc func(context.Context, *generated.FileHistoryQuery) error

The FileHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (FileHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type FileMutationRuleFunc

type FileMutationRuleFunc func(context.Context, *generated.FileMutation) error

The FileMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (FileMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type FileQueryRuleFunc

type FileQueryRuleFunc func(context.Context, *generated.FileQuery) error

The FileQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (FileQueryRuleFunc) EvalQuery

func (f FileQueryRuleFunc) EvalQuery(ctx context.Context, q generated.Query) error

EvalQuery return f(ctx, q).

type Filter

type Filter interface {
	// Where applies a filter on the executed query/mutation.
	Where(entql.P)
}

Filter is the interface that wraps the Where function for filtering nodes in queries and mutations.

type FilterFunc

type FilterFunc func(context.Context, Filter) error

The FilterFunc type is an adapter that allows the use of ordinary functions as filters for query and mutation types.

func (FilterFunc) EvalMutation

func (f FilterFunc) EvalMutation(ctx context.Context, m generated.Mutation) error

EvalMutation calls f(ctx, q) if the mutation implements the Filter interface, otherwise it is denied.

func (FilterFunc) EvalQuery

func (f FilterFunc) EvalQuery(ctx context.Context, q generated.Query) error

EvalQuery calls f(ctx, q) if the query implements the Filter interface, otherwise it is denied.

type GroupHistoryMutationRuleFunc

type GroupHistoryMutationRuleFunc func(context.Context, *generated.GroupHistoryMutation) error

The GroupHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (GroupHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type GroupHistoryQueryRuleFunc

type GroupHistoryQueryRuleFunc func(context.Context, *generated.GroupHistoryQuery) error

The GroupHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (GroupHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type GroupMembershipHistoryMutationRuleFunc

type GroupMembershipHistoryMutationRuleFunc func(context.Context, *generated.GroupMembershipHistoryMutation) error

The GroupMembershipHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (GroupMembershipHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type GroupMembershipHistoryQueryRuleFunc

type GroupMembershipHistoryQueryRuleFunc func(context.Context, *generated.GroupMembershipHistoryQuery) error

The GroupMembershipHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (GroupMembershipHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type GroupMembershipMutationRuleFunc

type GroupMembershipMutationRuleFunc func(context.Context, *generated.GroupMembershipMutation) error

The GroupMembershipMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (GroupMembershipMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type GroupMembershipQueryRuleFunc

type GroupMembershipQueryRuleFunc func(context.Context, *generated.GroupMembershipQuery) error

The GroupMembershipQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (GroupMembershipQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type GroupMutationRuleFunc

type GroupMutationRuleFunc func(context.Context, *generated.GroupMutation) error

The GroupMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (GroupMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type GroupQueryRuleFunc

type GroupQueryRuleFunc func(context.Context, *generated.GroupQuery) error

The GroupQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (GroupQueryRuleFunc) EvalQuery

func (f GroupQueryRuleFunc) EvalQuery(ctx context.Context, q generated.Query) error

EvalQuery return f(ctx, q).

type GroupSettingHistoryMutationRuleFunc

type GroupSettingHistoryMutationRuleFunc func(context.Context, *generated.GroupSettingHistoryMutation) error

The GroupSettingHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (GroupSettingHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type GroupSettingHistoryQueryRuleFunc

type GroupSettingHistoryQueryRuleFunc func(context.Context, *generated.GroupSettingHistoryQuery) error

The GroupSettingHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (GroupSettingHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type GroupSettingMutationRuleFunc

type GroupSettingMutationRuleFunc func(context.Context, *generated.GroupSettingMutation) error

The GroupSettingMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (GroupSettingMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type GroupSettingQueryRuleFunc

type GroupSettingQueryRuleFunc func(context.Context, *generated.GroupSettingQuery) error

The GroupSettingQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (GroupSettingQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type HushHistoryMutationRuleFunc

type HushHistoryMutationRuleFunc func(context.Context, *generated.HushHistoryMutation) error

The HushHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (HushHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type HushHistoryQueryRuleFunc

type HushHistoryQueryRuleFunc func(context.Context, *generated.HushHistoryQuery) error

The HushHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (HushHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type HushMutationRuleFunc

type HushMutationRuleFunc func(context.Context, *generated.HushMutation) error

The HushMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (HushMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type HushQueryRuleFunc

type HushQueryRuleFunc func(context.Context, *generated.HushQuery) error

The HushQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (HushQueryRuleFunc) EvalQuery

func (f HushQueryRuleFunc) EvalQuery(ctx context.Context, q generated.Query) error

EvalQuery return f(ctx, q).

type IntegrationHistoryMutationRuleFunc

type IntegrationHistoryMutationRuleFunc func(context.Context, *generated.IntegrationHistoryMutation) error

The IntegrationHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (IntegrationHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type IntegrationHistoryQueryRuleFunc

type IntegrationHistoryQueryRuleFunc func(context.Context, *generated.IntegrationHistoryQuery) error

The IntegrationHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (IntegrationHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type IntegrationMutationRuleFunc

type IntegrationMutationRuleFunc func(context.Context, *generated.IntegrationMutation) error

The IntegrationMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (IntegrationMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type IntegrationQueryRuleFunc

type IntegrationQueryRuleFunc func(context.Context, *generated.IntegrationQuery) error

The IntegrationQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (IntegrationQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type InviteMutationRuleFunc

type InviteMutationRuleFunc func(context.Context, *generated.InviteMutation) error

The InviteMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (InviteMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type InviteQueryRuleFunc

type InviteQueryRuleFunc func(context.Context, *generated.InviteQuery) error

The InviteQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (InviteQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type MutationPolicy

type MutationPolicy = privacy.MutationPolicy

MutationPolicy combines multiple mutation rules into a single policy.

type MutationRule

type MutationRule = privacy.MutationRule

MutationRule defines the interface which decides whether a mutation is allowed and optionally modifies it.

func DenyMutationOperationRule

func DenyMutationOperationRule(op generated.Op) MutationRule

DenyMutationOperationRule returns a rule denying specified mutation operation.

func OnMutationOperation

func OnMutationOperation(rule MutationRule, op generated.Op) MutationRule

OnMutationOperation evaluates the given rule only on a given mutation operation.

type MutationRuleFunc

type MutationRuleFunc = privacy.MutationRuleFunc

MutationRuleFunc type is an adapter which allows the use of ordinary functions as mutation rules.

type OauthProviderHistoryMutationRuleFunc

type OauthProviderHistoryMutationRuleFunc func(context.Context, *generated.OauthProviderHistoryMutation) error

The OauthProviderHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (OauthProviderHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type OauthProviderHistoryQueryRuleFunc

type OauthProviderHistoryQueryRuleFunc func(context.Context, *generated.OauthProviderHistoryQuery) error

The OauthProviderHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (OauthProviderHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type OauthProviderMutationRuleFunc

type OauthProviderMutationRuleFunc func(context.Context, *generated.OauthProviderMutation) error

The OauthProviderMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (OauthProviderMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type OauthProviderQueryRuleFunc

type OauthProviderQueryRuleFunc func(context.Context, *generated.OauthProviderQuery) error

The OauthProviderQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (OauthProviderQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type OhAuthTooTokenMutationRuleFunc

type OhAuthTooTokenMutationRuleFunc func(context.Context, *generated.OhAuthTooTokenMutation) error

The OhAuthTooTokenMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (OhAuthTooTokenMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type OhAuthTooTokenQueryRuleFunc

type OhAuthTooTokenQueryRuleFunc func(context.Context, *generated.OhAuthTooTokenQuery) error

The OhAuthTooTokenQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (OhAuthTooTokenQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type OrgMembershipHistoryMutationRuleFunc

type OrgMembershipHistoryMutationRuleFunc func(context.Context, *generated.OrgMembershipHistoryMutation) error

The OrgMembershipHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (OrgMembershipHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type OrgMembershipHistoryQueryRuleFunc

type OrgMembershipHistoryQueryRuleFunc func(context.Context, *generated.OrgMembershipHistoryQuery) error

The OrgMembershipHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (OrgMembershipHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type OrgMembershipMutationRuleFunc

type OrgMembershipMutationRuleFunc func(context.Context, *generated.OrgMembershipMutation) error

The OrgMembershipMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (OrgMembershipMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type OrgMembershipQueryRuleFunc

type OrgMembershipQueryRuleFunc func(context.Context, *generated.OrgMembershipQuery) error

The OrgMembershipQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (OrgMembershipQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type OrganizationHistoryMutationRuleFunc

type OrganizationHistoryMutationRuleFunc func(context.Context, *generated.OrganizationHistoryMutation) error

The OrganizationHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (OrganizationHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type OrganizationHistoryQueryRuleFunc

type OrganizationHistoryQueryRuleFunc func(context.Context, *generated.OrganizationHistoryQuery) error

The OrganizationHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (OrganizationHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type OrganizationMutationRuleFunc

type OrganizationMutationRuleFunc func(context.Context, *generated.OrganizationMutation) error

The OrganizationMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (OrganizationMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type OrganizationQueryRuleFunc

type OrganizationQueryRuleFunc func(context.Context, *generated.OrganizationQuery) error

The OrganizationQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (OrganizationQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type OrganizationSettingHistoryMutationRuleFunc

type OrganizationSettingHistoryMutationRuleFunc func(context.Context, *generated.OrganizationSettingHistoryMutation) error

The OrganizationSettingHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (OrganizationSettingHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type OrganizationSettingHistoryQueryRuleFunc

type OrganizationSettingHistoryQueryRuleFunc func(context.Context, *generated.OrganizationSettingHistoryQuery) error

The OrganizationSettingHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (OrganizationSettingHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type OrganizationSettingMutationRuleFunc

type OrganizationSettingMutationRuleFunc func(context.Context, *generated.OrganizationSettingMutation) error

The OrganizationSettingMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (OrganizationSettingMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type OrganizationSettingQueryRuleFunc

type OrganizationSettingQueryRuleFunc func(context.Context, *generated.OrganizationSettingQuery) error

The OrganizationSettingQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (OrganizationSettingQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type PasswordResetTokenMutationRuleFunc

type PasswordResetTokenMutationRuleFunc func(context.Context, *generated.PasswordResetTokenMutation) error

The PasswordResetTokenMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (PasswordResetTokenMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type PasswordResetTokenQueryRuleFunc

type PasswordResetTokenQueryRuleFunc func(context.Context, *generated.PasswordResetTokenQuery) error

The PasswordResetTokenQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (PasswordResetTokenQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type PersonalAccessTokenMutationRuleFunc

type PersonalAccessTokenMutationRuleFunc func(context.Context, *generated.PersonalAccessTokenMutation) error

The PersonalAccessTokenMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (PersonalAccessTokenMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type PersonalAccessTokenQueryRuleFunc

type PersonalAccessTokenQueryRuleFunc func(context.Context, *generated.PersonalAccessTokenQuery) error

The PersonalAccessTokenQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (PersonalAccessTokenQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type Policy

type Policy = privacy.Policy

Policy groups query and mutation policies.

type QueryMutationRule

type QueryMutationRule = privacy.QueryMutationRule

QueryMutationRule is an interface which 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 = privacy.QueryPolicy

QueryPolicy combines multiple query rules into a single policy.

type QueryRule

type QueryRule = privacy.QueryRule

QueryRule defines the interface deciding whether a query is allowed and optionally modify it.

type QueryRuleFunc

type QueryRuleFunc func(context.Context, generated.Query) error

QueryRuleFunc type is an adapter to allow the use of ordinary functions as query rules.

func (QueryRuleFunc) EvalQuery

func (f QueryRuleFunc) EvalQuery(ctx context.Context, q generated.Query) error

Eval returns f(ctx, q).

type SubscriberMutationRuleFunc

type SubscriberMutationRuleFunc func(context.Context, *generated.SubscriberMutation) error

The SubscriberMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (SubscriberMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type SubscriberQueryRuleFunc

type SubscriberQueryRuleFunc func(context.Context, *generated.SubscriberQuery) error

The SubscriberQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (SubscriberQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type TFASettingMutationRuleFunc

type TFASettingMutationRuleFunc func(context.Context, *generated.TFASettingMutation) error

The TFASettingMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (TFASettingMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type TFASettingQueryRuleFunc

type TFASettingQueryRuleFunc func(context.Context, *generated.TFASettingQuery) error

The TFASettingQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (TFASettingQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type TemplateHistoryMutationRuleFunc

type TemplateHistoryMutationRuleFunc func(context.Context, *generated.TemplateHistoryMutation) error

The TemplateHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (TemplateHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type TemplateHistoryQueryRuleFunc

type TemplateHistoryQueryRuleFunc func(context.Context, *generated.TemplateHistoryQuery) error

The TemplateHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (TemplateHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type TemplateMutationRuleFunc

type TemplateMutationRuleFunc func(context.Context, *generated.TemplateMutation) error

The TemplateMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (TemplateMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type TemplateQueryRuleFunc

type TemplateQueryRuleFunc func(context.Context, *generated.TemplateQuery) error

The TemplateQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (TemplateQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type UserHistoryMutationRuleFunc

type UserHistoryMutationRuleFunc func(context.Context, *generated.UserHistoryMutation) error

The UserHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (UserHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type UserHistoryQueryRuleFunc

type UserHistoryQueryRuleFunc func(context.Context, *generated.UserHistoryQuery) error

The UserHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (UserHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type UserMutationRuleFunc

type UserMutationRuleFunc func(context.Context, *generated.UserMutation) error

The UserMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (UserMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type UserQueryRuleFunc

type UserQueryRuleFunc func(context.Context, *generated.UserQuery) error

The UserQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (UserQueryRuleFunc) EvalQuery

func (f UserQueryRuleFunc) EvalQuery(ctx context.Context, q generated.Query) error

EvalQuery return f(ctx, q).

type UserSettingHistoryMutationRuleFunc

type UserSettingHistoryMutationRuleFunc func(context.Context, *generated.UserSettingHistoryMutation) error

The UserSettingHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (UserSettingHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type UserSettingHistoryQueryRuleFunc

type UserSettingHistoryQueryRuleFunc func(context.Context, *generated.UserSettingHistoryQuery) error

The UserSettingHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (UserSettingHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type UserSettingMutationRuleFunc

type UserSettingMutationRuleFunc func(context.Context, *generated.UserSettingMutation) error

The UserSettingMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (UserSettingMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type UserSettingQueryRuleFunc

type UserSettingQueryRuleFunc func(context.Context, *generated.UserSettingQuery) error

The UserSettingQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (UserSettingQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type WebauthnMutationRuleFunc

type WebauthnMutationRuleFunc func(context.Context, *generated.WebauthnMutation) error

The WebauthnMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (WebauthnMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type WebauthnQueryRuleFunc

type WebauthnQueryRuleFunc func(context.Context, *generated.WebauthnQuery) error

The WebauthnQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (WebauthnQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type WebhookHistoryMutationRuleFunc

type WebhookHistoryMutationRuleFunc func(context.Context, *generated.WebhookHistoryMutation) error

The WebhookHistoryMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (WebhookHistoryMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type WebhookHistoryQueryRuleFunc

type WebhookHistoryQueryRuleFunc func(context.Context, *generated.WebhookHistoryQuery) error

The WebhookHistoryQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (WebhookHistoryQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

type WebhookMutationRuleFunc

type WebhookMutationRuleFunc func(context.Context, *generated.WebhookMutation) error

The WebhookMutationRuleFunc type is an adapter to allow the use of ordinary functions as a mutation rule.

func (WebhookMutationRuleFunc) EvalMutation

EvalMutation calls f(ctx, m).

type WebhookQueryRuleFunc

type WebhookQueryRuleFunc func(context.Context, *generated.WebhookQuery) error

The WebhookQueryRuleFunc type is an adapter to allow the use of ordinary functions as a query rule.

func (WebhookQueryRuleFunc) EvalQuery

EvalQuery return f(ctx, q).

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL