2021-09-27 11:43:49 +00:00
|
|
|
package domain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
2021-09-27 11:43:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Action struct {
|
|
|
|
models.ObjectRoot
|
|
|
|
|
|
|
|
Name string
|
|
|
|
Script string
|
|
|
|
Timeout time.Duration
|
|
|
|
AllowedToFail bool
|
|
|
|
State ActionState
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Action) IsValid() bool {
|
|
|
|
return a.Name != ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type ActionState int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
ActionStateUnspecified ActionState = iota
|
|
|
|
ActionStateActive
|
|
|
|
ActionStateInactive
|
|
|
|
ActionStateRemoved
|
|
|
|
actionStateCount
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s ActionState) Valid() bool {
|
|
|
|
return s >= 0 && s < actionStateCount
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ActionState) Exists() bool {
|
|
|
|
return s != ActionStateUnspecified && s != ActionStateRemoved
|
|
|
|
}
|
2022-02-02 08:04:05 +00:00
|
|
|
|
|
|
|
type ActionsAllowed int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
ActionsNotAllowed ActionsAllowed = iota
|
|
|
|
ActionsMaxAllowed
|
|
|
|
ActionsAllowedUnlimited
|
|
|
|
)
|