-
Notifications
You must be signed in to change notification settings - Fork 13
/
oss.go
34 lines (27 loc) · 988 Bytes
/
oss.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
32
33
34
package registry
import (
"errors"
"github.com/latolukasz/beeorm"
"github.com/sarulabs/di"
"github.com/coretrix/hitrix/service"
"github.com/coretrix/hitrix/service/component/clock"
"github.com/coretrix/hitrix/service/component/config"
"github.com/coretrix/hitrix/service/component/oss"
)
func ServiceProviderOSS(newFunc oss.NewProviderFunc, publicNamespaces, privateNamespaces []oss.Namespace) *service.DefinitionGlobal {
return &service.DefinitionGlobal{
Name: service.OSService,
Build: func(ctn di.Container) (interface{}, error) {
ormConfig := ctn.Get(service.ORMConfigService).(beeorm.ValidatedRegistry)
entities := ormConfig.GetEntities()
if _, ok := entities["entity.OSSBucketCounterEntity"]; !ok {
return nil, errors.New("you should register OSSBucketCounterEntity")
}
return newFunc(
ctn.Get(service.ConfigService).(config.IConfig),
ctn.Get(service.ClockService).(clock.IClock),
publicNamespaces,
privateNamespaces)
},
}
}