mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
b5564572bc
This implementation increases parallel write capabilities of the eventstore. Please have a look at the technical advisories: [05](https://zitadel.com/docs/support/advisory/a10005) and [06](https://zitadel.com/docs/support/advisory/a10006). The implementation of eventstore.push is rewritten and stored events are migrated to a new table `eventstore.events2`. If you are using cockroach: make sure that the database user of ZITADEL has `VIEWACTIVITY` grant. This is used to query events.
99 lines
2.0 KiB
Go
99 lines
2.0 KiB
Go
package instance
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
)
|
|
|
|
const (
|
|
ProjectSetEventType eventstore.EventType = "instance.iam.project.set"
|
|
ConsoleSetEventType eventstore.EventType = "instance.iam.console.set"
|
|
)
|
|
|
|
type ProjectSetEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
ProjectID string `json:"iamProjectId"`
|
|
}
|
|
|
|
func (e *ProjectSetEvent) Payload() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *ProjectSetEvent) UniqueConstraints() []*eventstore.UniqueConstraint {
|
|
return nil
|
|
}
|
|
|
|
func NewIAMProjectSetEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
projectID string,
|
|
) *ProjectSetEvent {
|
|
return &ProjectSetEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
ProjectSetEventType,
|
|
),
|
|
ProjectID: projectID,
|
|
}
|
|
}
|
|
|
|
func ProjectSetMapper(event eventstore.Event) (eventstore.Event, error) {
|
|
e := &ProjectSetEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
err := event.Unmarshal(e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "IAM-cdFZH", "unable to unmarshal global org set")
|
|
}
|
|
|
|
return e, nil
|
|
}
|
|
|
|
type ConsoleSetEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
ClientID string `json:"clientId"`
|
|
AppID string `json:"appId"`
|
|
}
|
|
|
|
func (e *ConsoleSetEvent) Payload() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *ConsoleSetEvent) UniqueConstraints() []*eventstore.UniqueConstraint {
|
|
return nil
|
|
}
|
|
|
|
func NewIAMConsoleSetEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
clientID,
|
|
appID *string,
|
|
) *ConsoleSetEvent {
|
|
return &ConsoleSetEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
ConsoleSetEventType,
|
|
),
|
|
ClientID: *clientID,
|
|
AppID: *appID,
|
|
}
|
|
}
|
|
|
|
func ConsoleSetMapper(event eventstore.Event) (eventstore.Event, error) {
|
|
e := &ConsoleSetEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
err := event.Unmarshal(e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "IAM-cdFZH", "unable to unmarshal console set")
|
|
}
|
|
|
|
return e, nil
|
|
}
|