mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
139 lines
4.1 KiB
Go
139 lines
4.1 KiB
Go
package subservers
|
|
|
|
import (
|
|
"context"
|
|
|
|
restProxy "github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
|
|
"github.com/lightninglabs/faraday"
|
|
"github.com/lightninglabs/faraday/frdrpc"
|
|
"github.com/lightninglabs/faraday/frdrpcserver"
|
|
"github.com/lightninglabs/faraday/frdrpcserver/perms"
|
|
"github.com/lightninglabs/lndclient"
|
|
"github.com/lightninglabs/taproot-assets/fn"
|
|
"github.com/lightningnetwork/lnd/lnrpc"
|
|
"google.golang.org/grpc"
|
|
"gopkg.in/macaroon-bakery.v2/bakery"
|
|
)
|
|
|
|
// faradaySubServer implements the SubServer interface.
|
|
type faradaySubServer struct {
|
|
*frdrpcserver.RPCServer
|
|
|
|
remote bool
|
|
cfg *faraday.Config
|
|
remoteCfg *RemoteDaemonConfig
|
|
}
|
|
|
|
// A compile-time check to ensure that faradaySubServer implements SubServer.
|
|
var _ SubServer = (*faradaySubServer)(nil)
|
|
|
|
// NewFaradaySubServer returns a new faraday implementation of the SubServer
|
|
// interface.
|
|
func NewFaradaySubServer(cfg *faraday.Config, rpcCfg *frdrpcserver.Config,
|
|
remoteCfg *RemoteDaemonConfig, remote bool) SubServer {
|
|
|
|
return &faradaySubServer{
|
|
RPCServer: frdrpcserver.NewRPCServer(rpcCfg),
|
|
cfg: cfg,
|
|
remoteCfg: remoteCfg,
|
|
remote: remote,
|
|
}
|
|
}
|
|
|
|
// Name returns the name of the sub-server.
|
|
//
|
|
// NOTE: this is part of the SubServer interface.
|
|
func (f *faradaySubServer) Name() string {
|
|
return FARADAY
|
|
}
|
|
|
|
// Remote returns true if the sub-server is running remotely and so
|
|
// should be connected to instead of spinning up an integrated server.
|
|
//
|
|
// NOTE: this is part of the SubServer interface.
|
|
func (f *faradaySubServer) Remote() bool {
|
|
return f.remote
|
|
}
|
|
|
|
// RemoteConfig returns the config required to connect to the sub-server
|
|
// if it is running in remote mode.
|
|
//
|
|
// NOTE: this is part of the SubServer interface.
|
|
func (f *faradaySubServer) RemoteConfig() *RemoteDaemonConfig {
|
|
return f.remoteCfg
|
|
}
|
|
|
|
// Start starts the sub-server in integrated mode.
|
|
//
|
|
// NOTE: this is part of the SubServer interface.
|
|
func (f *faradaySubServer) Start(_ lnrpc.LightningClient,
|
|
lndGrpc *lndclient.GrpcLndServices, withMacaroonService bool) error {
|
|
|
|
return f.StartAsSubserver(
|
|
lndGrpc.LndServices, withMacaroonService,
|
|
)
|
|
}
|
|
|
|
// RegisterGrpcService must register the sub-server's GRPC server with the given
|
|
// registrar.
|
|
//
|
|
// NOTE: this is part of the SubServer interface.
|
|
func (f *faradaySubServer) RegisterGrpcService(service grpc.ServiceRegistrar) {
|
|
frdrpc.RegisterFaradayServerServer(service, f)
|
|
}
|
|
|
|
// RegisterRestService registers the sub-server's REST handlers with the given
|
|
// endpoint.
|
|
//
|
|
// NOTE: this is part of the SubServer interface.
|
|
func (f *faradaySubServer) RegisterRestService(ctx context.Context,
|
|
mux *restProxy.ServeMux, endpoint string,
|
|
dialOpts []grpc.DialOption) error {
|
|
|
|
return frdrpc.RegisterFaradayServerHandlerFromEndpoint(
|
|
ctx, mux, endpoint, dialOpts,
|
|
)
|
|
}
|
|
|
|
// ServerErrChan returns an error channel that should be listened on after
|
|
// starting the sub-server to listen for any runtime errors. It is optional and
|
|
// may be set to nil. This only applies in integrated mode.
|
|
//
|
|
// NOTE: this is part of the SubServer interface.
|
|
func (f *faradaySubServer) ServerErrChan() chan error {
|
|
return nil
|
|
}
|
|
|
|
// MacPath returns the path to the sub-server's macaroon if it is not running in
|
|
// remote mode.
|
|
//
|
|
// NOTE: this is part of the SubServer interface.
|
|
func (f *faradaySubServer) MacPath() string {
|
|
return f.cfg.MacaroonPath
|
|
}
|
|
|
|
// Permissions returns a map of all RPC methods and their required macaroon
|
|
// permissions to access the sub-server.
|
|
//
|
|
// NOTE: this is part of the SubServer interface.
|
|
func (f *faradaySubServer) Permissions() map[string][]bakery.Op {
|
|
return perms.RequiredPermissions
|
|
}
|
|
|
|
// WhiteListedURLs returns a map of all the sub-server's URLs that can be
|
|
// accessed without a macaroon.
|
|
//
|
|
// NOTE: this is part of the SubServer interface.
|
|
func (f *faradaySubServer) WhiteListedURLs() map[string]struct{} {
|
|
return nil
|
|
}
|
|
|
|
// Impl returns the actual implementation of the sub-server. This might not be
|
|
// set if the sub-server is running in remote mode.
|
|
func (f *faradaySubServer) Impl() fn.Option[any] {
|
|
if f.RPCServer == nil {
|
|
return fn.None[any]()
|
|
}
|
|
|
|
return fn.Some[any](f.RPCServer)
|
|
}
|