-
Notifications
You must be signed in to change notification settings - Fork 3
/
users.go
401 lines (369 loc) · 11 KB
/
users.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
package jikan
import (
"fmt"
"net/url"
"time"
)
// UsersBase struct
type UsersBase struct {
MalId int `json:"mal_id"`
Username string `json:"username"`
Url string `json:"url"`
Images Images1 `json:"images"`
LastOnline time.Time `json:"last_online"`
Gender string `json:"gender"`
Birthday time.Time `json:"birthday"`
Location string `json:"location"`
Joined time.Time `json:"joined"`
}
// UsersSearch struct
type UsersSearch struct {
Data []struct {
Username string `json:"username"`
Url string `json:"url"`
Images Images1 `json:"images"`
LastOnline time.Time `json:"last_online"`
} `json:"data"`
Pagination Pagination `json:"pagination"`
}
// GetUsersSearch returns users search
func GetUsersSearch(query url.Values) (*UsersSearch, error) {
res := &UsersSearch{}
err := urlToStruct(fmt.Sprintf("/users?%s", query.Encode()), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserByID struct
type UserByID struct {
Data UsersBase `json:"data"`
}
// GetUserByID returns user by id
func GetUserByID(id int) (*UserByID, error) {
res := &UserByID{}
err := urlToStruct(fmt.Sprintf("/users/userbyid/%d", id), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserProfile struct
type UserProfile struct {
MalId int `json:"mal_id"`
Username string `json:"username"`
Url string `json:"url"`
Images Images1 `json:"images"`
LastOnline time.Time `json:"last_online"`
Gender string `json:"gender"`
Birthday time.Time `json:"birthday"`
Location string `json:"location"`
Joined time.Time `json:"joined"`
}
// GetUserProfile returns user profile
func GetUserProfile(username string) (*UserProfile, error) {
res := &UserProfile{}
err := urlToStruct(fmt.Sprintf("/users/%s",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserStatistics struct
type UserStatistics struct {
Data struct {
Anime struct {
DaysWatched float64 `json:"days_watched"`
MeanScore float64 `json:"mean_score"`
Watching int `json:"watching"`
Completed int `json:"completed"`
OnHold int `json:"on_hold"`
Dropped int `json:"dropped"`
PlanToWatch int `json:"plan_to_watch"`
TotalEntries int `json:"total_entries"`
Rewatched int `json:"rewatched"`
EpisodesWatched int `json:"episodes_watched"`
} `json:"anime"`
Manga struct {
DaysRead float64 `json:"days_read"`
MeanScore float64 `json:"mean_score"`
Reading int `json:"reading"`
Completed int `json:"completed"`
OnHold int `json:"on_hold"`
Dropped int `json:"dropped"`
PlanToRead int `json:"plan_to_read"`
TotalEntries int `json:"total_entries"`
Reread int `json:"reread"`
ChaptersRead int `json:"chapters_read"`
VolumesRead int `json:"volumes_read"`
} `json:"manga"`
} `json:"data"`
}
// GetUserStatistics returns user statistics
func GetUserStatistics(username string) (*UserStatistics, error) {
res := &UserStatistics{}
err := urlToStruct(fmt.Sprintf("/users/%s/statistics",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserFavorites struct
type UserFavorites struct {
Data struct {
Anime []struct {
Type string `json:"type"`
StartYear int `json:"start_year"`
MalId int `json:"mal_id"`
Url string `json:"url"`
Images Images3 `json:"images"`
Title string `json:"title"`
} `json:"anime"`
Manga []struct {
Type string `json:"type"`
StartYear int `json:"start_year"`
MalId int `json:"mal_id"`
Url string `json:"url"`
Images Images3 `json:"images"`
Title string `json:"title"`
} `json:"manga"`
Characters []struct {
MalId int `json:"mal_id"`
Url string `json:"url"`
Images Images2 `json:"images"`
Name string `json:"name"`
} `json:"characters"`
People []EntryName2 `json:"people"`
} `json:"data"`
}
// GetUserFavorites returns user favorites
func GetUserFavorites(username string) (*UserFavorites, error) {
res := &UserFavorites{}
err := urlToStruct(fmt.Sprintf("/users/%s/favorites",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserUpdates struct
type UserUpdates struct {
Data struct {
Anime []struct {
Entry EntryTitle3 `json:"entry"`
Score float64 `json:"score"`
Status string `json:"status"`
EpisodesSeen int `json:"episodes_seen"`
EpisodesTotal int `json:"episodes_total"`
Date time.Time `json:"date"`
} `json:"anime"`
Manga []struct {
Entry EntryTitle3 `json:"entry"`
Score float64 `json:"score"`
Status string `json:"status"`
ChaptersRead int `json:"chapters_read"`
ChaptersTotal int `json:"chapters_total"`
VolumesRead int `json:"volumes_read"`
VolumesTotal int `json:"volumes_total"`
Date time.Time `json:"date"`
} `json:"manga"`
} `json:"data"`
}
// GetUserUpdates returns user updates
func GetUserUpdates(username string) (*UserUpdates, error) {
res := &UserUpdates{}
err := urlToStruct(fmt.Sprintf("/users/%s/userupdates",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserAbout struct
type UserAbout struct {
Data struct {
About string `json:"about"`
} `json:"data"`
}
// GetUserAbout returns user about
func GetUserAbout(username string) (*UserAbout, error) {
res := &UserAbout{}
err := urlToStruct(fmt.Sprintf("/users/%s/about",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserHistory struct
type UserHistory struct {
Data []struct {
Entry MalItem `json:"entry"`
Increment int `json:"increment"`
Date time.Time `json:"date"`
} `json:"data"`
}
type UserHistoryFilter string
const (
UserHistoryFilterAnime UserHistoryFilter = "anime"
UserHistoryFilterManga UserHistoryFilter = "manga"
)
// GetUserHistory returns user history
func GetUserHistory(username string, filter UserHistoryFilter) (*UserHistory, error) {
res := &UserHistory{}
req := fmt.Sprintf("/users/%s/history", url.QueryEscape(username))
if filter != "" {
req += fmt.Sprintf("?type=%s", filter)
}
err := urlToStruct(req, res)
if err != nil {
return nil, err
}
return res, nil
}
// UserFriends struct
type UserFriends struct {
Data []struct {
User UserItem `json:"user"`
LastOnline time.Time `json:"last_online"`
FriendsSince time.Time `json:"friends_since"`
} `json:"data"`
Pagination Pagination `json:"pagination"`
}
// GetUserFriends returns user friends
func GetUserFriends(username string) (*UserFriends, error) {
res := &UserFriends{}
err := urlToStruct(fmt.Sprintf("/users/%s/friends",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserAnimelist struct
// Deprecated: Anime lists will be discontinued from May 1st, 2022.
type UserAnimelist struct {
Data []struct {
WatchingStatus int `json:"watching_status"`
Score float64 `json:"score"`
EpisodesWatched int `json:"episodes_watched"`
Tags string `json:"tags"`
IsRewatching bool `json:"is_rewatching"`
WatchStartDate time.Time `json:"watch_start_date"`
WatchEndDate time.Time `json:"watch_end_date"`
Days int `json:"days"`
Storage string `json:"storage"`
Priority string `json:"priority"`
Anime AnimeBase `json:"anime"`
} `json:"data"`
}
// GetUserAnimelist returns user animelist
// Deprecated: Anime lists will be discontinued from May 1st, 2022.
func GetUserAnimelist(username string) (*UserAnimelist, error) {
res := &UserAnimelist{}
err := urlToStruct(fmt.Sprintf("/users/%s/animelist",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserMangalist struct
// Deprecated: Manga lists will be discontinued from May 1st, 2022.
type UserMangalist struct {
Data []struct {
ReadingStatus int `json:"reading_status"`
Score float64 `json:"score"`
ChaptersRead int `json:"chapters_read"`
VolumesRead int `json:"volumes_read"`
Tags string `json:"tags"`
IsRereading bool `json:"is_rereading"`
ReadStartDate time.Time `json:"read_start_date"`
ReadEndDate time.Time `json:"read_end_date"`
Days int `json:"days"`
Retail int `json:"retail"`
Priority string `json:"priority"`
Manga MangaBase `json:"manga"`
} `json:"data"`
}
// GetUserMangalist returns user mangalist
// Deprecated: Manga lists will be discontinued from May 1st, 2022.
func GetUserMangalist(username string) (*UserMangalist, error) {
res := &UserMangalist{}
err := urlToStruct(fmt.Sprintf("/users/%s/mangalist",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserReviews struct
type UserReviews struct {
Data []struct {
MalId int `json:"mal_id"`
Url string `json:"url"`
Type string `json:"type"`
Votes int `json:"votes"`
Date time.Time `json:"date"`
Review string `json:"review"`
ChaptersRead int `json:"chapters_read"`
Scores ScoresLong `json:"scores"`
Entry EntryTitle3 `json:"entry"`
EpisodesWatched int `json:"episodes_watched"`
} `json:"data"`
Pagination Pagination `json:"pagination"`
}
// GetUserReviews returns user reviews
func GetUserReviews(username string) (*UserReviews, error) {
res := &UserReviews{}
err := urlToStruct(fmt.Sprintf("/users/%s/reviews",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserRecommendations struct
type UserRecommendations struct {
Data []struct {
MalId string `json:"mal_id"`
Entry []EntryTitle3 `json:"entry"`
Content string `json:"content"`
User struct {
Url string `json:"url"`
Username string `json:"username"`
} `json:"user"`
} `json:"data"`
Pagination Pagination `json:"pagination"`
}
// GetUserRecommendations returns user recommendations
func GetUserRecommendations(username string) (*UserRecommendations, error) {
res := &UserRecommendations{}
err := urlToStruct(fmt.Sprintf("/users/%s/recommendations",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}
// UserClubs struct
type UserClubs struct {
Data []struct {
MalId int `json:"mal_id"`
Name string `json:"name"`
Url string `json:"url"`
} `json:"data"`
Pagination Pagination `json:"pagination"`
}
// GetUserClubs returns user clubs
func GetUserClubs(username string) (*UserClubs, error) {
res := &UserClubs{}
err := urlToStruct(fmt.Sprintf("/users/%s/clubs",
url.QueryEscape(username)), res)
if err != nil {
return nil, err
}
return res, nil
}