mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-06 06:26:47 +00:00

* refactor: switch from opencensus to opentelemetry * tempo works as designed nooooot * fix: log traceids * with grafana agent * fix: http tracing * fix: cleanup files * chore: remove todo * fix: bad test * fix: ignore methods in grpc interceptors * fix: remove test log * clean up * typo * fix(config): configure tracing endpoint * fix(span): add error id to span * feat: metrics package * feat: metrics package * fix: counter * fix: metric * try metrics * fix: coutner metrics * fix: active sessin counter * fix: active sessin counter * fix: change current Sequence table * fix: change current Sequence table * fix: current sequences * fix: spooler div metrics * fix: console view * fix: merge master * fix: Last spool run on search result instead of eventtimestamp * fix: go mod * Update console/src/assets/i18n/de.json Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: pr review * fix: map * update oidc pkg * fix: handlers * fix: value observer * fix: remove fmt * fix: handlers * fix: tests * fix: handler minimum cycle duration 1s * fix(spooler): handler channel buffer * fix interceptors Co-authored-by: adlerhurst <silvan.reusser@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
75 lines
2.2 KiB
Go
75 lines
2.2 KiB
Go
package handler
|
|
|
|
import (
|
|
"github.com/caos/logging"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
|
"github.com/caos/zitadel/internal/eventstore/spooler"
|
|
"github.com/caos/zitadel/internal/iam/repository/eventsourcing/model"
|
|
iam_model "github.com/caos/zitadel/internal/iam/repository/view/model"
|
|
)
|
|
|
|
type LoginPolicy struct {
|
|
handler
|
|
}
|
|
|
|
const (
|
|
loginPolicyTable = "adminapi.login_policies"
|
|
)
|
|
|
|
func (p *LoginPolicy) ViewModel() string {
|
|
return loginPolicyTable
|
|
}
|
|
|
|
func (p *LoginPolicy) EventQuery() (*models.SearchQuery, error) {
|
|
sequence, err := p.view.GetLatestLoginPolicySequence()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return es_models.NewSearchQuery().
|
|
AggregateTypeFilter(model.IAMAggregate).
|
|
LatestSequenceFilter(sequence.CurrentSequence), nil
|
|
}
|
|
|
|
func (p *LoginPolicy) Reduce(event *models.Event) (err error) {
|
|
switch event.AggregateType {
|
|
case model.IAMAggregate:
|
|
err = p.processLoginPolicy(event)
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (p *LoginPolicy) processLoginPolicy(event *models.Event) (err error) {
|
|
policy := new(iam_model.LoginPolicyView)
|
|
switch event.Type {
|
|
case model.LoginPolicyAdded:
|
|
err = policy.AppendEvent(event)
|
|
case model.LoginPolicyChanged,
|
|
model.LoginPolicySecondFactorAdded,
|
|
model.LoginPolicySecondFactorRemoved,
|
|
model.LoginPolicyMultiFactorAdded,
|
|
model.LoginPolicyMultiFactorRemoved:
|
|
policy, err = p.view.LoginPolicyByAggregateID(event.AggregateID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = policy.AppendEvent(event)
|
|
default:
|
|
return p.view.ProcessedLoginPolicySequence(event.Sequence, event.CreationDate)
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return p.view.PutLoginPolicy(policy, policy.Sequence, event.CreationDate)
|
|
}
|
|
|
|
func (p *LoginPolicy) OnError(event *models.Event, err error) error {
|
|
logging.LogWithFields("SPOOL-Wj8sf", "id", event.AggregateID).WithError(err).Warn("something went wrong in login policy handler")
|
|
return spooler.HandleError(event, err, p.view.GetLatestLoginPolicyFailedEvent, p.view.ProcessedLoginPolicyFailedEvent, p.view.ProcessedLoginPolicySequence, p.errorCountUntilSkip)
|
|
}
|
|
|
|
func (p *LoginPolicy) OnSuccess() error {
|
|
return spooler.HandleSuccess(p.view.UpdateLoginPolicySpoolerRunTimestamp)
|
|
}
|