mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-28 14:59:49 -05:00
e56b23541a
Signed-off-by: Christian Richter <crichter@owncloud.com>
78 lines
2.5 KiB
Go
78 lines
2.5 KiB
Go
package grpc
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
mgrpcs "github.com/go-micro/plugins/v4/server/grpc"
|
|
"github.com/go-micro/plugins/v4/wrapper/monitoring/prometheus"
|
|
mtracer "github.com/go-micro/plugins/v4/wrapper/trace/opentelemetry"
|
|
ociscrypto "github.com/owncloud/ocis/v2/ocis-pkg/crypto"
|
|
"github.com/owncloud/ocis/v2/ocis-pkg/registry"
|
|
"go-micro.dev/v4"
|
|
"go-micro.dev/v4/client"
|
|
"go-micro.dev/v4/server"
|
|
)
|
|
|
|
// Service simply wraps the go-micro grpc service.
|
|
type Service struct {
|
|
micro.Service
|
|
}
|
|
|
|
// NewServiceWithClient initializes a new grpc service with explicit client.
|
|
func NewServiceWithClient(client client.Client, opts ...Option) (Service, error) {
|
|
var mServer server.Server
|
|
sopts := newOptions(opts...)
|
|
tlsConfig := &tls.Config{}
|
|
if sopts.TLSEnabled {
|
|
var cert tls.Certificate
|
|
var err error
|
|
if sopts.TLSCert != "" {
|
|
cert, err = tls.LoadX509KeyPair(sopts.TLSCert, sopts.TLSKey)
|
|
if err != nil {
|
|
sopts.Logger.Error().Err(err).Str("cert", sopts.TLSCert).Str("key", sopts.TLSKey).Msg("error loading server certifcate and key")
|
|
return Service{}, fmt.Errorf("grpc service error loading server certificate and key: %w", err)
|
|
}
|
|
} else {
|
|
// Generate a self-signed server certificate on the fly. This requires the clients
|
|
// to connect with InsecureSkipVerify.
|
|
cert, err = ociscrypto.GenTempCertForAddr(sopts.Address)
|
|
if err != nil {
|
|
return Service{}, fmt.Errorf("grpc service error creating temporary self-signed certificate: %w", err)
|
|
}
|
|
}
|
|
tlsConfig.Certificates = []tls.Certificate{cert}
|
|
mServer = mgrpcs.NewServer(mgrpcs.AuthTLS(tlsConfig))
|
|
} else {
|
|
mServer = mgrpcs.NewServer()
|
|
}
|
|
|
|
mopts := []micro.Option{
|
|
// first add a server because it will reset any options
|
|
micro.Server(mServer),
|
|
// also add a client that can be used after initializing the service
|
|
micro.Client(client),
|
|
micro.Address(sopts.Address),
|
|
micro.Name(strings.Join([]string{sopts.Namespace, sopts.Name}, ".")),
|
|
micro.Version(sopts.Version),
|
|
micro.Context(sopts.Context),
|
|
micro.Registry(registry.GetRegistry()),
|
|
micro.RegisterTTL(time.Second * 30),
|
|
micro.RegisterInterval(time.Second * 10),
|
|
micro.WrapHandler(prometheus.NewHandlerWrapper()),
|
|
micro.WrapClient(mtracer.NewClientWrapper(
|
|
mtracer.WithTraceProvider(sopts.TraceProvider),
|
|
)),
|
|
micro.WrapHandler(mtracer.NewHandlerWrapper(
|
|
mtracer.WithTraceProvider(sopts.TraceProvider),
|
|
)),
|
|
micro.WrapSubscriber(mtracer.NewSubscriberWrapper(
|
|
mtracer.WithTraceProvider(sopts.TraceProvider),
|
|
)),
|
|
}
|
|
|
|
return Service{micro.NewService(mopts...)}, nil
|
|
}
|