aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: ba8e5322c69324ab4bfcc0b521dba83635acb9ad (plain)
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
# mg

mg is a free and open source library for accessing the official MyAnimeList V2 API using Go. All endpoints are supported except forums as of now.

If you find any bugs, please write to me at <vidhukant@vidhukant.com>

<https://mg.vidhukant.com>

# License

Licenced under GNU General Public Licence V3

GNU GPL License: [link](https://mikunonaka.net/mg/tree/LICENSE)

Copyright (c) 2022-2023 Vidhu Kant Sharma

# Documentation

***for v1.0.1+***

*Documentation might be incomplete or buggy. If you want to submit any changes, or need any help, please feel free to contact me at the given E-mail address.*

## Initializing the mg client

There are 2 ways to authenticate with mg:
- ClientAuth

    With ClientAuth, you just need to use your MyAnimeList Client ID to access the read-only resources. 
    You cannot do actions that require logging in. To use ClientAuth, set `client.ClientAuthOnly` to `true`.
- MainAuth

    With MainAuth, you can perform actions like getting recommendations, or editing an anime/manga list.
    For this, you need to generate a Bearer token; for which a Client ID is still needed.  
    `ClientAuthOnly` must be set to `false` to use MainAuth.

Go to <https://myanimelist.net/apiconfig> to generate your very own Client ID!

Check out [this script](https://git.mikunonaka.net/mal-authtoken-generator/about/) 
to generate an auth token, whilst I work on adding this functionality to mg! 
It has been deprecated and may or may not work, but it's better than nothing!

Also check out [this guide](https://myanimelist.net/blog.php?eid=835707) for more info; or just in case if this script doesn't work!

``` go
package main

import (
    "vidhukant.com/mg"
)

func main() {
    var client mg.Client
    
    // either this
    client.MainAuth = "Bearer <your token here>"

    // or this
    client.ClientAuth = "<your client id here>"
    client.ClientAuthOnly = true

    // ...
}
```

# Anime

## Searching for an anime

`MainAuth` or `ClientAuth`

``` go
// ...

var animes []mg.Anime

params := mg.SearchParamsNew()
params.SearchString = "mushishi"

// optional; these are the default values
params.Limit = 100 // max = 100
params.Offset = 0
params.NSFW = false
params.Fields = []string{}

err := client.SearchAnime(&animes, params)
if err != nil {
    fmt.Println(err)
}

for _, anime := range animes {
    fmt.Println(anime.Title)
}

// ...
```

## Getting an anime's information

`MainAuth` or `ClientAuth`

_searching can be a bit inaccurate, if you know the anime's ID (obtain it with SearchAnime!) and want to get detailed information, use this._

``` go
// ...

var anime mg.Anime

err := client.GetAnimeById(&anime, /*anime id*/ 457, /*fields*/ []string{})
if err != nil {
    fmt.Println(err)
}

// ...
```

## Getting anime ranking list

`MainAuth` or `ClientAuth`

Accepted ranking types:
| Ranking Type               | Description             |
|----------------------------|-------------------------|
| mg.RankingTypeAll          | Top Anime Series        |
| mg.RankingTypeByPopularity | Top Anime by Popularity |
| mg.RankingTypeFavorite     | Top Favorited Anime     |
| mg.RankingTypeAiring       | Top Airing Anime        |
| mg.RankingTypeUpcoming     | Top Upcoming Anime      |
| mg.RankingTypeTV           | Top Anime TV Series     |
| mg.RankingTypeOVA          | Top Anime OVA Series    |
| mg.RankingTypeMovie        | Top Anime Movies        |
| mg.RankingTypeSpecial      | Top Anime Specials      |

## Getting seasonal animes

`MainAuth` or `ClientAuth`

Accepted seasons:
- `mg.SeasonWinter`
- `mg.SeasonSpring`
- `mg.SeasonSummer`
- `mg.SeasonFall`

Accepted sorts:
- `mg.SeasonSortByAnimeScore` (descending)
- `mg.SeasonSortByNumListUsers` (descending)


``` go
// ...

var seasonals []mg.Anime

params := mg.SeasonalParamsNew()

params.Year = "2023" // required
params.Season = mg.SeasonFall // required

// optional; these are the default values
params.Sort = mg.SeasonSortByAnimeScore
params.Limit = 100 // max = 500
params.Offset = 0
params.NSFW = false
params.Fields = []string{}

err := client.GetSeasonalAnime(&seasonals, params)
if err != nil {
    fmt.Println(err)
}

// ...
```

## Getting suggested animes

`MainAuth` only

``` go
// ...

var suggestedAnimes []mg.Anime

params := mg.SuggestedParamsNew()

// optional; these are the default values
params.Limit = 100 // max = 100
params.Offset = 0
params.NSFW = false
params.Fields = []string{}

err := client.GetSeasonalAnime(&suggestedAnimes, params)
if err != nil {
    fmt.Println(err)
}

// ...
```

## Get any user's anime list

`MainAuth` or `ClientAuth`

This returns a boolean telling us if there is a next page on this user's list. 
Simply increment the offset by the limit and create a new request in order to get the next page.

In order to get the complete list, repeat the process until `nextPageExists` becomes false.

Accepted statuses:
- `mg.ListStatusAll`
- `mg.ListStatusWatching`
- `mg.ListStatusCompleted`
- `mg.ListStatusOnHold`
- `mg.ListStatusDropped`
- `mg.ListStatusPTW`

Accepted list sorts:
- `mg.SortByListScore` (descending)
- `mg.SortByListUpdatedAt` (descending)
- `mg.SortByAnimeTitle` (ascending)
- `mg.SortByAnimeStartDate` (descending)
- `mg.SortByAnimeId` (ascending) (beta according to MAL)

``` go
// ...

var animes []mg.Anime

params := mg.ListParamsNew()

// optional; these are the default values
params.Username = "@me" // can speciy any public account
params.Status = mg.ListStatusAll
params.Sort = mg.SortByListScore
params.Limit = 100 // max = 1000
params.Offset = 0
params.NSFW = false
params.Fields = []string{}

nextPageExists, err := client.GetAnimeList(&animes, params)
if err != nil {
    fmt.Println(err)
}

// ...
```

## Updating an anime

`MainAuth` only

Updates an anime in the the currently logged in user's anime list. 
Adds the anime if it's not in the list.

Accepted statuses:
- `mg.ListStatusWatching`
- `mg.ListStatusCompleted`
- `mg.ListStatusOnHold`
- `mg.ListStatusDropped`
- `mg.ListStatusPTW`

Score range: `0` - `10`

Priority range: `0` - `2`
| Priority | Description |
|----------|-------------|
| 0        | Low         |
| 1        | Medium      |
| 2        | High        |

RewatchValue range: `0` - `5`
| RewatchValue | Description |
|--------------|-------------|
| 0            | None        |
| 1            | Very Low    |
| 2            | Low         |
| 3            | Medium      |
| 4            | High        |
| 5            | Very High   |

``` go
// ...

var res AnimeUpdateResponse

// can omit any field but keep at least 1!
params := map[string]interface{} {
    mg.Status: mg.ListStatusCompleted,
    mg.IsRewatching: false,
    mg.Score: 10,
    mg.EpisodesWatched: 26,
    mg.Priority: 2,
    mg.TimesRewatched: 2,
    mg.RewatchValue: 5,
    mg.Tags: "tags",
    mg.Comments: "comments",
}

err := client.UpdateAnime(&res, /*anime id*/ 457, params)
if err != nil {
    fmt.Println(err)
}

// ...
```

## Deleting an anime from list

`MainAuth` only

Deletes the anime from currently logged in user's anime list. 
Returns an error if anime is already not in the list.

``` go
// ...

err := client.DeleteAnime(/*anime id*/ 457)
if err != nil {
    fmt.Println(err)
}

// ...
```

# Manga

## Searching for a manga

`MainAuth` or `ClientAuth`

_also works for light novels, etc_

``` go
// ...

var mangas []mg.Manga

carams := mg.SearchParamsNew()
carams.SearchString = "empty box and zeroth maria"

// optional; these are the default values
params.Limit = 100
params.Offset = 0
params.NSFW = false
params.Fields = []string{}

err := client.SearchManga(&mangas, params)
if err != nil {
    fmt.Println(err)
}

for _, manga range mangas {
    fmt.Println(manga.Title)
}

// ...
```

## Getting a manga's information

`MainAuth` or `ClientAuth`

_searching can be a bit inaccurate, if you know the manga's ID (obtain it with SearchManga!) and want to get detailed information, use this._

``` go
// ...

var manga mg.Manga

err := client.GetMangaById(&manga, /*manga id*/ 55215, /*fields*/ []string{})
if err != nil {
    fmt.Println(err)
}

// ...
```

## Getting manga ranking list

`MainAuth` or `ClientAuth`

Accepted ranking types:
| RankingType                | Description    |
|----------------------------|----------------|
| mg.RankingTypeAll          | All            |
| mg.RankingTypeByPopularity | Most Popular   |
| mg.RankingTypeFavorite     | Most Favorited |
| mg.RankingTypeManga        | Top Manga      |
| mg.RankingTypeNovel        | Top Novels     |
| mg.RankingTypeOneShot      | Top One-shots  |
| mg.RankingTypeDoujin       | Top Doujinshi  |
| mg.RankingTypeManhwa       | Top Manhwa     |
| mg.RankingTypeManhua       | Top Manhua     |

*RankedManga is just the Manga struct with an extra field `RankNum int`*

``` go
// ...

var rankingList []mg.RankedManga

params := mg.RankingParamsNew()

// optional; these are the default values
params.RankingType = mg.RankingTypeAll
params.Limit = 100 // max = 500
params.Offset = 0
params.NSFW = false
params.Fields = []string{}

err := client.GetAnimeRanking(&rankingList, params)
if err != nil {
    fmt.Println(err)
}

// ...
```

## Get any user's manga list

`MainAuth` or `ClientAuth`

This returns a boolean telling us if there is a next page on this user's list. 
Simply increment the offset by the limit and create a new request in order to get the next page.

In order to get the complete list, repeat the process until `nextPageExists` becomes false.

Accepted statuses:
- `mg.ListStatusAll`
- `mg.ListStatusReading`
- `mg.ListStatusCompleted`
- `mg.ListStatusOnHold`
- `mg.ListStatusDropped`
- `mg.ListStatusPTR`

Accepted list sorts:
- `mg.SortByListScore` (descending)
- `mg.SortByListUpdatedAt` (descending)
- `mg.SortByMangaTitle` (ascending)
- `mg.SortByMangaStartDate` (descending)
- `mg.SortByMangaId` (ascending) (beta according to MAL)

``` go
// ...

var mangas []mg.Manga

params := mg.ListParamsNew()

// optional; these are the default values
params.Username = "@me" // can speciy any public account
params.Status = mg.ListStatusAll
params.Sort = mg.SortByListScore
params.Limit = 100 // max = 1000
params.Offset = 0
params.NSFW = false
params.Fields = []string{}

nextPageExists, err := client.GetMangaList(&mangas, params)
if err != nil {
    fmt.Println(err)
}

// ...
```

## Updating a manga

`MainAuth` only

Updates a manga in the the currently logged in user's manga list.
Adds the manga if it's not in the list.

Accepted statuses:
- `mg.ListStatusReading`
- `mg.ListStatusCompleted`
- `mg.ListStatusOnHold`
- `mg.ListStatusDropped`
- `mg.ListStatusPTR`

Score range: `0` - `10`

Priority range: `0` - `2`
| Priority | Description |
|----------|-------------|
| 0        | Low         |
| 1        | Medium      |
| 2        | High        |

RereadValue range: `0` - `5`
| RereadValue | Description |
|-------------|-------------|
| 0           | None        |
| 1           | Very Low    |
| 2           | Low         |
| 3           | Medium      |
| 4           | High        |
| 5           | Very High   |

``` go
// ...

var res MangaUpdateResponse

// can omit any field but keep at least 1!
params := map[string]interface{} {
    mg.Status: mg.ListStatusReading,
    mg.IsRereading: false,
    mg.Score: 10,
    mg.VolumesRead: 2,
    mg.ChaptersRead: 20,
    mg.Priority: 2,
    mg.TimesReread: 0,
    mg.RereadValue: 5,
    mg.Tags: "tags",
    mg.Comments: "comments",
}

err := client.UpdateManga(&res, /*manga id*/ 55215, params)
if err != nil {
    fmt.Println(err)
}

// ...
```

## Deleting a manga from list

`MainAuth` only

Deletes the manga from currently logged in user's manga list. 
Returns an error if manga is already not in the list.

``` go
// ...

err := client.DeleteManga(/*manga id*/ 55215)
if err != nil {
    fmt.Println(err)
}

// ...
```

# User

## Get logged in user's details

`MainAuth` only

MyAnimeList's official API doesn't support getting another user's details. Only the currently logged in user.

``` go
// ...

var user mg.User

// to get user's list statistics or not
getStatistics := true

err := client.GetSelfInfo(&user, getStatistics)
if err != nil {
    fmt.Println(err)
}

// ...
```