mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-05 03:40:01 -06:00
36 lines
980 B
Go
36 lines
980 B
Go
package grpc
|
|
|
|
import (
|
|
"github.com/owncloud/ocis/ocis-pkg/service/grpc"
|
|
"github.com/owncloud/ocis/store/pkg/proto/v0"
|
|
svc "github.com/owncloud/ocis/store/pkg/service/v0"
|
|
)
|
|
|
|
// Server initializes a new go-micro service ready to run
|
|
func Server(opts ...Option) grpc.Service {
|
|
options := newOptions(opts...)
|
|
|
|
service := grpc.NewService(
|
|
grpc.Namespace(options.Config.Service.Namespace),
|
|
grpc.Name(options.Config.Service.Name),
|
|
grpc.Version(options.Config.Service.Version),
|
|
grpc.Context(options.Context),
|
|
grpc.Address(options.Config.GRPC.Addr),
|
|
grpc.Logger(options.Logger),
|
|
grpc.Flags(options.Flags...),
|
|
)
|
|
|
|
hdlr, err := svc.New(
|
|
svc.Logger(options.Logger),
|
|
svc.Config(options.Config),
|
|
)
|
|
if err != nil {
|
|
options.Logger.Fatal().Err(err).Msg("could not initialize service handler")
|
|
}
|
|
if err = proto.RegisterStoreHandler(service.Server(), hdlr); err != nil {
|
|
options.Logger.Fatal().Err(err).Msg("could not register service handler")
|
|
}
|
|
|
|
return service
|
|
}
|