25154720bd
* identity: remove redis and bolt dependencies * identity: move revDB creation to main files
57 lines
1.7 KiB
Go
57 lines
1.7 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package server
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zeebo/errs"
|
|
"go.uber.org/zap"
|
|
"google.golang.org/grpc"
|
|
|
|
"storj.io/storj/pkg/identity"
|
|
"storj.io/storj/pkg/peertls/extensions"
|
|
"storj.io/storj/pkg/peertls/tlsopts"
|
|
)
|
|
|
|
// Config holds server specific configuration parameters
|
|
type Config struct {
|
|
tlsopts.Config
|
|
Address string `user:"true" help:"public address to listen on" default:":7777"`
|
|
PrivateAddress string `user:"true" help:"private address to listen on" default:"127.0.0.1:7778"`
|
|
DebugLogTraffic bool `user:"true" help:"log all GRPC traffic to zap logger" default:"false"`
|
|
}
|
|
|
|
// Run will run the given responsibilities with the configured identity.
|
|
func (sc Config) Run(ctx context.Context, log *zap.Logger, identity *identity.FullIdentity, revDB extensions.RevocationDB, interceptor grpc.UnaryServerInterceptor, services ...Service) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
// Ensure revDB is not nil, since we call Close() below we do not want a
|
|
// panic
|
|
if revDB == nil {
|
|
return Error.New("revDB cannot be nil in call to Run")
|
|
}
|
|
|
|
opts, err := tlsopts.NewOptions(identity, sc.Config, revDB)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer func() { err = errs.Combine(err, opts.RevDB.Close()) }()
|
|
|
|
server, err := New(log.Named("server"), opts, sc.Address, sc.PrivateAddress, interceptor, services...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
go func() {
|
|
<-ctx.Done()
|
|
if closeErr := server.Close(); closeErr != nil {
|
|
log.Sugar().Errorf("Failed to close server: %s", closeErr)
|
|
}
|
|
}()
|
|
|
|
log.Sugar().Infof("Node %s started on %s", server.Identity().ID, sc.Address)
|
|
return server.Run(ctx)
|
|
}
|