Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
3b208aeeaf | |||
![]() |
bfc0e5c417 | ||
![]() |
e6183ddfa3 | ||
![]() |
1591816684 | ||
![]() |
8ce29414f4 | ||
![]() |
faa5474d22 | ||
![]() |
de98e6f444 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
api_test.go
|
8
api.go
8
api.go
@ -49,6 +49,10 @@ func request[T any](api *Api, query string, vars map[string]interface{}, respObj
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
if resp.StatusCode != 200 {
|
||||
return handleError(resp)
|
||||
}
|
||||
|
||||
//data, _ := ioutil.ReadAll(resp.Body)
|
||||
//fmt.Println(string(data))
|
||||
|
||||
@ -90,6 +94,10 @@ func requestPaged[R any](api *Api, ctx context.Context, query string, vars map[s
|
||||
return
|
||||
}
|
||||
|
||||
if resp.Data.Page == nil {
|
||||
return
|
||||
}
|
||||
|
||||
for _, value := range resp.Data.Page.Data() {
|
||||
value := value
|
||||
select {
|
||||
|
32
api_error.go
Normal file
32
api_error.go
Normal file
@ -0,0 +1,32 @@
|
||||
package anilist
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
type apiError struct {
|
||||
Message string `json:"message"`
|
||||
Status int `json:"status"`
|
||||
}
|
||||
|
||||
type apiErrResp struct {
|
||||
Errors []apiError `json:"errors"`
|
||||
}
|
||||
|
||||
func handleError(resp *http.Response) error {
|
||||
respObj := &apiErrResp{}
|
||||
|
||||
dec := json.NewDecoder(resp.Body)
|
||||
err := dec.Decode(respObj)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if len(respObj.Errors) == 0 {
|
||||
return errors.New("unknown API error")
|
||||
}
|
||||
|
||||
return errors.New(respObj.Errors[0].Message)
|
||||
}
|
2
go.mod
2
go.mod
@ -1,3 +1,3 @@
|
||||
module git.tordarus.net/Tordarus/anilist
|
||||
module git.tordarus.net/tordarus/anilist
|
||||
|
||||
go 1.18
|
||||
|
34
types.go
34
types.go
@ -9,8 +9,10 @@ type User struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
}
|
||||
|
||||
type MediaID int
|
||||
|
||||
type Media struct {
|
||||
ID int `json:"id"`
|
||||
ID MediaID `json:"id"`
|
||||
Title MediaTitle `json:"title"`
|
||||
Type MediaType `json:"type"`
|
||||
Format MediaFormat `json:"format"`
|
||||
@ -113,10 +115,12 @@ const (
|
||||
MediaSourcePictureBook MediaSource = "PICTURE_BOOK"
|
||||
)
|
||||
|
||||
type MediaTrailerID string
|
||||
|
||||
type MediaTrailer struct {
|
||||
ID string `json:"id"`
|
||||
Site string `json:"site"`
|
||||
Thumbnail string `json:"thumbnail"`
|
||||
ID MediaTrailerID `json:"id"`
|
||||
Site string `json:"site"`
|
||||
Thumbnail string `json:"thumbnail"`
|
||||
}
|
||||
|
||||
type MediaCoverImage struct {
|
||||
@ -126,8 +130,10 @@ type MediaCoverImage struct {
|
||||
Color string `json:"color"`
|
||||
}
|
||||
|
||||
type MediaTagID int
|
||||
|
||||
type MediaTag struct {
|
||||
ID int `json:"id"`
|
||||
MediaTagID int `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Description string `json:"description"`
|
||||
Category string `json:"category"`
|
||||
@ -173,10 +179,12 @@ func (d Seconds) Duration() time.Duration {
|
||||
return time.Duration(d) * time.Second
|
||||
}
|
||||
|
||||
type MediaListID int
|
||||
|
||||
type MediaList struct {
|
||||
ID int `json:"id"`
|
||||
ID MediaListID `json:"id"`
|
||||
UserID int `json:"userId"`
|
||||
MediaID int `json:"mediaId"`
|
||||
MediaID MediaID `json:"mediaId"`
|
||||
Status MediaListStatus `json:"status"`
|
||||
Score float64 `json:"score"`
|
||||
Progress int `json:"progress"`
|
||||
@ -205,10 +213,12 @@ const (
|
||||
MediaListStatusRepeating MediaListStatus = "REPEATING"
|
||||
)
|
||||
|
||||
type AiringScheduleID int
|
||||
|
||||
type AiringSchedule struct {
|
||||
ID int `json:"id"`
|
||||
MediaID int `json:"mediaId"`
|
||||
AiringAt UnixTime `json:"airingAt"`
|
||||
TimeUntilAiring Seconds `json:"timeUntilAiring"`
|
||||
Episode int `json:"episode"`
|
||||
ID AiringScheduleID `json:"id"`
|
||||
MediaID MediaID `json:"mediaId"`
|
||||
AiringAt UnixTime `json:"airingAt"`
|
||||
TimeUntilAiring Seconds `json:"timeUntilAiring"`
|
||||
Episode int `json:"episode"`
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user