cleanup code
This commit is contained in:
parent
12ad427baf
commit
e1f424b948
9 changed files with 138 additions and 95 deletions
211
util/http.go
211
util/http.go
|
@ -16,30 +16,23 @@ import (
|
|||
"time"
|
||||
)
|
||||
|
||||
type EdgeProxyClient struct {
|
||||
*http.Client
|
||||
|
||||
proxyURL string
|
||||
}
|
||||
|
||||
var (
|
||||
httpSession *http.Client
|
||||
httpSessionOnce sync.Once
|
||||
|
||||
extractorsHttpSession = make(map[string]models.HTTPClient)
|
||||
defaultClient *http.Client
|
||||
defaultClientOnce sync.Once
|
||||
extractorClients = make(map[string]models.HTTPClient)
|
||||
)
|
||||
|
||||
func GetDefaultHTTPSession() *http.Client {
|
||||
httpSessionOnce.Do(func() {
|
||||
httpSession = &http.Client{
|
||||
Transport: GetBaseTransport(),
|
||||
func GetDefaultHTTPClient() *http.Client {
|
||||
defaultClientOnce.Do(func() {
|
||||
defaultClient = &http.Client{
|
||||
Transport: createBaseTransport(),
|
||||
Timeout: 60 * time.Second,
|
||||
}
|
||||
})
|
||||
return httpSession
|
||||
return defaultClient
|
||||
}
|
||||
|
||||
func GetBaseTransport() *http.Transport {
|
||||
func createBaseTransport() *http.Transport {
|
||||
return &http.Transport{
|
||||
Proxy: http.ProxyFromEnvironment,
|
||||
DialContext: (&net.Dialer{
|
||||
|
@ -58,112 +51,137 @@ func GetBaseTransport() *http.Transport {
|
|||
}
|
||||
}
|
||||
|
||||
func GetHTTPSession(extractor string) models.HTTPClient {
|
||||
if client, ok := extractorsHttpSession[extractor]; ok {
|
||||
func GetHTTPClient(extractor string) models.HTTPClient {
|
||||
if client, exists := extractorClients[extractor]; exists {
|
||||
return client
|
||||
}
|
||||
|
||||
cfg := config.GetExtractorConfig(extractor)
|
||||
if cfg == nil {
|
||||
return GetDefaultHTTPSession()
|
||||
return GetDefaultHTTPClient()
|
||||
}
|
||||
|
||||
var client models.HTTPClient
|
||||
|
||||
if cfg.EdgeProxyURL != "" {
|
||||
client := GetEdgeProxyClient(cfg.EdgeProxyURL)
|
||||
extractorsHttpSession[extractor] = client
|
||||
return client
|
||||
client = NewEdgeProxyClient(cfg.EdgeProxyURL)
|
||||
} else {
|
||||
client = createClientWithProxy(cfg)
|
||||
}
|
||||
|
||||
transport := GetBaseTransport()
|
||||
client := &http.Client{
|
||||
extractorClients[extractor] = client
|
||||
return client
|
||||
}
|
||||
|
||||
func createClientWithProxy(cfg *models.ExtractorConfig) *http.Client {
|
||||
transport := createBaseTransport()
|
||||
|
||||
if cfg.HTTPProxy != "" || cfg.HTTPSProxy != "" {
|
||||
configureProxyTransport(transport, cfg)
|
||||
}
|
||||
|
||||
return &http.Client{
|
||||
Transport: transport,
|
||||
Timeout: 60 * time.Second,
|
||||
}
|
||||
}
|
||||
|
||||
if cfg.HTTPProxy == "" && cfg.HTTPSProxy == "" {
|
||||
extractorsHttpSession[extractor] = client
|
||||
return client
|
||||
}
|
||||
|
||||
func configureProxyTransport(
|
||||
transport *http.Transport,
|
||||
cfg *models.ExtractorConfig,
|
||||
) {
|
||||
var httpProxyURL, httpsProxyURL *url.URL
|
||||
var err error
|
||||
|
||||
if cfg.HTTPProxy != "" {
|
||||
if httpProxyURL, err = url.Parse(cfg.HTTPProxy); err != nil {
|
||||
httpProxyURL, err = url.Parse(cfg.HTTPProxy)
|
||||
if err != nil {
|
||||
log.Printf("warning: invalid HTTP proxy URL '%s': %v\n", cfg.HTTPProxy, err)
|
||||
}
|
||||
}
|
||||
|
||||
if cfg.HTTPSProxy != "" {
|
||||
if httpsProxyURL, err = url.Parse(cfg.HTTPSProxy); err != nil {
|
||||
httpsProxyURL, err = url.Parse(cfg.HTTPSProxy)
|
||||
if err != nil {
|
||||
log.Printf("warning: invalid HTTPS proxy URL '%s': %v\n", cfg.HTTPSProxy, err)
|
||||
}
|
||||
}
|
||||
|
||||
if httpProxyURL != nil || httpsProxyURL != nil {
|
||||
noProxyList := strings.Split(cfg.NoProxy, ",")
|
||||
for i := range noProxyList {
|
||||
noProxyList[i] = strings.TrimSpace(noProxyList[i])
|
||||
}
|
||||
|
||||
transport.Proxy = func(req *http.Request) (*url.URL, error) {
|
||||
if cfg.NoProxy != "" {
|
||||
host := req.URL.Hostname()
|
||||
for _, p := range noProxyList {
|
||||
if p == "" {
|
||||
continue
|
||||
}
|
||||
if p == host || (strings.HasPrefix(p, ".") && strings.HasSuffix(host, p)) {
|
||||
return nil, nil
|
||||
}
|
||||
}
|
||||
}
|
||||
if req.URL.Scheme == "https" && httpsProxyURL != nil {
|
||||
return httpsProxyURL, nil
|
||||
}
|
||||
if req.URL.Scheme == "http" && httpProxyURL != nil {
|
||||
return httpProxyURL, nil
|
||||
}
|
||||
if httpsProxyURL != nil {
|
||||
return httpsProxyURL, nil
|
||||
}
|
||||
return httpProxyURL, nil
|
||||
}
|
||||
if httpProxyURL == nil && httpsProxyURL == nil {
|
||||
return
|
||||
}
|
||||
|
||||
extractorsHttpSession[extractor] = client
|
||||
return client
|
||||
noProxyList := parseNoProxyList(cfg.NoProxy)
|
||||
|
||||
transport.Proxy = func(req *http.Request) (*url.URL, error) {
|
||||
if shouldBypassProxy(req.URL.Hostname(), noProxyList) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
if req.URL.Scheme == "https" && httpsProxyURL != nil {
|
||||
return httpsProxyURL, nil
|
||||
}
|
||||
if req.URL.Scheme == "http" && httpProxyURL != nil {
|
||||
return httpProxyURL, nil
|
||||
}
|
||||
if httpsProxyURL != nil {
|
||||
return httpsProxyURL, nil
|
||||
}
|
||||
return httpProxyURL, nil
|
||||
}
|
||||
}
|
||||
|
||||
func GetEdgeProxyClient(proxyURL string) *EdgeProxyClient {
|
||||
edgeProxyClient := &EdgeProxyClient{
|
||||
Client: &http.Client{
|
||||
Transport: GetBaseTransport(),
|
||||
func parseNoProxyList(noProxy string) []string {
|
||||
if noProxy == "" {
|
||||
return nil
|
||||
}
|
||||
|
||||
list := strings.Split(noProxy, ",")
|
||||
for i := range list {
|
||||
list[i] = strings.TrimSpace(list[i])
|
||||
}
|
||||
return list
|
||||
}
|
||||
|
||||
func shouldBypassProxy(host string, noProxyList []string) bool {
|
||||
for _, p := range noProxyList {
|
||||
if p == "" {
|
||||
continue
|
||||
}
|
||||
if p == host || (strings.HasPrefix(p, ".") && strings.HasSuffix(host, p)) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
type EdgeProxyClient struct {
|
||||
client *http.Client
|
||||
proxyURL string
|
||||
}
|
||||
|
||||
func NewEdgeProxyClient(proxyURL string) *EdgeProxyClient {
|
||||
return &EdgeProxyClient{
|
||||
client: &http.Client{
|
||||
Transport: createBaseTransport(),
|
||||
Timeout: 60 * time.Second,
|
||||
},
|
||||
proxyURL: proxyURL,
|
||||
}
|
||||
return edgeProxyClient
|
||||
}
|
||||
|
||||
func (c *EdgeProxyClient) Do(req *http.Request) (*http.Response, error) {
|
||||
if c.proxyURL == "" {
|
||||
return nil, fmt.Errorf("proxy URL is not set")
|
||||
}
|
||||
|
||||
targetURL := req.URL.String()
|
||||
encodedURL := url.QueryEscape(targetURL)
|
||||
proxyURLWithParam := c.proxyURL + "?url=" + encodedURL
|
||||
|
||||
var bodyBytes []byte
|
||||
var err error
|
||||
|
||||
if req.Body != nil {
|
||||
bodyBytes, err = io.ReadAll(req.Body)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("error reading request body: %w", err)
|
||||
}
|
||||
req.Body.Close()
|
||||
req.Body = io.NopCloser(bytes.NewBuffer(bodyBytes))
|
||||
bodyBytes, err := readRequestBody(req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
proxyReq, err := http.NewRequest(
|
||||
|
@ -175,18 +193,42 @@ func (c *EdgeProxyClient) Do(req *http.Request) (*http.Response, error) {
|
|||
return nil, fmt.Errorf("error creating proxy request: %w", err)
|
||||
}
|
||||
|
||||
for name, values := range req.Header {
|
||||
for _, value := range values {
|
||||
proxyReq.Header.Add(name, value)
|
||||
}
|
||||
}
|
||||
copyHeaders(req.Header, proxyReq.Header)
|
||||
|
||||
proxyResp, err := c.Client.Do(proxyReq)
|
||||
proxyResp, err := c.client.Do(proxyReq)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("proxy request failed: %w", err)
|
||||
}
|
||||
defer proxyResp.Body.Close()
|
||||
|
||||
return parseProxyResponse(proxyResp, req)
|
||||
}
|
||||
|
||||
func readRequestBody(req *http.Request) ([]byte, error) {
|
||||
if req.Body == nil {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
bodyBytes, err := io.ReadAll(req.Body)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("error reading request body: %w", err)
|
||||
}
|
||||
|
||||
req.Body.Close()
|
||||
req.Body = io.NopCloser(bytes.NewBuffer(bodyBytes))
|
||||
|
||||
return bodyBytes, nil
|
||||
}
|
||||
|
||||
func copyHeaders(source, destination http.Header) {
|
||||
for name, values := range source {
|
||||
for _, value := range values {
|
||||
destination.Add(name, value)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func parseProxyResponse(proxyResp *http.Response, originalReq *http.Request) (*http.Response, error) {
|
||||
body, err := io.ReadAll(proxyResp.Body)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("error reading proxy response: %w", err)
|
||||
|
@ -202,8 +244,9 @@ func (c *EdgeProxyClient) Do(req *http.Request) (*http.Response, error) {
|
|||
Status: fmt.Sprintf("%d %s", response.StatusCode, http.StatusText(response.StatusCode)),
|
||||
Body: io.NopCloser(bytes.NewBufferString(response.Text)),
|
||||
Header: make(http.Header),
|
||||
Request: req,
|
||||
Request: originalReq,
|
||||
}
|
||||
|
||||
parsedResponseURL, err := url.Parse(response.URL)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("error parsing response URL: %w", err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue