-
Notifications
You must be signed in to change notification settings - Fork 0
/
source.go
executable file
·140 lines (116 loc) · 3.53 KB
/
source.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
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
package fabra
import (
"context"
"fmt"
"github.com/fabra-io/go-sdk/pkg/models/operations"
"github.com/fabra-io/go-sdk/pkg/models/shared"
"github.com/fabra-io/go-sdk/pkg/utils"
"net/http"
"strings"
)
// source - Operations on sources
type source struct {
defaultClient HTTPClient
securityClient HTTPClient
serverURL string
language string
sdkVersion string
genVersion string
}
func newSource(defaultClient, securityClient HTTPClient, serverURL, language, sdkVersion, genVersion string) *source {
return &source{
defaultClient: defaultClient,
securityClient: securityClient,
serverURL: serverURL,
language: language,
sdkVersion: sdkVersion,
genVersion: genVersion,
}
}
// CreateSource - Create a new source
func (s *source) CreateSource(ctx context.Context, request shared.SourceInput) (*operations.CreateSourceResponse, error) {
baseURL := s.serverURL
url := strings.TrimSuffix(baseURL, "/") + "/source"
bodyReader, reqContentType, err := utils.SerializeRequestBody(ctx, request, "Request", "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, "POST", 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.CreateSourceResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *operations.CreateSource200ApplicationJSON
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.CreateSource200ApplicationJSONObject = out
}
case httpRes.StatusCode == 401:
fallthrough
case httpRes.StatusCode == 500:
}
return res, nil
}
// GetSources - Get all sources
func (s *source) GetSources(ctx context.Context) (*operations.GetSourcesResponse, error) {
baseURL := s.serverURL
url := strings.TrimSuffix(baseURL, "/") + "/sources"
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.GetSourcesResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *operations.GetSources200ApplicationJSON
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.GetSources200ApplicationJSONObject = out
}
case httpRes.StatusCode == 401:
fallthrough
case httpRes.StatusCode == 500:
}
return res, nil
}