mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
4392255d7e
Updates #7041. Squashed commit of the following: commit 536382cf55bd158f179aaeabb1a16ed86d437257 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jun 4 20:56:56 2024 +0300 home: incr timeout
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package home
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
)
|
|
|
|
// httpClient returns a new HTTP client that uses the AdGuard Home's own DNS
|
|
// server for resolving hostnames. The resulting client should not be used
|
|
// until [Context.dnsServer] is initialized.
|
|
//
|
|
// TODO(a.garipov, e.burkov): This is rather messy. Refactor.
|
|
func httpClient() (c *http.Client) {
|
|
// Do not use Context.dnsServer.DialContext directly in the struct literal
|
|
// below, since Context.dnsServer may be nil when this function is called.
|
|
dialContext := func(ctx context.Context, network, addr string) (conn net.Conn, err error) {
|
|
return Context.dnsServer.DialContext(ctx, network, addr)
|
|
}
|
|
|
|
return &http.Client{
|
|
// TODO(a.garipov): Make configurable.
|
|
Timeout: writeTimeout,
|
|
Transport: &http.Transport{
|
|
DialContext: dialContext,
|
|
Proxy: httpProxy,
|
|
TLSClientConfig: &tls.Config{
|
|
RootCAs: Context.tlsRoots,
|
|
CipherSuites: Context.tlsCipherIDs,
|
|
MinVersion: tls.VersionTLS12,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// httpProxy returns parses and returns an HTTP proxy URL from the config, if
|
|
// any.
|
|
func httpProxy(_ *http.Request) (u *url.URL, err error) {
|
|
if config.ProxyURL == "" {
|
|
return nil, nil
|
|
}
|
|
|
|
return url.Parse(config.ProxyURL)
|
|
}
|