-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhttp.go
417 lines (341 loc) · 10.8 KB
/
http.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
package revoltgo
import (
"bytes"
"fmt"
"github.com/goccy/go-json"
"io"
"mime/multipart"
"net/http"
"net/url"
"strconv"
"sync"
"time"
)
// todo: use http.NewRequestWithContext() for timeouts, maybe make it configurable via Session
// if err = json.NewDecoder(response.Body).Decode(result); err != nil {
// return fmt.Errorf("request: json.Decode: %s", err)
// }
// todo: decode unless 204, use result to show body
// todo: revisit bufferPool usage
var bufferPool = sync.Pool{
New: func() any {
return new(bytes.Buffer)
},
}
func (s *Session) request(method, destination string, data, result any) error {
rl := s.Ratelimiter.get(method, destination)
if !rl.resetAfter.IsZero() {
if wait := rl.delay(); wait > 0 {
time.Sleep(wait)
}
}
reader, contentType, err := prepareRequestBody(data)
if err != nil {
return err
}
request, err := http.NewRequest(method, destination, reader)
if err != nil {
return err
}
// Set request headers
request.Header.Set("User-Agent", s.UserAgent)
request.Header.Set("Content-Type", contentType)
if s.Selfbot() {
request.Header.Set("X-Session-Token", s.Token)
} else {
request.Header.Set("X-Bot-Token", s.Token)
}
response, err := s.HTTP.Do(request)
if err != nil {
return err
}
defer response.Body.Close()
if err = rl.update(response.Header); err != nil {
return err
}
// Process response based on status code
return handleResponse(response.StatusCode, response.Body, result)
}
// prepareRequestBody prepares an appropriate request body and determines the content type
func prepareRequestBody(body any) (io.Reader, string, error) {
if body == nil {
return http.NoBody, "application/json", nil
}
if data, ok := body.(*File); ok {
return prepareFileUpload(data)
}
return prepareJSONBody(body)
}
// prepareFileUpload prepares a multipart form for uploading a file
func prepareFileUpload(file *File) (io.Reader, string, error) {
body := new(bytes.Buffer)
writer := multipart.NewWriter(body)
part, err := writer.CreateFormFile("file", file.Name)
if err != nil {
return nil, "", fmt.Errorf("writer.CreateFormFile: %w", err)
}
if _, err = io.Copy(part, file.Reader); err != nil {
return nil, "", fmt.Errorf("io.Copy: %w", err)
}
if err = writer.Close(); err != nil {
return nil, "", fmt.Errorf("writer.Close: %w", err)
}
return body, writer.FormDataContentType(), nil
}
// prepareJSONBody encodes data as JSON
func prepareJSONBody(data any) (io.Reader, string, error) {
buffer := bufferPool.Get().(*bytes.Buffer)
buffer.Reset()
if err := json.NewEncoder(buffer).Encode(data); err != nil {
bufferPool.Put(buffer)
return nil, "", fmt.Errorf("json.Encode: %w", err)
}
reader := bytes.NewReader(buffer.Bytes())
bufferPool.Put(buffer)
return reader, "application/json", nil
}
// handleResponse processes the API response
func handleResponse(statusCode int, body io.Reader, result any) error {
switch statusCode {
case http.StatusNoContent:
return nil
case http.StatusOK, http.StatusCreated:
if err := json.NewDecoder(body).Decode(result); err != nil {
return fmt.Errorf("handleResponse: %w", err)
}
default:
const limit = 1024
message, _ := io.ReadAll(io.LimitReader(body, limit))
return fmt.Errorf("bad status code %d: %s", statusCode, message)
}
return nil
}
type RevoltAPI struct {
Revolt string `json:"revolt"`
Features struct {
Captcha struct {
Enabled bool `json:"enabled"`
Key string `json:"key"`
} `json:"captcha"`
Email bool `json:"email"`
InviteOnly bool `json:"invite_only"`
Autumn struct {
Enabled bool `json:"enabled"`
URL string `json:"url"`
} `json:"autumn"`
January struct {
Enabled bool `json:"enabled"`
URL string `json:"url"`
} `json:"january"`
Voso struct {
Enabled bool `json:"enabled"`
URL string `json:"url"`
WS string `json:"ws"`
} `json:"voso"`
} `json:"features"`
WS string `json:"ws"`
App string `json:"app"`
VapID string `json:"vapid"`
Build struct {
CommitSha string `json:"commit_sha"`
CommitTimestamp string `json:"commit_timestamp"`
SemVer string `json:"semver"`
OriginURL string `json:"origin_url"`
Timestamp string `json:"timestamp"`
} `json:"build"`
}
type LoginData struct {
Email string `json:"email"`
Password string `json:"password"`
FriendlyName string `json:"friendly_name"`
}
type BotEditData struct {
Name string `json:"name"`
Public bool `json:"public"`
Analytics bool `json:"analytics"`
InteractionsURL string `json:"interactions_url"`
Remove []string `json:"remove"`
}
type BotInviteData struct {
Server string `json:"server"`
Group string `json:"group"`
}
type BotCreateData struct {
Name string `json:"name"`
}
type AccountCreateData struct {
Email string `json:"email"`
Password string `json:"password"`
Invite string `json:"invite"`
Captcha string `json:"captcha"`
}
type AccountReverifyData struct {
Email string `json:"email"`
Captcha string `json:"captcha"`
}
type OnboardingCompleteData struct {
Username string `json:"username"`
}
type SessionEditData struct {
FriendlyName string `json:"friendly_name"`
}
type PasswordResetConfirmData struct {
Token string `json:"token"`
Password string `json:"password"`
// Whether to log out of all sessions
RemoveSessions bool `json:"remove_sessions"`
}
type AccountChangePasswordData struct {
Password string `json:"password"`
CurrentPassword string `json:"current_password"`
}
type AccountChangeEmailData struct {
Email string `json:"email"`
CurrentPassword string `json:"current_password"`
}
type AccountDeleteConfirmData struct {
Token string `json:"token"`
}
type UserEditData struct {
DisplayName string `json:"display_name"`
Avatar string `json:"avatar"`
Status *UserStatus `json:"status"`
Profile *UserProfile `json:"profile"`
Badges int `json:"badges"`
Flags int `json:"flags"`
Remove []string `json:"remove"`
}
type UsernameData struct {
Username string `json:"username"`
Password string `json:"password"`
}
// GroupCreateData describes how a group should be created
type GroupCreateData struct {
Name string `json:"name"`
Description string `json:"description,omitempty"`
Users []string `json:"users"`
NSFW bool `json:"nsfw"`
}
type ServerCreateData struct {
Name string `json:"name"`
Description string `json:"description,omitempty"`
}
type ServerEditDataRemove string
const (
ServerEditDataRemoveIcon ServerEditDataRemove = "Icon"
ServerEditDataRemoveBanner ServerEditDataRemove = "Banner"
ServerEditDataRemoveCategories ServerEditDataRemove = "Categories"
ServerEditDataRemoveDescription ServerEditDataRemove = "Description"
ServerEditDataRemoveSystemMessages ServerEditDataRemove = "SystemMessages"
)
type ServerEditData struct {
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
Icon string `json:"icon,omitempty"`
Banner string `json:"banner,omitempty"`
Categories []*ServerCategory `json:"categories,omitempty"`
SystemMessages *ServerSystemMessages `json:"system_messages,omitempty"`
Flags int `json:"flags,omitempty"`
Discoverable *bool `json:"discoverable,omitempty"`
Analytics *bool `json:"analytics,omitempty"`
Remove []ServerEditDataRemove `json:"remove"`
}
type ServerChannelCreateDataType string
const (
ServerChannelCreateDataTypeText ServerChannelCreateDataType = "Text"
ServerChannelCreateDataTypeVoice ServerChannelCreateDataType = "Voice"
)
type ServerChannelCreateData struct {
Type ServerChannelCreateDataType `json:"type"`
Name string `json:"name"`
Description string `json:"description,omitempty"`
NSFW bool `json:"nsfw,omitempty"`
}
type ServerMemberEditData struct {
Nickname string `json:"nickname"`
Avatar string `json:"avatar"`
Roles []string `json:"roles"`
Timeout time.Time `json:"timeout"`
Remove []string `json:"remove"`
}
type MessageEditData struct {
Content string `json:"content,omitempty"`
Embeds []*MessageEmbed `json:"embeds,omitempty"`
}
type EmojiCreateData struct {
Name string `json:"name"`
Parent *EmojiParent `json:"parent"`
Nsfw bool `json:"nsfw"`
}
type ChannelMessagesParamsSortType string
const (
ChannelMessagesParamsSortTypeRelevance ChannelMessagesParamsSortType = "Relevance"
ChannelMessagesParamsSortTypeOldest ChannelMessagesParamsSortType = "Oldest"
ChannelMessagesParamsSortTypeLatest ChannelMessagesParamsSortType = "Latest"
)
type ChannelMessagesParams struct {
// Maximum number of messages to fetch. For nearby messages, this is (limit + 1)
Limit int `json:"limit,omitempty"`
// Message ID before which messages should be fetched
Before string `json:"before,omitempty"`
// Message ID after which messages should be fetched
After string `json:"after,omitempty"`
// Message sort direction
Sort ChannelMessagesParamsSortType `json:"sort,omitempty"`
// Message ID to search around. Specifying this ignores Before, After, and Sort
Nearby string `json:"nearby,omitempty"`
// Whether to include user (and member, if server channel) objects
IncludeUsers bool `json:"include_users,omitempty"`
}
func (p ChannelMessagesParams) Encode() string {
values := url.Values{}
if p.Limit != 0 {
values.Set("limit", strconv.Itoa(p.Limit))
}
if p.Before != "" {
values.Set("before", p.Before)
}
if p.After != "" {
values.Set("after", p.After)
}
if p.Sort != "" {
values.Set("sort", string(p.Sort))
}
if p.Nearby != "" {
values.Set("nearby", p.Nearby)
}
if p.IncludeUsers {
values.Set("include_users", fmt.Sprint(p.IncludeUsers))
}
return values.Encode()
}
type ServerRoleEditData struct {
Name string `json:"name"`
Colour string `json:"colour"`
Hoist bool `json:"hoist"`
Rank int `json:"rank"`
Remove []string `json:"remove"`
}
type ServerRoleCreateData struct {
Name string `json:"name"`
Rank int `json:"rank"`
}
type PermissionsSetDefaultData struct {
Permissions uint `json:"permissions"`
}
type ChannelMessageBulkDeleteData struct {
IDs []string `json:"ids"`
}
type ChannelEditData struct {
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
Owner string `json:"owner,omitempty"`
Icon string `json:"icon,omitempty"`
Nsfw bool `json:"nsfw,omitempty"`
Archived bool `json:"archived,omitempty"`
Remove []string `json:"remove"`
}
type SyncSettingsData map[string]UpdateTuple
type SyncSettingsFetchData struct {
Keys []string `json:"keys"`
}