mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
db1d8f4efe
* feat: oidc config * fix: oidc configurations * feat: oidc idp config * feat: add oidc config test * fix: tests * fix: tests * feat: translate new events * feat: idp eventstore * feat: idp eventstore * fix: tests * feat: command side idp * feat: query side idp * feat: idp config on org * fix: tests * feat: authz idp on org * feat: org idps * feat: login policy * feat: login policy * feat: login policy * feat: add idp func on login policy * feat: add validation to loginpolicy and idp provider * feat: add default login policy * feat: login policy on org * feat: login policy on org * fix: id config handlers * fix: id config handlers * fix: create idp on org * fix: create idp on org * fix: not existing idp config * fix: default login policy * fix: add login policy on org * fix: idp provider search on org * fix: test * fix: remove idp on org * fix: test * fix: test * fix: remove admin idp * fix: logo src as byte * fix: migration * fix: tests * Update internal/iam/repository/eventsourcing/iam.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/iam_test.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/iam_test.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/model/login_policy.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/model/login_policy.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/org/repository/eventsourcing/org_test.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/model/login_policy_test.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/model/login_policy_test.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * fix: pr comments * fix: tests * Update types.go * fix: merge request changes * fix: reduce optimization Co-authored-by: Silvan <silvan.reusser@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
99 lines
2.1 KiB
Go
99 lines
2.1 KiB
Go
package model
|
|
|
|
import (
|
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
"github.com/golang/protobuf/ptypes/timestamp"
|
|
"strings"
|
|
)
|
|
|
|
type Org struct {
|
|
es_models.ObjectRoot
|
|
|
|
State OrgState
|
|
Name string
|
|
Domains []*OrgDomain
|
|
|
|
Members []*OrgMember
|
|
OrgIamPolicy *OrgIAMPolicy
|
|
LoginPolicy *iam_model.LoginPolicy
|
|
|
|
IDPs []*iam_model.IDPConfig
|
|
}
|
|
type OrgChanges struct {
|
|
Changes []*OrgChange
|
|
LastSequence uint64
|
|
}
|
|
|
|
type OrgChange struct {
|
|
ChangeDate *timestamp.Timestamp `json:"changeDate,omitempty"`
|
|
EventType string `json:"eventType,omitempty"`
|
|
Sequence uint64 `json:"sequence,omitempty"`
|
|
ModifierId string `json:"modifierUser,omitempty"`
|
|
ModifierName string `json:"-"`
|
|
Data interface{} `json:"data,omitempty"`
|
|
}
|
|
|
|
type OrgState int32
|
|
|
|
const (
|
|
OrgStateActive OrgState = iota
|
|
OrgStateInactive
|
|
)
|
|
|
|
func NewOrg(id string) *Org {
|
|
return &Org{ObjectRoot: es_models.ObjectRoot{AggregateID: id}, State: OrgStateActive}
|
|
}
|
|
|
|
func (o *Org) IsActive() bool {
|
|
return o.State == OrgStateActive
|
|
}
|
|
|
|
func (o *Org) IsValid() bool {
|
|
return o.Name != ""
|
|
}
|
|
|
|
func (o *Org) GetDomain(domain *OrgDomain) (int, *OrgDomain) {
|
|
for i, d := range o.Domains {
|
|
if d.Domain == domain.Domain {
|
|
return i, d
|
|
}
|
|
}
|
|
return -1, nil
|
|
}
|
|
|
|
func (o *Org) GetIDP(idpID string) (int, *iam_model.IDPConfig) {
|
|
for i, idp := range o.IDPs {
|
|
if idp.IDPConfigID == idpID {
|
|
return i, idp
|
|
}
|
|
}
|
|
return -1, nil
|
|
}
|
|
|
|
func (o *Org) GetPrimaryDomain() *OrgDomain {
|
|
for _, d := range o.Domains {
|
|
if d.Primary {
|
|
return d
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (o *Org) ContainsMember(userID string) bool {
|
|
for _, member := range o.Members {
|
|
if member.UserID == userID {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (o *Org) nameForDomain(iamDomain string) string {
|
|
return strings.ToLower(strings.ReplaceAll(o.Name, " ", "-") + "." + iamDomain)
|
|
}
|
|
|
|
func (o *Org) AddIAMDomain(iamDomain string) {
|
|
o.Domains = append(o.Domains, &OrgDomain{Domain: o.nameForDomain(iamDomain), Verified: true, Primary: true})
|
|
}
|