2022-03-28 09:36:04 +00:00
|
|
|
package internal
|
|
|
|
|
|
|
|
import (
|
2022-06-08 10:13:44 +00:00
|
|
|
"context"
|
2022-03-28 09:36:04 +00:00
|
|
|
"crypto/ecdsa"
|
2022-06-08 10:13:44 +00:00
|
|
|
"crypto/elliptic"
|
|
|
|
"crypto/rand"
|
2022-05-18 10:16:04 +00:00
|
|
|
"errors"
|
2022-03-28 09:36:04 +00:00
|
|
|
"fmt"
|
|
|
|
|
2022-12-23 17:35:35 +00:00
|
|
|
"github.com/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/common"
|
|
|
|
"github.com/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/commonflags"
|
2023-01-16 09:20:16 +00:00
|
|
|
commonCmd "github.com/TrueCloudLab/frostfs-node/cmd/internal/common"
|
2022-12-23 17:35:35 +00:00
|
|
|
"github.com/TrueCloudLab/frostfs-node/pkg/network"
|
|
|
|
"github.com/TrueCloudLab/frostfs-sdk-go/client"
|
2022-05-24 08:38:45 +00:00
|
|
|
"github.com/spf13/cobra"
|
2022-05-18 10:16:04 +00:00
|
|
|
"github.com/spf13/viper"
|
2022-03-28 09:36:04 +00:00
|
|
|
)
|
|
|
|
|
2022-05-18 10:16:04 +00:00
|
|
|
var errInvalidEndpoint = errors.New("provided RPC endpoint is incorrect")
|
|
|
|
|
2022-12-23 17:35:35 +00:00
|
|
|
// GetSDKClientByFlag returns default frostfs-sdk-go client using the specified flag for the address.
|
2022-05-24 08:38:45 +00:00
|
|
|
// On error, outputs to stderr of cmd and exits with non-zero code.
|
|
|
|
func GetSDKClientByFlag(cmd *cobra.Command, key *ecdsa.PrivateKey, endpointFlag string) *client.Client {
|
2022-12-27 09:36:30 +00:00
|
|
|
cli, err := getSDKClientByFlag(cmd, key, endpointFlag)
|
2022-05-24 08:38:45 +00:00
|
|
|
if err != nil {
|
2023-01-16 09:20:16 +00:00
|
|
|
commonCmd.ExitOnErr(cmd, "can't create API client: %w", err)
|
2022-05-24 08:38:45 +00:00
|
|
|
}
|
|
|
|
return cli
|
|
|
|
}
|
|
|
|
|
2022-12-27 09:36:30 +00:00
|
|
|
func getSDKClientByFlag(cmd *cobra.Command, key *ecdsa.PrivateKey, endpointFlag string) (*client.Client, error) {
|
2022-05-18 10:16:04 +00:00
|
|
|
var addr network.Address
|
|
|
|
|
|
|
|
err := addr.FromString(viper.GetString(endpointFlag))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("%v: %w", errInvalidEndpoint, err)
|
|
|
|
}
|
2022-12-27 09:36:30 +00:00
|
|
|
return GetSDKClient(cmd, key, addr)
|
2022-05-18 10:16:04 +00:00
|
|
|
}
|
|
|
|
|
2022-12-23 17:35:35 +00:00
|
|
|
// GetSDKClient returns default frostfs-sdk-go client.
|
2022-12-27 09:36:30 +00:00
|
|
|
func GetSDKClient(cmd *cobra.Command, key *ecdsa.PrivateKey, addr network.Address) (*client.Client, error) {
|
2022-03-28 09:36:04 +00:00
|
|
|
var (
|
|
|
|
c client.Client
|
|
|
|
prmInit client.PrmInit
|
|
|
|
prmDial client.PrmDial
|
|
|
|
)
|
|
|
|
|
|
|
|
prmInit.SetDefaultPrivateKey(*key)
|
|
|
|
prmInit.ResolveNeoFSFailures()
|
2022-05-04 12:34:26 +00:00
|
|
|
prmDial.SetServerURI(addr.URIAddr())
|
2022-10-05 07:39:47 +00:00
|
|
|
if timeout := viper.GetDuration(commonflags.Timeout); timeout > 0 {
|
|
|
|
// In CLI we can only set a timeout for the whole operation.
|
|
|
|
// By also setting stream timeout we ensure that no operation hands
|
|
|
|
// for too long.
|
|
|
|
prmDial.SetTimeout(timeout)
|
|
|
|
prmDial.SetStreamTimeout(timeout)
|
2022-10-25 06:05:10 +00:00
|
|
|
|
2022-12-27 09:36:30 +00:00
|
|
|
common.PrintVerbose(cmd, "Set request timeout to %s.", timeout)
|
2022-10-05 07:39:47 +00:00
|
|
|
}
|
2022-03-28 09:36:04 +00:00
|
|
|
|
|
|
|
c.Init(prmInit)
|
|
|
|
|
|
|
|
if err := c.Dial(prmDial); err != nil {
|
|
|
|
return nil, fmt.Errorf("can't init SDK client: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &c, nil
|
|
|
|
}
|
2022-06-08 10:13:44 +00:00
|
|
|
|
|
|
|
// GetCurrentEpoch returns current epoch.
|
2022-12-27 09:36:30 +00:00
|
|
|
func GetCurrentEpoch(ctx context.Context, cmd *cobra.Command, endpoint string) (uint64, error) {
|
2022-06-08 10:13:44 +00:00
|
|
|
var addr network.Address
|
|
|
|
|
|
|
|
if err := addr.FromString(endpoint); err != nil {
|
|
|
|
return 0, fmt.Errorf("can't parse RPC endpoint: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
key, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("can't generate key to sign query: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-12-27 09:36:30 +00:00
|
|
|
c, err := GetSDKClient(cmd, key, addr)
|
2022-06-08 10:13:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ni, err := c.NetworkInfo(ctx, client.PrmNetworkInfo{})
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return ni.Info().CurrentEpoch(), nil
|
|
|
|
}
|