-
Notifications
You must be signed in to change notification settings - Fork 22
/
admin_describe_api_token.go
75 lines (61 loc) · 1.91 KB
/
admin_describe_api_token.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
package api
import (
"context"
"fmt"
"time"
"code.vegaprotocol.io/vega/libs/jsonrpc"
"github.com/mitchellh/mapstructure"
)
type AdminDescribeAPITokenParams struct {
Token string `json:"token"`
}
type AdminDescribeAPITokenResult struct {
Token string `json:"token"`
Description string `json:"description"`
Wallet string `json:"wallet"`
CreatedAt time.Time `json:"createdAt"`
}
type AdminDescribeAPIToken struct {
tokenStore TokenStore
}
// Handle describes a long-living API token and its configuration.
func (h *AdminDescribeAPIToken) Handle(_ context.Context, rawParams jsonrpc.Params, _ jsonrpc.RequestMetadata) (jsonrpc.Result, *jsonrpc.ErrorDetails) {
params, err := validateAdminDescribeAPITokenParams(rawParams)
if err != nil {
return nil, invalidParams(err)
}
if exist, err := h.tokenStore.TokenExists(params.Token); err != nil {
return nil, internalError(fmt.Errorf("could not verify the token existence: %w", err))
} else if !exist {
return nil, invalidParams(ErrTokenDoesNotExist)
}
token, err := h.tokenStore.GetToken(params.Token)
if err != nil {
return nil, internalError(fmt.Errorf("could not retrieve the token: %w", err))
}
return AdminDescribeAPITokenResult{
Token: token.Token,
Description: token.Description,
Wallet: token.Wallet.Name,
}, nil
}
func validateAdminDescribeAPITokenParams(rawParams jsonrpc.Params) (AdminDescribeAPITokenParams, error) {
if rawParams == nil {
return AdminDescribeAPITokenParams{}, ErrParamsRequired
}
params := AdminDescribeAPITokenParams{}
if err := mapstructure.Decode(rawParams, ¶ms); err != nil {
return AdminDescribeAPITokenParams{}, ErrParamsDoNotMatch
}
if params.Token == "" {
return AdminDescribeAPITokenParams{}, ErrTokenIsRequired
}
return params, nil
}
func NewAdminDescribeAPIToken(
tokenStore TokenStore,
) *AdminDescribeAPIToken {
return &AdminDescribeAPIToken{
tokenStore: tokenStore,
}
}