mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 05:47:32 +00:00
ed0bc39ea4
* docs: fix init description typos * feat: block instances using limits * translate * unit tests * fix translations * redirect /ui/login * fix http interceptor * cleanup * fix http interceptor * fix: delete cookies on gateway 200 * add integration tests * add command test * docs * fix integration tests * add bulk api and integration test * optimize bulk set limits * unit test bulk limits * fix broken link * fix assets middleware * fix broken link * validate instance id format * Update internal/eventstore/search_query.go Co-authored-by: Livio Spring <livio.a@gmail.com> * remove support for owner bulk limit commands * project limits to instances * migrate instances projection * Revert "migrate instances projection" This reverts commit 214218732a56e6df823beac1972adfcf8beeded5. * join limits, remove owner * remove todo * use optional bool * normally validate instance ids * use 302 * cleanup * cleanup * Update internal/api/grpc/system/limits_converter.go Co-authored-by: Livio Spring <livio.a@gmail.com> * remove owner * remove owner from reset --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
82 lines
2.2 KiB
Go
82 lines
2.2 KiB
Go
package command
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
"github.com/zitadel/zitadel/internal/repository/limits"
|
|
)
|
|
|
|
type limitsWriteModel struct {
|
|
eventstore.WriteModel
|
|
rollingAggregateID string
|
|
auditLogRetention *time.Duration
|
|
block *bool
|
|
}
|
|
|
|
// newLimitsWriteModel aggregateId is filled by reducing unit matching events
|
|
func newLimitsWriteModel(instanceId string) *limitsWriteModel {
|
|
return &limitsWriteModel{
|
|
WriteModel: eventstore.WriteModel{
|
|
InstanceID: instanceId,
|
|
ResourceOwner: instanceId,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (wm *limitsWriteModel) Query() *eventstore.SearchQueryBuilder {
|
|
query := eventstore.NewSearchQueryBuilder(eventstore.ColumnsEvent).
|
|
ResourceOwner(wm.ResourceOwner).
|
|
InstanceID(wm.InstanceID).
|
|
AddQuery().
|
|
AggregateTypes(limits.AggregateType).
|
|
EventTypes(
|
|
limits.SetEventType,
|
|
limits.ResetEventType,
|
|
)
|
|
|
|
return query.Builder()
|
|
}
|
|
|
|
func (wm *limitsWriteModel) Reduce() error {
|
|
for _, event := range wm.Events {
|
|
wm.ChangeDate = event.CreatedAt()
|
|
switch e := event.(type) {
|
|
case *limits.SetEvent:
|
|
wm.rollingAggregateID = e.Aggregate().ID
|
|
if e.AuditLogRetention != nil {
|
|
wm.auditLogRetention = e.AuditLogRetention
|
|
}
|
|
if e.Block != nil {
|
|
wm.block = e.Block
|
|
}
|
|
case *limits.ResetEvent:
|
|
wm.rollingAggregateID = ""
|
|
wm.auditLogRetention = nil
|
|
wm.block = nil
|
|
}
|
|
}
|
|
if err := wm.WriteModel.Reduce(); err != nil {
|
|
return err
|
|
}
|
|
// wm.WriteModel.Reduce() sets the aggregateID to the first event's aggregateID, but we need the last one
|
|
wm.AggregateID = wm.rollingAggregateID
|
|
return nil
|
|
}
|
|
|
|
// NewChanges returns all changes that need to be applied to the aggregate.
|
|
// nil properties in setLimits are ignored
|
|
func (wm *limitsWriteModel) NewChanges(setLimits *SetLimits) (changes []limits.LimitsChange) {
|
|
if setLimits == nil {
|
|
return nil
|
|
}
|
|
changes = make([]limits.LimitsChange, 0, 1)
|
|
if setLimits.AuditLogRetention != nil && (wm.auditLogRetention == nil || *wm.auditLogRetention != *setLimits.AuditLogRetention) {
|
|
changes = append(changes, limits.ChangeAuditLogRetention(setLimits.AuditLogRetention))
|
|
}
|
|
if setLimits.Block != nil && (wm.block == nil || *wm.block != *setLimits.Block) {
|
|
changes = append(changes, limits.ChangeBlock(setLimits.Block))
|
|
}
|
|
return changes
|
|
}
|