2020-06-15 12:50:39 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2020-10-16 05:49:38 +00:00
|
|
|
"time"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/logging"
|
2020-10-16 05:49:38 +00:00
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
|
|
caos_errs "github.com/zitadel/zitadel/internal/errors"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
|
|
"github.com/zitadel/zitadel/internal/project/model"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/project"
|
2020-06-15 12:50:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
ProjectKeyProjectID = "project_id"
|
|
|
|
ProjectKeyResourceOwner = "resource_owner"
|
|
|
|
ProjectKeyName = "project_name"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProjectView struct {
|
2021-08-24 06:34:10 +00:00
|
|
|
ProjectID string `json:"-" gorm:"column:project_id;primary_key"`
|
|
|
|
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"`
|
|
|
|
ProjectRoleAssertion bool `json:"projectRoleAssertion" gorm:"column:project_role_assertion"`
|
|
|
|
ProjectRoleCheck bool `json:"projectRoleCheck" gorm:"column:project_role_check"`
|
|
|
|
HasProjectCheck bool `json:"hasProjectCheck" gorm:"column:has_project_check"`
|
|
|
|
PrivateLabelingSetting domain.PrivateLabelingSetting `json:"privateLabelingSetting" gorm:"column:private_labeling_setting"`
|
|
|
|
Sequence uint64 `json:"-" gorm:"column:sequence"`
|
2020-06-15 12:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ProjectView) AppendEvent(event *models.Event) (err error) {
|
|
|
|
p.ChangeDate = event.CreationDate
|
|
|
|
p.Sequence = event.Sequence
|
2022-03-31 09:36:26 +00:00
|
|
|
switch eventstore.EventType(event.Type) {
|
|
|
|
case project.ProjectAddedType:
|
2020-06-23 12:47:47 +00:00
|
|
|
p.State = int32(model.ProjectStateActive)
|
2020-06-15 12:50:39 +00:00
|
|
|
p.CreationDate = event.CreationDate
|
|
|
|
p.setRootData(event)
|
|
|
|
err = p.setData(event)
|
2022-03-31 09:36:26 +00:00
|
|
|
case project.ProjectChangedType:
|
2020-06-15 12:50:39 +00:00
|
|
|
err = p.setData(event)
|
2022-03-31 09:36:26 +00:00
|
|
|
case project.ProjectDeactivatedType:
|
2020-06-23 12:47:47 +00:00
|
|
|
p.State = int32(model.ProjectStateInactive)
|
2022-03-31 09:36:26 +00:00
|
|
|
case project.ProjectReactivatedType:
|
2020-06-23 12:47:47 +00:00
|
|
|
p.State = int32(model.ProjectStateActive)
|
2022-03-31 09:36:26 +00:00
|
|
|
case project.ProjectRemovedType:
|
2020-10-07 06:16:42 +00:00
|
|
|
p.State = int32(model.ProjectStateRemoved)
|
2020-06-15 12:50:39 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ProjectView) setRootData(event *models.Event) {
|
|
|
|
p.ProjectID = event.AggregateID
|
|
|
|
p.ResourceOwner = event.ResourceOwner
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ProjectView) 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 *ProjectView) setProjectData(event *models.Event) error {
|
|
|
|
project := new(ProjectView)
|
|
|
|
err := project.SetData(event)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ProjectView) SetData(event *models.Event) error {
|
|
|
|
if err := json.Unmarshal(event.Data, p); err != nil {
|
|
|
|
logging.Log("EVEN-sk9Sj").WithError(err).Error("could not unmarshal event data")
|
|
|
|
return caos_errs.ThrowInternal(err, "MODEL-s9ols", "Could not unmarshal data")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|