mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
7a6ca24625
* check uniqueness on create and register user * change user email, reserve release unique email * usergrant unique aggregate * usergrant uniqueness * validate UserGrant * fix tests * domain is set on username in all orgs * domain in admin * org domain sql * zitadel domain org name * org domains * org iam policy * default org iam policy * SETUP * load login names * login by login name * login name * fix: merge master * fix: merge master * Update internal/user/repository/eventsourcing/user.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: fix unique domains * fix: rename env variable Co-authored-by: adlerhurst <silvan.reusser@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
134 lines
4.3 KiB
Go
134 lines
4.3 KiB
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/caos/logging"
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
"github.com/caos/zitadel/internal/project/model"
|
|
es_model "github.com/caos/zitadel/internal/project/repository/eventsourcing/model"
|
|
"github.com/lib/pq"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
ProjectGrantKeyProjectID = "project_id"
|
|
ProjectGrantKeyGrantID = "grant_id"
|
|
ProjectGrantKeyOrgID = "org_id"
|
|
ProjectGrantKeyResourceOwner = "resource_owner"
|
|
ProjectGrantKeyName = "project_name"
|
|
)
|
|
|
|
type ProjectGrantView struct {
|
|
GrantID string `json:"-" gorm:"column:grant_id;primary_key"`
|
|
ProjectID string `json:"-" gorm:"column:project_id"`
|
|
OrgID string `json:"-" gorm:"column:org_id"`
|
|
Name string `json:"name" gorm:"column:project_name"`
|
|
CreationDate time.Time `json:"-" gorm:"column:creation_date"`
|
|
ChangeDate time.Time `json:"-" gorm:"column:change_date"`
|
|
State int32 `json:"-" gorm:"column:project_state"`
|
|
ResourceOwner string `json:"-" gorm:"column:resource_owner"`
|
|
OrgName string `json:"-" gorm:"column:org_name"`
|
|
Sequence uint64 `json:"-" gorm:"column:sequence"`
|
|
GrantedRoleKeys pq.StringArray `json:"-" gorm:"column:granted_role_keys"`
|
|
}
|
|
|
|
type ProjectGrant struct {
|
|
GrantID string `json:"grantId"`
|
|
GrantedOrgID string `json:"grantedOrgId"`
|
|
RoleKeys []string `json:"roleKeys"`
|
|
}
|
|
|
|
func ProjectGrantFromModel(project *model.ProjectGrantView) *ProjectGrantView {
|
|
return &ProjectGrantView{
|
|
ProjectID: project.ProjectID,
|
|
OrgID: project.OrgID,
|
|
Name: project.Name,
|
|
ChangeDate: project.ChangeDate,
|
|
CreationDate: project.CreationDate,
|
|
State: int32(project.State),
|
|
ResourceOwner: project.ResourceOwner,
|
|
OrgName: project.OrgName,
|
|
GrantID: project.GrantID,
|
|
GrantedRoleKeys: project.GrantedRoleKeys,
|
|
Sequence: project.Sequence,
|
|
}
|
|
}
|
|
|
|
func ProjectGrantToModel(project *ProjectGrantView) *model.ProjectGrantView {
|
|
return &model.ProjectGrantView{
|
|
ProjectID: project.ProjectID,
|
|
OrgID: project.OrgID,
|
|
Name: project.Name,
|
|
ChangeDate: project.ChangeDate,
|
|
CreationDate: project.CreationDate,
|
|
State: model.ProjectState(project.State),
|
|
ResourceOwner: project.ResourceOwner,
|
|
OrgName: project.OrgName,
|
|
GrantID: project.GrantID,
|
|
Sequence: project.Sequence,
|
|
}
|
|
}
|
|
|
|
func ProjectGrantsToModel(projects []*ProjectGrantView) []*model.ProjectGrantView {
|
|
result := make([]*model.ProjectGrantView, len(projects))
|
|
for i, p := range projects {
|
|
result[i] = ProjectGrantToModel(p)
|
|
}
|
|
return result
|
|
}
|
|
|
|
func (p *ProjectGrantView) AppendEvent(event *models.Event) (err error) {
|
|
p.ChangeDate = event.CreationDate
|
|
p.Sequence = event.Sequence
|
|
switch event.Type {
|
|
case es_model.ProjectGrantAdded:
|
|
p.State = int32(model.PROJECTSTATE_ACTIVE)
|
|
p.CreationDate = event.CreationDate
|
|
p.setRootData(event)
|
|
err = p.setProjectGrantData(event)
|
|
case es_model.ProjectGrantChanged:
|
|
err = p.setProjectGrantData(event)
|
|
case es_model.ProjectGrantDeactivated:
|
|
p.State = int32(model.PROJECTSTATE_INACTIVE)
|
|
case es_model.ProjectGrantReactivated:
|
|
p.State = int32(model.PROJECTSTATE_ACTIVE)
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (p *ProjectGrantView) setRootData(event *models.Event) {
|
|
p.ProjectID = event.AggregateID
|
|
p.ResourceOwner = event.ResourceOwner
|
|
}
|
|
|
|
func (p *ProjectGrantView) setData(event *models.Event) error {
|
|
if err := json.Unmarshal(event.Data, p); err != nil {
|
|
logging.Log("EVEN-dlo92").WithError(err).Error("could not unmarshal event data")
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (p *ProjectGrantView) setProjectGrantData(event *models.Event) error {
|
|
grant := new(ProjectGrant)
|
|
err := grant.SetData(event)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if grant.GrantedOrgID != "" {
|
|
p.OrgID = grant.GrantedOrgID
|
|
}
|
|
p.GrantID = grant.GrantID
|
|
p.GrantedRoleKeys = grant.RoleKeys
|
|
return nil
|
|
}
|
|
|
|
func (p *ProjectGrant) SetData(event *models.Event) error {
|
|
if err := json.Unmarshal(event.Data, p); err != nil {
|
|
logging.Log("EVEN-dlo92").WithError(err).Error("could not unmarshal event data")
|
|
return caos_errs.ThrowInternal(err, "MODEL-s9ols", "Could not unmarshal data")
|
|
}
|
|
return nil
|
|
}
|