-
Notifications
You must be signed in to change notification settings - Fork 13
/
feature_flag.go
31 lines (26 loc) · 1.07 KB
/
feature_flag.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package registry
import (
"errors"
"github.com/coretrix/hitrix/service"
errorlogger "github.com/coretrix/hitrix/service/component/error_logger"
featureflag "github.com/coretrix/hitrix/service/component/feature_flag"
"github.com/latolukasz/beeorm"
"github.com/sarulabs/di"
)
type FeatureFlagRegistryInitFunc func(flagInterface featureflag.ServiceFeatureFlagInterface)
func ServiceProviderFeatureFlag(registry FeatureFlagRegistryInitFunc) *service.DefinitionGlobal {
return &service.DefinitionGlobal{
Name: service.FeatureFlagService,
Build: func(ctn di.Container) (interface{}, error) {
ormConfig := ctn.Get(service.ORMConfigService).(beeorm.ValidatedRegistry)
entities := ormConfig.GetEntities()
if _, ok := entities["entity.FeatureFlagEntity"]; !ok {
return nil, errors.New("you should register FeatureFlagEntity")
}
errorLoggerService := ctn.Get(service.ErrorLoggerService).(errorlogger.ErrorLogger)
featureFlagService := featureflag.NewFeatureFlagService(errorLoggerService)
registry(featureFlagService)
return featureFlagService, nil
},
}
}