-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapping.go
executable file
·148 lines (125 loc) · 3.88 KB
/
mapping.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
package formance
import (
"context"
"fmt"
"github.com/speakeasy-sdks/formance-go-sdk/pkg/models/operations"
"github.com/speakeasy-sdks/formance-go-sdk/pkg/models/shared"
"github.com/speakeasy-sdks/formance-go-sdk/pkg/utils"
"net/http"
)
type mapping struct {
defaultClient HTTPClient
securityClient HTTPClient
serverURL string
language string
sdkVersion string
genVersion string
}
func newMapping(defaultClient, securityClient HTTPClient, serverURL, language, sdkVersion, genVersion string) *mapping {
return &mapping{
defaultClient: defaultClient,
securityClient: securityClient,
serverURL: serverURL,
language: language,
sdkVersion: sdkVersion,
genVersion: genVersion,
}
}
// GetMapping - Get the mapping of a ledger
func (s *mapping) GetMapping(ctx context.Context, request operations.GetMappingRequest) (*operations.GetMappingResponse, error) {
baseURL := s.serverURL
url := utils.GenerateURL(ctx, baseURL, "/api/ledger/{ledger}/mapping", request, nil)
req, err := http.NewRequestWithContext(ctx, "GET", url, nil)
if err != nil {
return nil, fmt.Errorf("error creating request: %w", err)
}
client := s.securityClient
httpRes, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("error sending request: %w", err)
}
if httpRes == nil {
return nil, fmt.Errorf("error sending request: no response")
}
defer httpRes.Body.Close()
contentType := httpRes.Header.Get("Content-Type")
res := &operations.GetMappingResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *shared.MappingResponse
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.MappingResponse = out
}
default:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *shared.ErrorResponse
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.ErrorResponse = out
}
}
return res, nil
}
// UpdateMapping - Update the mapping of a ledger
func (s *mapping) UpdateMapping(ctx context.Context, request operations.UpdateMappingRequest) (*operations.UpdateMappingResponse, error) {
baseURL := s.serverURL
url := utils.GenerateURL(ctx, baseURL, "/api/ledger/{ledger}/mapping", request, nil)
bodyReader, reqContentType, err := utils.SerializeRequestBody(ctx, request, "Mapping", "json")
if err != nil {
return nil, fmt.Errorf("error serializing request body: %w", err)
}
if bodyReader == nil {
return nil, fmt.Errorf("request body is required")
}
req, err := http.NewRequestWithContext(ctx, "PUT", url, bodyReader)
if err != nil {
return nil, fmt.Errorf("error creating request: %w", err)
}
req.Header.Set("Content-Type", reqContentType)
client := s.securityClient
httpRes, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("error sending request: %w", err)
}
if httpRes == nil {
return nil, fmt.Errorf("error sending request: no response")
}
defer httpRes.Body.Close()
contentType := httpRes.Header.Get("Content-Type")
res := &operations.UpdateMappingResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *shared.MappingResponse
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.MappingResponse = out
}
default:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *shared.ErrorResponse
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.ErrorResponse = out
}
}
return res, nil
}