新增 DB/Redis 连接池配置与校验,并补充单测 网关请求体大小限制与 413 处理 HTTP/req 客户端池化并调整上游连接池默认值 并发槽位改为 ZSET+Lua 与指数退避 用量统计改 SQL 聚合并新增索引迁移 计费缓存写入改工作池并补测试/基准 测试: 在 backend/ 下运行 go test ./...
79 lines
1.6 KiB
Go
79 lines
1.6 KiB
Go
package repository
|
||
|
||
import (
|
||
"context"
|
||
"fmt"
|
||
"io"
|
||
"net/http"
|
||
"strings"
|
||
"time"
|
||
|
||
"github.com/Wei-Shaw/sub2api/internal/pkg/httpclient"
|
||
"github.com/Wei-Shaw/sub2api/internal/service"
|
||
)
|
||
|
||
type pricingRemoteClient struct {
|
||
httpClient *http.Client
|
||
}
|
||
|
||
func NewPricingRemoteClient() service.PricingRemoteClient {
|
||
sharedClient, err := httpclient.GetClient(httpclient.Options{
|
||
Timeout: 30 * time.Second,
|
||
})
|
||
if err != nil {
|
||
sharedClient = &http.Client{Timeout: 30 * time.Second}
|
||
}
|
||
return &pricingRemoteClient{
|
||
httpClient: sharedClient,
|
||
}
|
||
}
|
||
|
||
func (c *pricingRemoteClient) FetchPricingJSON(ctx context.Context, url string) ([]byte, error) {
|
||
req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
resp, err := c.httpClient.Do(req)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
defer func() { _ = resp.Body.Close() }()
|
||
|
||
if resp.StatusCode != http.StatusOK {
|
||
return nil, fmt.Errorf("HTTP %d", resp.StatusCode)
|
||
}
|
||
|
||
return io.ReadAll(resp.Body)
|
||
}
|
||
|
||
func (c *pricingRemoteClient) FetchHashText(ctx context.Context, url string) (string, error) {
|
||
req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
|
||
if err != nil {
|
||
return "", err
|
||
}
|
||
|
||
resp, err := c.httpClient.Do(req)
|
||
if err != nil {
|
||
return "", err
|
||
}
|
||
defer func() { _ = resp.Body.Close() }()
|
||
|
||
if resp.StatusCode != http.StatusOK {
|
||
return "", fmt.Errorf("HTTP %d", resp.StatusCode)
|
||
}
|
||
|
||
body, err := io.ReadAll(resp.Body)
|
||
if err != nil {
|
||
return "", err
|
||
}
|
||
|
||
// 哈希文件格式:hash filename 或者纯 hash
|
||
hash := strings.TrimSpace(string(body))
|
||
parts := strings.Fields(hash)
|
||
if len(parts) > 0 {
|
||
return parts[0], nil
|
||
}
|
||
return hash, nil
|
||
}
|