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
|
package malsync
import (
"context"
"encoding/json"
"errors"
"fmt"
"io"
"math"
"metachan/types"
"metachan/utils/logger"
"net/http"
"strconv"
"time"
)
const (
malsyncAPIBaseURL = "https://api.malsync.moe/mal"
contextTimeout = 10 * time.Second
timeout = 10 * time.Second
maxRetries = 3
backoffDuration = 1 * time.Second
acceptHeader = "application/json"
)
var (
clientInstance = &client{
httpClient: &http.Client{
Timeout: timeout,
},
maxRetries: maxRetries,
backoff: backoffDuration,
}
)
func (c *client) getBackOffDuration(attempt int) time.Duration {
return time.Duration(float64(c.backoff) * math.Pow(2, float64(attempt-1)))
}
func (c *client) getRetryAfterDuration(resp *http.Response) time.Duration {
if retryAfter := resp.Header.Get("Retry-After"); retryAfter != "" {
if seconds, err := strconv.Atoi(retryAfter); err == nil {
return time.Duration(seconds) * time.Second
}
}
return c.backoff
}
func (c *client) handleRetry(retries *int, url string, reason string, retryAfter time.Duration) bool {
*retries++
if *retries >= c.maxRetries {
return false
}
backoffDuration := c.getBackOffDuration(*retries)
if retryAfter > backoffDuration {
backoffDuration = retryAfter
}
logger.Warnf("MalsyncClient", "%s for %s (attempt %d/%d)", reason, url, *retries, c.maxRetries)
time.Sleep(backoffDuration)
return true
}
func (c *client) makeRequest(ctx context.Context, url string) ([]byte, error) {
var response *http.Response
var retries int
for retries < c.maxRetries {
request, err := http.NewRequestWithContext(ctx, "GET", url, nil)
if err != nil {
logger.Errorf("MalsyncClient", "Failed to create request: %v", err)
return nil, errors.New("failed to create request to Malsync API")
}
request.Header.Set("Accept", acceptHeader)
response, err = c.httpClient.Do(request)
if err != nil {
if !c.handleRetry(&retries, url, fmt.Sprintf("Request failed: %v", err), 0) {
logger.Errorf("MalsyncClient", "All retries exhausted for request to %s: %v", url, err)
return nil, errors.New("failed to make request to Malsync API after max retries")
}
continue
}
defer response.Body.Close()
switch response.StatusCode {
case http.StatusNotFound:
// Not found is not an error, return nil
return nil, nil
case http.StatusTooManyRequests:
retryAfter := c.getRetryAfterDuration(response)
if !c.handleRetry(&retries, url, "Rate limited", retryAfter) {
logger.Errorf("MalsyncClient", "All retries exhausted for request to %s", url)
return nil, errors.New("failed to make request to Malsync API after max retries")
}
case http.StatusOK:
bytes, err := io.ReadAll(response.Body)
if err != nil {
logger.Errorf("MalsyncClient", "Failed to read response body from %s: %v", url, err)
return nil, errors.New("failed to read response from Malsync API")
}
return bytes, nil
default:
retries++
backoffDuration := c.getBackOffDuration(retries)
logger.Warnf("MalsyncClient", "Request to %s returned status %d (attempt %d/%d)", url, response.StatusCode, retries, c.maxRetries)
time.Sleep(backoffDuration)
}
}
logger.Errorf("MalsyncClient", "All retries exhausted for request to %s", url)
return nil, errors.New("failed to make request to Malsync API after max retries")
}
func GetAnimeByMALID(malID int) (*types.MalsyncAnimeResponse, error) {
url := fmt.Sprintf("%s/anime/%d", malsyncAPIBaseURL, malID)
ctx, cancel := context.WithTimeout(context.Background(), contextTimeout)
defer cancel()
bytes, err := clientInstance.makeRequest(ctx, url)
if err != nil {
logger.Errorf("MalsyncClient", "GetAnimeByMALID failed for MAL ID %d: %v", malID, err)
return nil, errors.New("failed to fetch anime data from Malsync API")
}
// Handle 404 case where makeRequest returns nil, nil
if bytes == nil {
return nil, nil
}
var response types.MalsyncAnimeResponse
if err := json.Unmarshal(bytes, &response); err != nil {
logger.Errorf("MalsyncClient", "Failed to unmarshal response for MAL ID %d: %v", malID, err)
return nil, errors.New("failed to parse anime data from Malsync API")
}
if response.ID == 0 {
logger.Errorf("MalsyncClient", "Received empty response for MAL ID %d", malID)
return nil, errors.New("received empty response")
}
return &response, nil
}
|