mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
84 lines
1.8 KiB
Go
84 lines
1.8 KiB
Go
package http
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"io"
|
|
"net"
|
|
"net/http"
|
|
URL "net/url"
|
|
"runtime"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/metacubex/mihomo/component/ca"
|
|
"github.com/metacubex/mihomo/component/dialer"
|
|
"github.com/metacubex/mihomo/listener/inner"
|
|
)
|
|
|
|
var (
|
|
ua string
|
|
)
|
|
|
|
func UA() string {
|
|
return ua
|
|
}
|
|
|
|
func SetUA(UA string) {
|
|
ua = UA
|
|
}
|
|
|
|
func HttpRequest(ctx context.Context, url, method string, header map[string][]string, body io.Reader) (*http.Response, error) {
|
|
return HttpRequestWithProxy(ctx, url, method, header, body, "")
|
|
}
|
|
|
|
func HttpRequestWithProxy(ctx context.Context, url, method string, header map[string][]string, body io.Reader, specialProxy string) (*http.Response, error) {
|
|
method = strings.ToUpper(method)
|
|
urlRes, err := URL.Parse(url)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
req, err := http.NewRequest(method, urlRes.String(), body)
|
|
for k, v := range header {
|
|
for _, v := range v {
|
|
req.Header.Add(k, v)
|
|
}
|
|
}
|
|
|
|
if _, ok := header["User-Agent"]; !ok {
|
|
req.Header.Set("User-Agent", UA())
|
|
}
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if user := urlRes.User; user != nil {
|
|
password, _ := user.Password()
|
|
req.SetBasicAuth(user.Username(), password)
|
|
}
|
|
|
|
req = req.WithContext(ctx)
|
|
|
|
transport := &http.Transport{
|
|
// from http.DefaultTransport
|
|
DisableKeepAlives: runtime.GOOS == "android",
|
|
MaxIdleConns: 100,
|
|
IdleConnTimeout: 30 * time.Second,
|
|
TLSHandshakeTimeout: 10 * time.Second,
|
|
ExpectContinueTimeout: 1 * time.Second,
|
|
DialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
|
if conn, err := inner.HandleTcp(address, specialProxy); err == nil {
|
|
return conn, nil
|
|
} else {
|
|
return dialer.DialContext(ctx, network, address)
|
|
}
|
|
},
|
|
TLSClientConfig: ca.GetGlobalTLSConfig(&tls.Config{}),
|
|
}
|
|
|
|
client := http.Client{Transport: transport}
|
|
return client.Do(req)
|
|
}
|