mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
8464cfa4fe
* feat: eventstore repository * fix: remove gorm * version * feat: pkg * feat: add some files for project * feat: eventstore without eventstore-lib * rename files * gnueg * fix: key json * fix: add object * fix: change imports * fix: internal models * fix: some imports * fix: global model * feat: add global view functions * fix: add some functions on repo * feat(eventstore): sdk * fix(eventstore): search query * fix(eventstore): rename app to eventstore * delete empty test * remove unused func * merge master * fix(eventstore): tests * fix(models): delete unused struct * fix: some funcitons * feat(eventstore): implemented push events * fix: move project eventstore to project package * fix: change project eventstore funcs * feat(eventstore): overwrite context data * fix: change project eventstore * fix: add project repo to mgmt server * feat(types): SQL-config * fix: commented code * feat(eventstore): options to overwrite editor * feat: auth interceptor and cockroach migrations * fix: migrations * fix: fix filter * fix: not found on getbyid * fix: use global sql config * fix: add sequence * fix: add some tests * fix(eventstore): nullable sequence * fix: add some tests * merge * fix: add some tests * fix(migrations): correct statements for sequence * fix: add some tests * fix: add some tests * fix: changes from mr * fix: changes from mr * fix: add some tests * Update internal/eventstore/models/field.go Co-Authored-By: livio-a <livio.a@gmail.com> * fix(eventstore): code quality * fix: add types to aggregate/Event-types * fix: try tests * fix(eventstore): rename modifier* to editor* * fix(eventstore): delete editor_org * fix(migrations): remove editor_org field, rename modifier_* to editor_* * fix: query tests * fix: use prepare funcs * fix: go mod * fix: generate files * fix(eventstore): tests * fix(eventstore): rename modifier to editor * fix(migrations): add cluster migration, fix(migrations): fix typo of host in clean clsuter * fix(eventstore): move health * fix(eventstore): AggregateTypeFilter aggregateType as param * code quality * fix: go tests * feat: add member funcs * feat: add member model * feat: add member events * feat: add member repo model * fix: better error func testing * fix: project member funcs * fix: add tests * fix: add tests * feat: implement member requests * fix: merge master * fix: merge master * fix: read existing in project repo * fix: fix tests * feat: add internal cache * feat: add cache mock * fix: return values of cache mock * feat: add project role * fix: add cache config * fix: add role to eventstore * fix: use eventstore sdk * fix: use eventstore sdk * fix: add project role grpc requests * fix: fix getby id * fix: changes for mr * fix: change value to interface * feat: add app event creations * fix: searchmethods * Update internal/project/model/project_member.go Co-Authored-By: Silvan <silvan.reusser@gmail.com> * fix: use get project func * fix: append events * fix: check if value is string on equal ignore case * fix: add changes test * fix: add go mod * fix: add some tests * fix: return err not nil * fix: return err not nil * fix: add aggregate funcs and tests * fix: add oidc aggregate funcs and tests * fix: add oidc * fix: add some tests * fix: tests * fix: oidc validation * fix: generate client secret * fix: generate client id * fix: test change app * fix: deactivate/reactivate application * fix: change oidc config * fix: change oidc config secret * fix: implement grpc app funcs * fix: add application requests * fix: converter * fix: converter * fix: converter and generate clientid * fix: tests * feat: project grant aggregate * feat: project grant * fix: project grant check if role existing * fix: project grant requests * fix: project grant fixes * fix: project grant member model * fix: project grant member aggregate * fix: project grant member eventstore * fix: project grant member requests * fix: problems after merger * fix: new commit * fix: remove enum converter * Update internal/project/model/project_grant.go Co-Authored-By: Livio Amstutz <livio.a@gmail.com> * Update internal/project/model/project_grant.go Co-Authored-By: Livio Amstutz <livio.a@gmail.com> * Update internal/project/model/project.go Co-Authored-By: Livio Amstutz <livio.a@gmail.com> * fix: better sub object handling * fix: imports Co-authored-by: adlerhurst <silvan.reusser@gmail.com> Co-authored-by: livio-a <livio.a@gmail.com>
155 lines
3.7 KiB
Go
155 lines
3.7 KiB
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/caos/logging"
|
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
|
"github.com/caos/zitadel/internal/project/model"
|
|
)
|
|
|
|
type Application struct {
|
|
es_models.ObjectRoot
|
|
AppID string `json:"appId"`
|
|
State int32 `json:"-"`
|
|
Name string `json:"name,omitempty"`
|
|
Type int32 `json:"appType,omitempty"`
|
|
OIDCConfig *OIDCConfig `json:"-"`
|
|
}
|
|
|
|
type ApplicationID struct {
|
|
es_models.ObjectRoot
|
|
AppID string `json:"appId"`
|
|
}
|
|
|
|
func GetApplication(apps []*Application, id string) (int, *Application) {
|
|
for i, a := range apps {
|
|
if a.AppID == id {
|
|
return i, a
|
|
}
|
|
}
|
|
return -1, nil
|
|
}
|
|
|
|
func (a *Application) Changes(changed *Application) map[string]interface{} {
|
|
changes := make(map[string]interface{}, 1)
|
|
changes["appId"] = a.AppID
|
|
if changed.Name != "" && a.Name != changed.Name {
|
|
changes["name"] = changed.Name
|
|
}
|
|
return changes
|
|
}
|
|
|
|
func AppsToModel(apps []*Application) []*model.Application {
|
|
convertedApps := make([]*model.Application, len(apps))
|
|
for i, a := range apps {
|
|
convertedApps[i] = AppToModel(a)
|
|
}
|
|
return convertedApps
|
|
}
|
|
|
|
func AppsFromModel(apps []*model.Application) []*Application {
|
|
convertedApps := make([]*Application, len(apps))
|
|
for i, a := range apps {
|
|
convertedApps[i] = AppFromModel(a)
|
|
}
|
|
return convertedApps
|
|
}
|
|
|
|
func AppFromModel(app *model.Application) *Application {
|
|
converted := &Application{
|
|
ObjectRoot: es_models.ObjectRoot{
|
|
AggregateID: app.ObjectRoot.AggregateID,
|
|
Sequence: app.Sequence,
|
|
ChangeDate: app.ChangeDate,
|
|
CreationDate: app.CreationDate,
|
|
},
|
|
AppID: app.AppID,
|
|
Name: app.Name,
|
|
State: int32(app.State),
|
|
Type: int32(app.Type),
|
|
}
|
|
if app.OIDCConfig != nil {
|
|
converted.OIDCConfig = OIDCConfigFromModel(app.OIDCConfig)
|
|
}
|
|
return converted
|
|
}
|
|
|
|
func AppToModel(app *Application) *model.Application {
|
|
converted := &model.Application{
|
|
ObjectRoot: es_models.ObjectRoot{
|
|
AggregateID: app.AggregateID,
|
|
ChangeDate: app.ChangeDate,
|
|
CreationDate: app.CreationDate,
|
|
Sequence: app.Sequence,
|
|
},
|
|
AppID: app.AppID,
|
|
Name: app.Name,
|
|
State: model.AppState(app.State),
|
|
Type: model.AppType(app.Type),
|
|
}
|
|
if app.OIDCConfig != nil {
|
|
converted.OIDCConfig = OIDCConfigToModel(app.OIDCConfig)
|
|
}
|
|
return converted
|
|
}
|
|
|
|
func (p *Project) appendAddAppEvent(event *es_models.Event) error {
|
|
app := new(Application)
|
|
err := app.setData(event)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
app.ObjectRoot.CreationDate = event.CreationDate
|
|
p.Applications = append(p.Applications, app)
|
|
return nil
|
|
}
|
|
|
|
func (p *Project) appendChangeAppEvent(event *es_models.Event) error {
|
|
app := new(Application)
|
|
err := app.setData(event)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if i, a := GetApplication(p.Applications, app.AppID); a != nil {
|
|
p.Applications[i].setData(event)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (p *Project) appendRemoveAppEvent(event *es_models.Event) error {
|
|
app := new(Application)
|
|
err := app.setData(event)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if i, a := GetApplication(p.Applications, app.AppID); a != nil {
|
|
p.Applications[i] = p.Applications[len(p.Applications)-1]
|
|
p.Applications[len(p.Applications)-1] = nil
|
|
p.Applications = p.Applications[:len(p.Applications)-1]
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (p *Project) appendAppStateEvent(event *es_models.Event, state model.AppState) error {
|
|
app := new(Application)
|
|
err := app.setData(event)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if i, a := GetApplication(p.Applications, app.AppID); a != nil {
|
|
a.State = int32(state)
|
|
p.Applications[i] = a
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (a *Application) setData(event *es_models.Event) error {
|
|
a.ObjectRoot.AppendEvent(event)
|
|
if err := json.Unmarshal(event.Data, a); err != nil {
|
|
logging.Log("EVEN-8die3").WithError(err).Error("could not unmarshal event data")
|
|
return err
|
|
}
|
|
return nil
|
|
}
|