-
Notifications
You must be signed in to change notification settings - Fork 22
/
admin_describe_permissions.go
84 lines (68 loc) · 2.25 KB
/
admin_describe_permissions.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
package api
import (
"context"
"errors"
"fmt"
"code.vegaprotocol.io/vega/libs/jsonrpc"
"code.vegaprotocol.io/vega/wallet/wallet"
"github.com/mitchellh/mapstructure"
)
type AdminDescribePermissionsParams struct {
Wallet string `json:"wallet"`
Passphrase string `json:"passphrase"`
Hostname string `json:"hostname"`
}
type AdminDescribePermissionsResult struct {
Permissions wallet.Permissions `json:"permissions"`
}
type AdminDescribePermissions struct {
walletStore WalletStore
}
// Handle retrieves permissions set for the specified wallet and hostname.
func (h *AdminDescribePermissions) Handle(ctx context.Context, rawParams jsonrpc.Params, _ jsonrpc.RequestMetadata) (jsonrpc.Result, *jsonrpc.ErrorDetails) {
params, err := validateDescribePermissionsParams(rawParams)
if err != nil {
return nil, invalidParams(err)
}
if exist, err := h.walletStore.WalletExists(ctx, params.Wallet); err != nil {
return nil, internalError(fmt.Errorf("could not verify the wallet existence: %w", err))
} else if !exist {
return nil, invalidParams(ErrWalletDoesNotExist)
}
w, err := h.walletStore.GetWallet(ctx, params.Wallet, params.Passphrase)
if err != nil {
if errors.Is(err, wallet.ErrWrongPassphrase) {
return nil, invalidParams(err)
}
return nil, internalError(fmt.Errorf("could not retrieve the wallet: %w", err))
}
return AdminDescribePermissionsResult{
Permissions: w.Permissions(params.Hostname),
}, nil
}
func validateDescribePermissionsParams(rawParams jsonrpc.Params) (AdminDescribePermissionsParams, error) {
if rawParams == nil {
return AdminDescribePermissionsParams{}, ErrParamsRequired
}
params := AdminDescribePermissionsParams{}
if err := mapstructure.Decode(rawParams, ¶ms); err != nil {
return AdminDescribePermissionsParams{}, ErrParamsDoNotMatch
}
if params.Wallet == "" {
return AdminDescribePermissionsParams{}, ErrWalletIsRequired
}
if params.Hostname == "" {
return AdminDescribePermissionsParams{}, ErrHostnameIsRequired
}
if params.Passphrase == "" {
return AdminDescribePermissionsParams{}, ErrPassphraseIsRequired
}
return params, nil
}
func NewAdminDescribePermissions(
walletStore WalletStore,
) *AdminDescribePermissions {
return &AdminDescribePermissions{
walletStore: walletStore,
}
}