2021-01-08 10:33:45 +00:00
|
|
|
package domain
|
|
|
|
|
|
|
|
import (
|
2021-04-19 14:43:36 +00:00
|
|
|
"strings"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
http_util "github.com/zitadel/zitadel/internal/api/http"
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
2021-01-08 10:33:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type OrgDomain struct {
|
|
|
|
models.ObjectRoot
|
|
|
|
|
|
|
|
Domain string
|
|
|
|
Primary bool
|
|
|
|
Verified bool
|
|
|
|
ValidationType OrgDomainValidationType
|
|
|
|
ValidationCode *crypto.CryptoValue
|
|
|
|
}
|
|
|
|
|
2021-01-18 10:24:15 +00:00
|
|
|
func (domain *OrgDomain) IsValid() bool {
|
2021-03-19 10:12:56 +00:00
|
|
|
return domain.Domain != ""
|
2021-01-18 10:24:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (domain *OrgDomain) GenerateVerificationCode(codeGenerator crypto.Generator) (string, error) {
|
|
|
|
validationCodeCrypto, validationCode, err := crypto.NewCode(codeGenerator)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
domain.ValidationCode = validationCodeCrypto
|
|
|
|
return validationCode, nil
|
|
|
|
}
|
|
|
|
|
2021-04-19 14:43:36 +00:00
|
|
|
func NewIAMDomainName(orgName, iamDomain string) string {
|
|
|
|
return strings.ToLower(strings.ReplaceAll(orgName, " ", "-") + "." + iamDomain)
|
|
|
|
}
|
|
|
|
|
2021-01-08 10:33:45 +00:00
|
|
|
type OrgDomainValidationType int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
OrgDomainValidationTypeUnspecified OrgDomainValidationType = iota
|
|
|
|
OrgDomainValidationTypeHTTP
|
|
|
|
OrgDomainValidationTypeDNS
|
|
|
|
)
|
|
|
|
|
2021-01-18 10:24:15 +00:00
|
|
|
func (t OrgDomainValidationType) CheckType() (http_util.CheckType, bool) {
|
|
|
|
switch t {
|
|
|
|
case OrgDomainValidationTypeHTTP:
|
|
|
|
return http_util.CheckTypeHTTP, true
|
|
|
|
case OrgDomainValidationTypeDNS:
|
|
|
|
return http_util.CheckTypeDNS, true
|
|
|
|
default:
|
|
|
|
return -1, false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-08 10:33:45 +00:00
|
|
|
type OrgDomainState int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
OrgDomainStateUnspecified OrgDomainState = iota
|
|
|
|
OrgDomainStateActive
|
|
|
|
OrgDomainStateRemoved
|
|
|
|
|
|
|
|
orgDomainStateCount
|
|
|
|
)
|
|
|
|
|
|
|
|
func (f OrgDomainState) Valid() bool {
|
|
|
|
return f >= 0 && f < orgDomainStateCount
|
|
|
|
}
|