hooks

package
v0.4.7 Latest Latest
Warning

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

Go to latest
Published: Mar 25, 2024 License: Apache-2.0 Imports: 34 Imported by: 0

Documentation

Overview

Package hooks is middleware to alter the graphql mutation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ErrInternalServerError is returned when an internal error occurs.
	ErrInternalServerError = errors.New("internal server error")

	// ErrPersonalOrgsNoChildren is returned when personal org attempts to add a child org
	ErrPersonalOrgsNoChildren = errors.New("personal organizations are not allowed to have child organizations")

	// ErrPersonalOrgsNoMembers is returned when personal org attempts to add members
	ErrPersonalOrgsNoMembers = errors.New("personal organizations are not allowed to have members other than the owner")

	// ErrPersonalOrgsNoUser is returned when personal org has no user associated, so no permissions can be added
	ErrPersonalOrgsNoUser = errors.New("personal organizations missing user association")

	// ErrUserNotInOrg is returned when a user is not a member of an organization when trying to add them to a group
	ErrUserNotInOrg = errors.New("user not in organization")

	// ErrUnsupportedFGARole is returned when a role is assigned that is not supported in our fine grained authorization system
	ErrUnsupportedFGARole = errors.New("unsupported role")

	// ErrMissingRole is returned when an update request is made that contains no role
	ErrMissingRole = errors.New("missing role in update")

	// ErrUserAlreadyOrgMember is returned when an user attempts to be invited to an org they are already a member of
	ErrUserAlreadyOrgMember = errors.New("user already member of organization")

	// ErrUserAlreadySubscriber is returned when an user attempts to subscribe to datum but is already a subscriber
	ErrUserAlreadySubscriber = errors.New("user already a datum subscriber")

	// ErrMaxAttempts is returned when a user has reached the max attempts to resend an invitation to an org
	ErrMaxAttempts = errors.New("too many attempts to resend org invitation")
)

Functions

func HookCreatePersonalAccessToken added in v0.3.3

func HookCreatePersonalAccessToken() ent.Hook

HookCreatePersonalAccessToken runs on accesstoken mutations and sets expires and owner id

func HookDeleteUser added in v0.2.5

func HookDeleteUser() ent.Hook

HookDeleteUser runs on user deletions to clean up personal organizations

func HookEmailVerificationToken added in v0.2.2

func HookEmailVerificationToken() ent.Hook

HookEmailVerificationToken runs on email verification mutations and sets expires

func HookEnableTFA added in v0.3.6

func HookEnableTFA() ent.Hook

func HookGroup

func HookGroup() ent.Hook

HookGroup runs on group mutations to set default values that are not provided

func HookGroupAuthz

func HookGroupAuthz() ent.Hook

HookGroupAuthz runs on group mutations to setup or remove relationship tuples

func HookGroupMembers added in v0.3.2

func HookGroupMembers() ent.Hook

func HookInvite added in v0.2.6

func HookInvite() ent.Hook

HookInvite runs on invite create mutations

func HookInviteAccepted added in v0.2.6

func HookInviteAccepted() ent.Hook

HookInviteAccepted adds the user to the organization when the status is accepted

func HookOrgMembers added in v0.2.5

func HookOrgMembers() ent.Hook

func HookOrganization

func HookOrganization() ent.Hook

HookOrganization runs on org mutations to set default values that are not provided

func HookPasswordResetToken added in v0.2.3

func HookPasswordResetToken() ent.Hook

HookPasswordResetToken runs on reset token mutations and sets expires

func HookSubscriber added in v0.3.6

func HookSubscriber() ent.Hook

HookSubscriber runs on subscriber mutations and ensures uniqueness of email for root subscribers

func HookUpdatePersonalAccessToken added in v0.3.3

func HookUpdatePersonalAccessToken() ent.Hook

HookUpdatePersonalAccessToken runs on accesstoken update and redacts the token

func HookUser

func HookUser() ent.Hook

HookUser runs on user mutations validate and hash the password and set default values that are not provided

func HookUserSetting added in v0.3.4

func HookUserSetting() ent.Hook

HookUserSetting runs on user settings mutations and validates input on update

func IsUniqueConstraintError added in v0.2.6

func IsUniqueConstraintError(err error) bool

IsUniqueConstraintError reports if the error resulted from a DB uniqueness constraint violation. e.g. duplicate value in unique index.

Types

This section is empty.

Jump to

Keyboard shortcuts

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