-
Notifications
You must be signed in to change notification settings - Fork 1
/
client.go
218 lines (186 loc) · 4.48 KB
/
client.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
package nlpcloud
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"strings"
)
// HTTPError is an error type returned when the HTTP request
// is failing.
type HTTPError struct {
Detail string
Status int
}
func (h HTTPError) Error() string {
return fmt.Sprintf("http error with status %d: %v", h.Status, h.Detail)
}
func (h HTTPError) GetDetail() string {
return h.Detail
}
func (h HTTPError) GetStatusCode() int {
return h.Status
}
var _ error = (*HTTPError)(nil)
// HTTPClient defines what a HTTP client have to implement in order to get
// used by the Client.
type HTTPClient interface {
Do(*http.Request) (*http.Response, error)
}
// Makes sure the *http.Client works with the HTTPClient.
var _ HTTPClient = (*http.Client)(nil)
// Client holds the necessary information to connect to API.
type Client struct {
client HTTPClient
rootURL string
token string
}
// ClientParams wraps all the parameters for the client initialization.
type ClientParams struct {
Model string
Token string
GPU bool
Lang string
Async bool
}
// NewClient initializes a new Client.
func NewClient(client HTTPClient, clientParams ClientParams) *Client {
rootUrl := "https://api.nlpcloud.io/v1/"
if clientParams.Lang == "en" {
clientParams.Lang = ""
}
if clientParams.Lang == "eng_Latn" {
clientParams.Lang = ""
}
if clientParams.GPU {
rootUrl += "gpu/"
}
if clientParams.Async {
rootUrl += "async/"
}
if clientParams.Lang != "" {
rootUrl += clientParams.Lang + "/"
}
rootUrl += clientParams.Model
return &Client{
client: client,
rootURL: rootUrl,
token: clientParams.Token,
}
}
func (c *Client) issueRequest(method, endpoint string, params, dst interface{}, opts ...Option) error {
// Check the client is properly defined
if c.client == nil {
return errors.New("client is nil")
}
// Marshal the request body if needed (in most cases, for POST)
var buf io.Reader = nil
if params != nil {
j, err := json.Marshal(params)
if err != nil {
return err
}
buf = bytes.NewBuffer(j)
}
// Apply the options
options := &options{
Ctx: context.Background(),
}
for _, opt := range opts {
opt.apply(options)
}
// Create the request backbone
req, err := http.NewRequestWithContext(options.Ctx, method, c.rootURL+"/"+endpoint, buf)
if err != nil {
return err
}
req.Header.Set("Authorization", "Token "+c.token)
req.Header.Set("User-Agent", "nlpcloud-go-client")
// Issue the request
resp, err := c.client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return err
}
// Check for request failure
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusAccepted {
return &HTTPError{
Detail: string(body),
Status: resp.StatusCode,
}
}
// Unmarshal response
if err = json.Unmarshal(body, dst); err != nil {
return err
}
return nil
}
func (c *Client) issueStreamingRequest(method, endpoint string, params interface{}, opts ...Option) (io.ReadCloser, error) {
// Check the client is properly defined
if c.client == nil {
return nil, errors.New("client is nil")
}
// Marshal the request body if needed (in most cases, for POST)
var buf io.Reader = nil
if params != nil {
j, err := json.Marshal(params)
if err != nil {
return nil, err
}
streamingPayload := strings.TrimSuffix(string(j), "}") + `,"stream":true}`
buf = bytes.NewBuffer([]byte(streamingPayload))
}
// Apply the options
options := &options{
Ctx: context.Background(),
}
for _, opt := range opts {
opt.apply(options)
}
// Create the request backbone
req, err := http.NewRequestWithContext(options.Ctx, method, c.rootURL+"/"+endpoint, buf)
if err != nil {
return nil, err
}
req.Header.Set("Authorization", "Token "+c.token)
req.Header.Set("User-Agent", "nlpcloud-go-client")
// Issue the request
resp, err := c.client.Do(req)
if err != nil {
return nil, err
}
// Check for request failure
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusAccepted {
return nil, &HTTPError{
Status: resp.StatusCode,
}
}
return resp.Body, nil
}
type Option interface {
apply(*options)
}
type options struct {
Ctx context.Context
}
type ctxOpt struct {
ctx context.Context
}
func (opt ctxOpt) apply(opts *options) {
opts.Ctx = opt.ctx
}
// WithContext returns an Option that defines the context.Context
// to use with issuing a request.
// Default is context.Background.
func WithContext(ctx context.Context) Option {
return &ctxOpt{
ctx: ctx,
}
}