2024-02-28 08:55:54 +00:00
|
|
|
package query
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
|
|
"github.com/zitadel/zitadel/internal/feature"
|
|
|
|
)
|
|
|
|
|
|
|
|
type FeatureSource[T any] struct {
|
|
|
|
Level feature.Level
|
|
|
|
Value T
|
|
|
|
}
|
|
|
|
|
|
|
|
type SystemFeatures struct {
|
|
|
|
Details *domain.ObjectDetails
|
|
|
|
|
|
|
|
LoginDefaultOrg FeatureSource[bool]
|
|
|
|
TriggerIntrospectionProjections FeatureSource[bool]
|
|
|
|
LegacyIntrospection FeatureSource[bool]
|
2024-03-12 13:50:13 +00:00
|
|
|
UserSchema FeatureSource[bool]
|
2024-02-28 08:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (q *Queries) GetSystemFeatures(ctx context.Context) (_ *SystemFeatures, err error) {
|
|
|
|
m := NewSystemFeaturesReadModel()
|
|
|
|
if err := q.eventstore.FilterToQueryReducer(ctx, m); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
m.system.Details = readModelToObjectDetails(m.ReadModel)
|
|
|
|
return m.system, nil
|
|
|
|
}
|