mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-16 04:48:04 +00:00
041af26917
# Which Problems Are Solved Currently ZITADEL supports RP-initiated logout for clients. Back-channel logout ensures that user sessions are terminated across all connected applications, even if the user closes their browser or loses connectivity providing a more secure alternative for certain use cases. # How the Problems Are Solved If the feature is activated and the client used for the authentication has a back_channel_logout_uri configured, a `session_logout.back_channel` will be registered. Once a user terminates their session, a (notification) handler will send a SET (form POST) to the registered uri containing a logout_token (with the user's ID and session ID). - A new feature "back_channel_logout" is added on system and instance level - A `back_channel_logout_uri` can be managed on OIDC applications - Added a `session_logout` aggregate to register and inform about sent `back_channel` notifications - Added a `SecurityEventToken` channel and `Form`message type in the notification handlers - Added `TriggeredAtOrigin` fields to `HumanSignedOut` and `TerminateSession` events for notification handling - Exported various functions and types in the `oidc` package to be able to reuse for token signing in the back_channel notifier. - To prevent that current existing session termination events will be handled, a setup step is added to set the `current_states` for the `projections.notifications_back_channel_logout` to the current position - [x] requires https://github.com/zitadel/oidc/pull/671 # Additional Changes - Updated all OTEL dependencies to v1.29.0, since OIDC already updated some of them to that version. - Single Session Termination feature is correctly checked (fixed feature mapping) # Additional Context - closes https://github.com/zitadel/zitadel/issues/8467 - TODO: - Documentation - UI to be done: https://github.com/zitadel/zitadel/issues/8469 --------- Co-authored-by: Hidde Wieringa <hidde@hiddewieringa.nl>
124 lines
3.9 KiB
Go
124 lines
3.9 KiB
Go
package projection
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
old_handler "github.com/zitadel/zitadel/internal/eventstore/handler"
|
|
"github.com/zitadel/zitadel/internal/eventstore/handler/v2"
|
|
"github.com/zitadel/zitadel/internal/feature"
|
|
"github.com/zitadel/zitadel/internal/repository/feature/feature_v2"
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
|
)
|
|
|
|
const (
|
|
SystemFeatureTable = "projections.system_features"
|
|
|
|
SystemFeatureKeyCol = "key"
|
|
SystemFeatureCreationDateCol = "creation_date"
|
|
SystemFeatureChangeDateCol = "change_date"
|
|
SystemFeatureSequenceCol = "sequence"
|
|
SystemFeatureValueCol = "value"
|
|
)
|
|
|
|
type systemFeatureProjection struct{}
|
|
|
|
func newSystemFeatureProjection(ctx context.Context, config handler.Config) *handler.Handler {
|
|
return handler.NewHandler(ctx, &config, new(systemFeatureProjection))
|
|
}
|
|
|
|
func (*systemFeatureProjection) Name() string {
|
|
return SystemFeatureTable
|
|
}
|
|
|
|
func (*systemFeatureProjection) Init() *old_handler.Check {
|
|
return handler.NewTableCheck(handler.NewTable(
|
|
[]*handler.InitColumn{
|
|
handler.NewColumn(SystemFeatureKeyCol, handler.ColumnTypeText),
|
|
handler.NewColumn(SystemFeatureCreationDateCol, handler.ColumnTypeTimestamp),
|
|
handler.NewColumn(SystemFeatureChangeDateCol, handler.ColumnTypeTimestamp),
|
|
handler.NewColumn(SystemFeatureSequenceCol, handler.ColumnTypeInt64),
|
|
handler.NewColumn(SystemFeatureValueCol, handler.ColumnTypeJSONB),
|
|
},
|
|
handler.NewPrimaryKey(SystemFeatureKeyCol),
|
|
))
|
|
}
|
|
|
|
func (*systemFeatureProjection) Reducers() []handler.AggregateReducer {
|
|
return []handler.AggregateReducer{{
|
|
Aggregate: feature_v2.AggregateType,
|
|
EventReducers: []handler.EventReducer{
|
|
{
|
|
Event: feature_v2.SystemResetEventType,
|
|
Reduce: reduceSystemResetFeatures,
|
|
},
|
|
{
|
|
Event: feature_v2.SystemLoginDefaultOrgEventType,
|
|
Reduce: reduceSystemSetFeature[bool],
|
|
},
|
|
{
|
|
Event: feature_v2.SystemTriggerIntrospectionProjectionsEventType,
|
|
Reduce: reduceSystemSetFeature[bool],
|
|
},
|
|
{
|
|
Event: feature_v2.SystemLegacyIntrospectionEventType,
|
|
Reduce: reduceSystemSetFeature[bool],
|
|
},
|
|
{
|
|
Event: feature_v2.SystemUserSchemaEventType,
|
|
Reduce: reduceSystemSetFeature[bool],
|
|
},
|
|
{
|
|
Event: feature_v2.SystemTokenExchangeEventType,
|
|
Reduce: reduceSystemSetFeature[bool],
|
|
},
|
|
{
|
|
Event: feature_v2.SystemActionsEventType,
|
|
Reduce: reduceSystemSetFeature[bool],
|
|
},
|
|
{
|
|
Event: feature_v2.SystemImprovedPerformanceEventType,
|
|
Reduce: reduceSystemSetFeature[[]feature.ImprovedPerformanceType],
|
|
},
|
|
{
|
|
Event: feature_v2.SystemDisableUserTokenEvent,
|
|
Reduce: reduceSystemSetFeature[bool],
|
|
},
|
|
{
|
|
Event: feature_v2.SystemEnableBackChannelLogout,
|
|
Reduce: reduceSystemSetFeature[bool],
|
|
},
|
|
},
|
|
}}
|
|
}
|
|
|
|
func reduceSystemSetFeature[T any](event eventstore.Event) (*handler.Statement, error) {
|
|
e, ok := event.(*feature_v2.SetEvent[T])
|
|
if !ok {
|
|
return nil, zerrors.ThrowInvalidArgumentf(nil, "PROJE-uPh8O", "reduce.wrong.event.type %T", event)
|
|
}
|
|
f, err := e.FeatureJSON()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
columns := []handler.Column{
|
|
handler.NewCol(SystemFeatureKeyCol, f.Key.String()),
|
|
handler.NewCol(SystemFeatureCreationDateCol, handler.OnlySetValueOnInsert(SystemFeatureTable, e.CreationDate())),
|
|
handler.NewCol(SystemFeatureChangeDateCol, e.CreationDate()),
|
|
handler.NewCol(SystemFeatureSequenceCol, e.Sequence()),
|
|
handler.NewCol(SystemFeatureValueCol, f.Value),
|
|
}
|
|
return handler.NewUpsertStatement(e, columns[0:1], columns), nil
|
|
}
|
|
|
|
func reduceSystemResetFeatures(event eventstore.Event) (*handler.Statement, error) {
|
|
e, ok := event.(*feature_v2.ResetEvent)
|
|
if !ok {
|
|
return nil, zerrors.ThrowInvalidArgumentf(nil, "PROJE-roo6A", "reduce.wrong.event.type %T", event)
|
|
}
|
|
return handler.NewDeleteStatement(e, []handler.Condition{
|
|
// Hack: need at least one condition or the query builder will throw us an error
|
|
handler.NewIsNotNullCond(SystemFeatureKeyCol),
|
|
}), nil
|
|
}
|