mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
ff87264f95
* add setup steps * refactoring * omitempty * cleanup * begin org * create org * setup org * setup org * merge * fixes * fixes * fixes
44 lines
978 B
Go
44 lines
978 B
Go
package domain
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
)
|
|
|
|
type Org struct {
|
|
models.ObjectRoot
|
|
|
|
State OrgState
|
|
Name string
|
|
|
|
Domains []*OrgDomain
|
|
Members []*Member
|
|
OrgIamPolicy *OrgIAMPolicy
|
|
LoginPolicy *LoginPolicy
|
|
LabelPolicy *LabelPolicy
|
|
PasswordComplexityPolicy *PasswordComplexityPolicy
|
|
PasswordAgePolicy *PasswordAgePolicy
|
|
PasswordLockoutPolicy *PasswordLockoutPolicy
|
|
IDPs []*IDPConfig
|
|
}
|
|
|
|
func (o *Org) IsValid() bool {
|
|
return o.Name != ""
|
|
}
|
|
|
|
func (o *Org) AddIAMDomain(iamDomain string) {
|
|
o.Domains = append(o.Domains, &OrgDomain{Domain: o.nameForDomain(iamDomain), Verified: true, Primary: true})
|
|
}
|
|
|
|
func (o *Org) nameForDomain(iamDomain string) string {
|
|
return strings.ToLower(strings.ReplaceAll(o.Name, " ", "-") + "." + iamDomain)
|
|
}
|
|
|
|
type OrgState int32
|
|
|
|
const (
|
|
OrgStateActive OrgState = iota
|
|
OrgStateInactive
|
|
)
|