1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-23 14:44:42 -05:00
sub2clash/common/get.go

59 lines
1.1 KiB
Go
Raw Normal View History

package common
2023-09-12 06:40:24 -04:00
import (
2023-09-12 12:46:17 -04:00
"errors"
2023-09-12 06:40:24 -04:00
"net/http"
"time"
"github.com/nitezs/sub2clash/config"
2023-09-12 06:40:24 -04:00
)
type GetConfig struct {
userAgent string
}
type GetOption func(*GetConfig)
func WithUserAgent(userAgent string) GetOption {
return func(config *GetConfig) {
config.userAgent = userAgent
}
}
func Get(url string, options ...GetOption) (resp *http.Response, err error) {
2023-09-12 12:46:17 -04:00
retryTimes := config.Default.RequestRetryTimes
2023-09-12 06:40:24 -04:00
haveTried := 0
2024-08-11 11:55:47 -04:00
retryDelay := time.Second
getConfig := GetConfig{}
for _, option := range options {
option(&getConfig)
}
2023-09-12 06:40:24 -04:00
for haveTried < retryTimes {
client := &http.Client{}
2023-09-22 20:48:45 -04:00
//client.Timeout = time.Second * 10
req, err := http.NewRequest("GET", url, nil)
if err != nil {
haveTried++
time.Sleep(retryDelay)
continue
}
if getConfig.userAgent != "" {
req.Header.Set("User-Agent", getConfig.userAgent)
}
get, err := client.Do(req)
2023-09-12 06:40:24 -04:00
if err != nil {
haveTried++
time.Sleep(retryDelay)
continue
} else {
2024-08-11 11:55:47 -04:00
2023-09-12 12:46:17 -04:00
if get != nil && get.ContentLength > config.Default.RequestMaxFileSize {
return nil, errors.New("文件过大")
}
2023-09-12 06:40:24 -04:00
return get, nil
}
2023-09-12 12:46:17 -04:00
2023-09-12 06:40:24 -04:00
}
return nil, err
}