-
Notifications
You must be signed in to change notification settings - Fork 22
/
admin_describe_network.go
96 lines (81 loc) · 2.58 KB
/
admin_describe_network.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package api
import (
"context"
"fmt"
vgencoding "code.vegaprotocol.io/vega/libs/encoding"
"code.vegaprotocol.io/vega/libs/jsonrpc"
"github.com/mitchellh/mapstructure"
)
type AdminDescribeNetworkParams struct {
Name string `json:"name"`
}
type AdminDescribeNetworkResult struct {
Name string `json:"name"`
LogLevel vgencoding.LogLevel `json:"logLevel"`
TokenExpiry vgencoding.Duration `json:"tokenExpiry"`
Port int `json:"port"`
Host string `json:"host"`
API struct {
GRPCConfig struct {
Hosts []string `json:"hosts"`
Retries uint64 `json:"retries"`
} `json:"grpcConfig"`
RESTConfig struct {
Hosts []string `json:"hosts"`
} `json:"restConfig"`
GraphQLConfig struct {
Hosts []string `json:"hosts"`
} `json:"graphQLConfig"`
} `json:"api"`
}
type AdminDescribeNetwork struct {
networkStore NetworkStore
}
// Handle retrieve a wallet from its name and passphrase.
func (h *AdminDescribeNetwork) Handle(_ context.Context, rawParams jsonrpc.Params, _ jsonrpc.RequestMetadata) (jsonrpc.Result, *jsonrpc.ErrorDetails) {
params, err := validateDescribeNetworkParams(rawParams)
if err != nil {
return nil, invalidParams(err)
}
if exist, err := h.networkStore.NetworkExists(params.Name); err != nil {
return nil, internalError(fmt.Errorf("could not verify the network existence: %w", err))
} else if !exist {
return nil, invalidParams(ErrNetworkDoesNotExist)
}
n, err := h.networkStore.GetNetwork(params.Name)
if err != nil {
return nil, internalError(fmt.Errorf("could not retrieve the network: %w", err))
}
resp := AdminDescribeNetworkResult{
Name: n.Name,
LogLevel: n.LogLevel,
TokenExpiry: n.TokenExpiry,
Port: n.Port,
Host: n.Host,
}
resp.API.GRPCConfig.Hosts = n.API.GRPC.Hosts
resp.API.GRPCConfig.Retries = n.API.GRPC.Retries
resp.API.RESTConfig.Hosts = n.API.REST.Hosts
resp.API.GraphQLConfig.Hosts = n.API.GraphQL.Hosts
return resp, nil
}
func validateDescribeNetworkParams(rawParams jsonrpc.Params) (AdminDescribeNetworkParams, error) {
if rawParams == nil {
return AdminDescribeNetworkParams{}, ErrParamsRequired
}
params := AdminDescribeNetworkParams{}
if err := mapstructure.Decode(rawParams, ¶ms); err != nil {
return AdminDescribeNetworkParams{}, ErrParamsDoNotMatch
}
if params.Name == "" {
return AdminDescribeNetworkParams{}, ErrNetworkNameIsRequired
}
return params, nil
}
func NewAdminDescribeNetwork(
networkStore NetworkStore,
) *AdminDescribeNetwork {
return &AdminDescribeNetwork{
networkStore: networkStore,
}
}