forked from andersfylling/disgord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest_user.go
246 lines (216 loc) · 8.01 KB
/
rest_user.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
package disgord
import (
"errors"
"net/http"
"strconv"
"github.com/andersfylling/disgord/endpoint"
"github.com/andersfylling/disgord/httd"
)
func ratelimitUsers() string {
return "u"
}
// GetCurrentUser [GET] Returns the user object of the requester's account. For OAuth2, this requires
// the identify scope, which will return the object without an email, and optionally
// the email scope, which returns the object with an email.
// Endpoint /users/@me
// Rate limiter /users
// Discord documentation https://discordapp.com/developers/docs/resources/user#get-current-user
// Reviewed 2018-06-10
// Comment -
func GetCurrentUser(client httd.Getter) (ret *User, err error) {
_, body, err := client.Get(&httd.Request{
Ratelimiter: ratelimitUsers(),
Endpoint: endpoint.UserMe(),
})
if err != nil {
return
}
err = unmarshal(body, &ret)
return
}
// GetUser [GET] Returns a user object for a given user Snowflake.
// Endpoint /users/{user.id}
// Rate limiter /users
// Discord documentation https://discordapp.com/developers/docs/resources/user#get-user
// Reviewed 2018-06-10
// Comment -
func GetUser(client httd.Getter, id Snowflake) (ret *User, err error) {
_, body, err := client.Get(&httd.Request{
Ratelimiter: ratelimitUsers(),
Endpoint: endpoint.User(id),
})
if err != nil {
return
}
err = unmarshal(body, &ret)
return
}
// ModifyCurrentUserParams JSON params for func ModifyCurrentUser
type ModifyCurrentUserParams struct {
Username string `json:"username,omitempty"`
Avatar string `json:"avatar,omitempty"`
}
// ModifyCurrentUser [PATCH] Modify the requester's user account settings. Returns a user object on success.
// Endpoint /users/@me
// Rate limiter /users
// Discord documentation https://discordapp.com/developers/docs/resources/user#modify-current-user
// Reviewed 2018-06-10
// Comment -
func ModifyCurrentUser(client httd.Patcher, params *ModifyCurrentUserParams) (ret *User, err error) {
_, body, err := client.Patch(&httd.Request{
Ratelimiter: ratelimitUsers(),
Endpoint: endpoint.UserMe(),
JSONParams: params,
ContentType: httd.ContentTypeJSON,
})
if err != nil {
return
}
err = unmarshal(body, &ret)
return
}
// GetCurrentUserGuildsParams JSON params for func GetCurrentUserGuilds
type GetCurrentUserGuildsParams struct {
Before Snowflake `urlparam:"before,omitempty"`
After Snowflake `urlparam:"after,omitempty"`
Limit int `urlparam:"limit,omitempty"`
}
// GetQueryString .
func (params *GetCurrentUserGuildsParams) GetQueryString() string {
separator := "?"
query := ""
if !params.Before.Empty() {
query += separator + "before=" + params.Before.String()
separator = "&"
}
if !params.After.Empty() {
query += separator + "after=" + params.After.String()
separator = "&"
}
if params.Limit > 0 {
query += separator + "limit=" + strconv.Itoa(params.Limit)
}
return query
}
// GetCurrentUserGuilds [GET] Returns a list of partial guild objects the current user is a member of.
// Requires the guilds OAuth2 scope.
// Endpoint /users/@me/guilds
// Rate limiter /users TODO: is this correct?
// Discord documentation https://discordapp.com/developers/docs/resources/user#get-current-user-guilds
// Reviewed 2018-06-10
// Comment This endpoint. returns 100 guilds by default, which is the maximum number of
// guilds a non-bot user can join. Therefore, pagination is not needed for
// integrations that need to get a list of users' guilds.
func GetCurrentUserGuilds(client httd.Getter, params *GetCurrentUserGuildsParams) (ret []*Guild, err error) {
_, body, err := client.Get(&httd.Request{
Ratelimiter: ratelimitUsers(),
Endpoint: endpoint.UserMeGuilds() + params.GetQueryString(),
})
if err != nil {
return
}
err = unmarshal(body, &ret)
return
}
// LeaveGuild [DELETE] Leave a guild. Returns a 204 empty response on success.
// Endpoint /users/@me/guilds/{guild.id}
// Rate limiter /users TODO: is this correct?
// Discord documentation https://discordapp.com/developers/docs/resources/user#leave-guild
// Reviewed 2018-06-10
// Comment -
func LeaveGuild(client httd.Deleter, id Snowflake) (err error) {
resp, _, err := client.Delete(&httd.Request{
Ratelimiter: ratelimitUsers(),
Endpoint: endpoint.UserMeGuild(id),
})
if err != nil {
return
}
if resp.StatusCode != http.StatusNoContent {
msg := "unexpected http response code. Got " + resp.Status + ", wants " + http.StatusText(http.StatusNoContent)
err = errors.New(msg)
}
return
}
// GetUserDMs [GET] Returns a list of DM channel objects.
// Endpoint /users/@me/channels
// Rate limiter /users TODO: is this correct?
// Discord documentation https://discordapp.com/developers/docs/resources/user#get-user-dms
// Reviewed 2018-06-10
// Comment -
func GetUserDMs(client httd.Getter) (ret []*Channel, err error) {
_, body, err := client.Get(&httd.Request{
Ratelimiter: ratelimitUsers(),
Endpoint: endpoint.UserMeChannels(),
})
if err != nil {
return
}
err = unmarshal(body, &ret)
return
}
// BodyUserCreateDM JSON param for func CreateDM
type BodyUserCreateDM struct {
RecipientID Snowflake `json:"recipient_id"`
}
// CreateDM [POST] Create a new DM channel with a user. Returns a DM channel object.
// Endpoint /users/@me/channels
// Rate limiter /users TODO: is this correct?
// Discord documentation https://discordapp.com/developers/docs/resources/user#create-dm
// Reviewed 2018-06-10
// Comment -
// TODO: review
func CreateDM(client httd.Poster, recipientID Snowflake) (ret *Channel, err error) {
_, body, err := client.Post(&httd.Request{
Ratelimiter: ratelimitUsers(),
Endpoint: endpoint.UserMeChannels(),
JSONParams: &BodyUserCreateDM{recipientID},
})
if err != nil {
return
}
err = unmarshal(body, &ret)
return
}
// CreateGroupDMParams JSON params for func CreateGroupDM
// https://discordapp.com/developers/docs/resources/user#create-group-dm
type CreateGroupDMParams struct {
AccessTokens []string `json:"access_tokens"` // access tokens of users that have granted your app the gdm.join scope
Nicks map[Snowflake]string `json:"nicks"` // userID => nickname
}
// CreateGroupDM [POST] Create a new group DM channel with multiple users. Returns a DM channel object.
// Endpoint /users/@me/channels
// Rate limiter /users TODO: is this correct?
// Discord documentation https://discordapp.com/developers/docs/resources/user#create-group-dm
// Reviewed 2018-06-10
// Comment -
func CreateGroupDM(client httd.Poster, params *CreateGroupDMParams) (ret *Channel, err error) {
_, body, err := client.Post(&httd.Request{
Ratelimiter: ratelimitUsers(),
Endpoint: endpoint.UserMeChannels(),
JSONParams: params,
ContentType: httd.ContentTypeJSON,
})
if err != nil {
return
}
err = unmarshal(body, &ret)
return
}
// GetUserConnections [GET] Returns a list of connection objects. Requires the connections OAuth2 scope.
// Endpoint /users/@me/connections
// Rate limiter /users TODO: is this correct?
// Discord documentation https://discordapp.com/developers/docs/resources/user#get-user-connections
// Reviewed 2018-06-10
// Comment -
func GetUserConnections(client httd.Getter) (ret []*UserConnection, err error) {
_, body, err := client.Get(&httd.Request{
Ratelimiter: ratelimitUsers(),
Endpoint: endpoint.UserMeConnections(),
})
if err != nil {
return
}
err = unmarshal(body, &ret)
return
}