mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-29 22:56:39 +08:00
82 lines
1.7 KiB
Go
82 lines
1.7 KiB
Go
package utils
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"golang.org/x/net/proxy"
|
|
)
|
|
|
|
type ContextKey string
|
|
|
|
const ProxyHTTPAddrKey ContextKey = "proxyHttpAddr"
|
|
const ProxySock5AddrKey ContextKey = "proxySock5Addr"
|
|
|
|
func ProxyFunc(req *http.Request) (*url.URL, error) {
|
|
proxyAddr := req.Context().Value(ProxyHTTPAddrKey)
|
|
if proxyAddr == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
proxyURL, err := url.Parse(proxyAddr.(string))
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error parsing proxy address: %w", err)
|
|
}
|
|
|
|
switch proxyURL.Scheme {
|
|
case "http", "https":
|
|
return proxyURL, nil
|
|
}
|
|
|
|
return nil, fmt.Errorf("unsupported proxy scheme: %s", proxyURL.Scheme)
|
|
}
|
|
|
|
func Socks5ProxyFunc(ctx context.Context, network, addr string) (net.Conn, error) {
|
|
dialer := &net.Dialer{
|
|
Timeout: time.Duration(GetOrDefault("connect_timeout", 5)) * time.Second,
|
|
KeepAlive: 30 * time.Second,
|
|
}
|
|
|
|
proxyAddr, ok := ctx.Value(ProxySock5AddrKey).(string)
|
|
if !ok {
|
|
return dialer.DialContext(ctx, network, addr)
|
|
}
|
|
|
|
proxyURL, err := url.Parse(proxyAddr)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error parsing proxy address: %w", err)
|
|
}
|
|
|
|
proxyDialer, err := proxy.FromURL(proxyURL, dialer)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error creating proxy dialer: %w", err)
|
|
}
|
|
|
|
return proxyDialer.Dial(network, addr)
|
|
}
|
|
|
|
func SetProxy(proxyAddr string, ctx context.Context) context.Context {
|
|
if ctx == nil {
|
|
ctx = context.Background()
|
|
}
|
|
|
|
if proxyAddr == "" {
|
|
return ctx
|
|
}
|
|
|
|
key := ProxyHTTPAddrKey
|
|
|
|
// 如果是以 socks5:// 开头的地址,那么使用 socks5 代理
|
|
if strings.HasPrefix(proxyAddr, "socks5://") {
|
|
key = ProxySock5AddrKey
|
|
}
|
|
|
|
// 否则使用 http 代理
|
|
return context.WithValue(ctx, key, proxyAddr)
|
|
}
|