Compare commits

...

2 Commits

Author SHA1 Message Date
18ceb8a077 feat 添加ImageGroups 2024-11-20 21:14:15 +08:00
4ac9614af6 fix 修复请求没有权限的问题 2024-11-20 21:11:19 +08:00
4 changed files with 34 additions and 14 deletions

View File

@ -6,7 +6,7 @@ import (
) )
func TestCNClient(t *testing.T) { func TestCNClient(t *testing.T) {
cli, err := CNClient() cli, err := CNClient(XMac_Coach)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }

View File

@ -105,12 +105,20 @@ type ProductData struct {
Inventory Inventory `json:"inventory"` Inventory Inventory `json:"inventory"`
Url string `json:"url"` Url string `json:"url"`
MasterId string `json:"masterId"` MasterId string `json:"masterId"`
ImageGroups []ImageGroup `json:"imageGroups"`
Prices struct { Prices struct {
CurrentPrice float64 `json:"currentPrice"` CurrentPrice float64 `json:"currentPrice"`
} `json:"prices"` } `json:"prices"`
Remark string `json:"-"` Remark string `json:"-"`
} }
type ImageGroup struct {
Images []struct {
Src string `json:"src"`
Title string `json:"title"`
Alt string `json:"alt"`
} `json:"images"`
ViewType string `json:"viewType"`
}
type ProductDataResponse struct { type ProductDataResponse struct {
ProductData []*ProductData `json:"productsData"` ProductData []*ProductData `json:"productsData"`
} }
@ -140,6 +148,7 @@ type PageDataResponse struct {
Products []Product `json:"products"` Products []Product `json:"products"`
} `json:"pageData"` } `json:"pageData"`
} }
type Product struct { type Product struct {
Name string `json:"name"` Name string `json:"name"`
Colors []Color `json:"colors"` Colors []Color `json:"colors"`

View File

@ -2,15 +2,16 @@ package coach_client
import ( import (
"context" "context"
"gitea.timerzz.com/kedaya_haitao/common/pkg/proxy"
"testing" "testing"
"gitea.timerzz.com/kedaya_haitao/common/pkg/proxy"
) )
func TestClient(t *testing.T) { func TestClient(t *testing.T) {
subs := []string{"https://us.timerzz.com:26106/vmess/sub", "https://us.timerzz.com:26106/trojan/sub", "https://us.timerzz.com:26106/ssr/sub"} subs := []string{"https://us.timerzz.com:26106/vmess/sub"}
pool := proxy.NewProxyPool(subs) pool := proxy.NewProxyPool(subs)
client := USClient(pool) client := USClient(pool)
resp, err := client.ViewAllBags(context.Background(), 1) resp, err := client.RequestProductDetail(context.Background(), "CU808-CHK")
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }

View File

@ -2,12 +2,13 @@ package restry_pool
import ( import (
"context" "context"
"github.com/corpix/uarand"
"github.com/go-resty/resty/v2"
"net" "net"
"net/http" "net/http"
"sync" "sync"
"time" "time"
"github.com/corpix/uarand"
"github.com/go-resty/resty/v2"
) )
var rp *restyPool var rp *restyPool
@ -35,6 +36,15 @@ const (
func beforeRequest(cli *resty.Client, req *resty.Request) error { func beforeRequest(cli *resty.Client, req *resty.Request) error {
cli.SetHeader("User-Agent", uarand.GetRandom()) cli.SetHeader("User-Agent", uarand.GetRandom())
cli.SetHeader("sec-fetch-site", "same-origin")
cli.SetHeader("upgrade-insecure-requests", "1")
cli.SetHeaders(map[string]string{
"sec-fetch-dest": "empty",
"sec-fetch-mode": "navigate",
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate, br",
"Connection": "keep-alive",
})
return nil return nil
} }
func NewRestyPool() *restyPool { func NewRestyPool() *restyPool {