2020-05-11 10:16:29 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2020-08-05 16:32:25 +00:00
|
|
|
"time"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/logging"
|
2021-03-22 13:40:25 +00:00
|
|
|
|
2022-08-31 07:52:43 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
2022-04-26 23:01:45 +00:00
|
|
|
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/repository/project"
|
2020-05-11 10:16:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
ProjectGrantMemberKeyUserID = "user_id"
|
|
|
|
ProjectGrantMemberKeyGrantID = "grant_id"
|
2020-08-05 16:32:25 +00:00
|
|
|
ProjectGrantMemberKeyProjectID = "project_id"
|
2020-05-11 10:16:29 +00:00
|
|
|
ProjectGrantMemberKeyUserName = "user_name"
|
|
|
|
ProjectGrantMemberKeyEmail = "email"
|
|
|
|
ProjectGrantMemberKeyFirstName = "first_name"
|
|
|
|
ProjectGrantMemberKeyLastName = "last_name"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProjectGrantMemberView struct {
|
2022-08-31 07:52:43 +00:00
|
|
|
UserID string `json:"userId" gorm:"column:user_id;primary_key"`
|
|
|
|
GrantID string `json:"grantId" gorm:"column:grant_id;primary_key"`
|
|
|
|
ProjectID string `json:"-" gorm:"column:project_id"`
|
|
|
|
UserName string `json:"-" gorm:"column:user_name"`
|
|
|
|
Email string `json:"-" gorm:"column:email_address"`
|
|
|
|
FirstName string `json:"-" gorm:"column:first_name"`
|
|
|
|
LastName string `json:"-" gorm:"column:last_name"`
|
|
|
|
DisplayName string `json:"-" gorm:"column:display_name"`
|
|
|
|
Roles database.StringArray `json:"roles" gorm:"column:roles"`
|
|
|
|
Sequence uint64 `json:"-" gorm:"column:sequence"`
|
|
|
|
PreferredLoginName string `json:"-" gorm:"column:preferred_login_name"`
|
|
|
|
AvatarKey string `json:"-" gorm:"column:avatar_key"`
|
|
|
|
UserResourceOwner string `json:"-" gorm:"column:user_resource_owner"`
|
2020-05-11 10:16:29 +00:00
|
|
|
|
|
|
|
CreationDate time.Time `json:"-" gorm:"column:creation_date"`
|
|
|
|
ChangeDate time.Time `json:"-" gorm:"column:change_date"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ProjectGrantMemberView) AppendEvent(event *models.Event) (err error) {
|
|
|
|
r.Sequence = event.Sequence
|
|
|
|
r.ChangeDate = event.CreationDate
|
2022-03-31 09:36:26 +00:00
|
|
|
switch eventstore.EventType(event.Type) {
|
|
|
|
case project.GrantMemberAddedType:
|
2020-05-11 10:16:29 +00:00
|
|
|
r.setRootData(event)
|
|
|
|
r.CreationDate = event.CreationDate
|
|
|
|
err = r.SetData(event)
|
2022-03-31 09:36:26 +00:00
|
|
|
case project.GrantMemberChangedType:
|
2020-05-11 10:16:29 +00:00
|
|
|
err = r.SetData(event)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ProjectGrantMemberView) setRootData(event *models.Event) {
|
|
|
|
r.ProjectID = event.AggregateID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ProjectGrantMemberView) SetData(event *models.Event) error {
|
|
|
|
if err := json.Unmarshal(event.Data, r); err != nil {
|
|
|
|
logging.Log("EVEN-slo9s").WithError(err).Error("could not unmarshal event data")
|
|
|
|
return caos_errs.ThrowInternal(err, "MODEL-0plew", "Could not unmarshal data")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|