mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:17:32 +00:00
feat: Instance commands (#3385)
* fix: add events for domain * fix: add/remove domain command side * fix: add/remove domain command side * fix: add/remove domain query side * fix: create instance * fix: merge v2 * fix: instance domain * fix: instance domain * fix: instance domain * fix: instance domain * fix: remove domain.IAMID from writemodels * fix: remove domain.IAMID from writemodels * fix: remove domain.IAMID from writemodels * fix: remove domain.IAMID from writemodels * fix: remove domain.IAMID from writemodels * fix: remove domain.IAMID from writemodels * fix: remove domain.IAMID from writemodels * fix: remove domain.IAMID from writemodels * fix: remove domain.IAMID from writemodels * fix: remove domain.IAMID from api * fix: remove domain.IAMID * fix: remove domain.IAMID * fix: add instance domain queries * fix: fix after merge * Update auth_request.go * fix keypair * remove unused code * feat: read instance id from context * feat: remove unused code * feat: use instance id from context * some fixes Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
@@ -1,26 +1,19 @@
|
||||
package domain
|
||||
|
||||
import (
|
||||
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
||||
)
|
||||
|
||||
const (
|
||||
IAMID = "IAM"
|
||||
)
|
||||
|
||||
type Instance struct {
|
||||
models.ObjectRoot
|
||||
type InstanceState int32
|
||||
|
||||
GlobalOrgID string
|
||||
IAMProjectID string
|
||||
SetUpDone Step
|
||||
SetUpStarted Step
|
||||
Members []*Member
|
||||
IDPs []*IDPConfig
|
||||
DefaultLoginPolicy *LoginPolicy
|
||||
DefaultLabelPolicy *LabelPolicy
|
||||
DefaultDomainPolicy *DomainPolicy
|
||||
DefaultPasswordComplexityPolicy *PasswordComplexityPolicy
|
||||
DefaultPasswordAgePolicy *PasswordAgePolicy
|
||||
DefaultPasswordLockoutPolicy *LockoutPolicy
|
||||
const (
|
||||
InstanceStateUnspecified InstanceState = iota
|
||||
InstanceStateActive
|
||||
InstanceStateRemoved
|
||||
|
||||
instanceStateCount
|
||||
)
|
||||
|
||||
func (f InstanceState) Valid() bool {
|
||||
return f >= 0 && f < instanceStateCount
|
||||
}
|
||||
|
23
internal/domain/instance_domain.go
Normal file
23
internal/domain/instance_domain.go
Normal file
@@ -0,0 +1,23 @@
|
||||
package domain
|
||||
|
||||
import (
|
||||
"strings"
|
||||
)
|
||||
|
||||
type InstanceDomainState int32
|
||||
|
||||
const (
|
||||
InstanceDomainStateUnspecified InstanceDomainState = iota
|
||||
InstanceDomainStateActive
|
||||
InstanceDomainStateRemoved
|
||||
|
||||
instanceDomainStateCount
|
||||
)
|
||||
|
||||
func (f InstanceDomainState) Valid() bool {
|
||||
return f >= 0 && f < instanceDomainStateCount
|
||||
}
|
||||
|
||||
func NewGeneratedInstanceDomain(instanceName, iamDomain string) string {
|
||||
return strings.ToLower(strings.ReplaceAll(instanceName, " ", "-") + "." + iamDomain)
|
||||
}
|
Reference in New Issue
Block a user