MultiProxy Client is a robust Go library designed to manage multiple HTTP/HTTPS and SOCKS5 proxies efficiently. It provides a fault-tolerant and load-balanced approach to making HTTP requests through a pool of proxies, with features like automatic retries, backoff mechanisms, and proxy rotation.
- Multiple proxy support
- Automatic proxy rotation
- Fault tolerance with retry mechanism
- Configurable timeouts and delays
- Cookie management
- Basic authentication support for proxies
- User-Agent rotation
- HTTPS and SOCKS5 proxy support
- Concurrent request handling using singleflight pattern
- Rate limiting for individual proxies
- Configurable proxy rotation
- Backoff mechanism for failed proxies
To use MultiProxy Client in your Go project, you can install it using go get
:
go get github.com/presbrey/go-multiproxy
Replace yourusername
with the actual GitHub username or organization where this project is hosted.
Here's a basic example of how to use the MultiProxy Client:
package main
import (
"fmt"
"net/http"
"time"
"github.com/presbrey/go-multiproxy"
)
func main() {
config := multiproxy.Config{
Proxies: []multiproxy.Proxy{
{
URL: &url.URL{Scheme: "http", Host: "proxy1.example.com:8080"},
Auth: &multiproxy.ProxyAuth{Username: "user1", Password: "pass1"},
},
{
URL: &url.URL{Scheme: "socks5", Host: "proxy2.example.com:1080"},
Auth: &multiproxy.ProxyAuth{Username: "user2", Password: "pass2"},
},
},
CookieTimeout: 10 * time.Minute,
CookieOptions: &cookiejar.Options{PublicSuffixList: publicsuffix.List},
DialTimeout: 30 * time.Second,
RequestTimeout: 1 * time.Minute,
RetryAttempts: 3,
RetryDelay: 5 * time.Second,
ProxyRotateCount: 10,
}
client, err := multiproxy.NewClient(config)
if err != nil {
panic(err)
}
resp, err := client.Get("https://example.com")
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Printf("Response status: %s\n", resp.Status)
}
The Config
struct allows you to customize the behavior of the MultiProxy Client:
-
Proxies
: List of Proxy structs, each containing:URL
: The URL of the proxyAuth
: Pointer to ProxyAuth struct with Username and PasswordUserAgent
: User-Agent string for this specific proxyRateLimit
: Duration for rate limiting requests to this specific proxy
-
ProxyRotateCount
: Number of requests after which to rotate to the next proxy -
BackoffTime
: Time to wait before retrying a failed proxy -
DialTimeout
: Timeout for establishing a connection to a proxy -
RequestTimeout
: Timeout for the entire request (including dialing, writing request, and reading response) -
RetryDelay
: Delay between retry attempts -
CookieOptions
: Options for configuring the cookie jar (seehttp.cookiejar.Options
) -
CookieTimeout
: Duration for which cookies are valid -
DefaultUserAgent
: Default User-Agent string to use if not specified inProxyUserAgents
-
RetryAttempts
: Number of times to retry a failed request -
RetryDelay
: Delay between retry attempts -
BackoffTime
: Time to wait before retrying a failed proxy -
InsecureSkipVerify
: Whether to skip TLS certificate verification
The MultiProxy Client provides a RoundTripper()
method that returns an http.RoundTripper
. This allows you to use the multi-proxy functionality with any http.Client
. Here's an example:
config := multiproxy.Config{
// ... your config here ...
}
client, err := multiproxy.NewClient(config)
if err != nil {
// handle error
}
httpClient := &http.Client{
Transport: client.RoundTripper(),
}
// Now use httpClient for your requests
resp, err := httpClient.Get("https://example.com")
This is particularly useful when you need to use the multi-proxy functionality with libraries or APIs that accept an http.Client
.
The project includes comprehensive test suites:
multiproxy_test.go
: Tests for the main MultiProxy Client functionalityconnect_test.go
: Tests for HTTPS and CONNECT proxy functionalityerrors_test.go
: Tests for error handling scenarios
To run the tests, use the following command:
go test ./...
Contributions to the MultiProxy Client are welcome! Please feel free to submit issues, fork the repository and send pull requests.
This project is licensed under the MIT License - see the LICENSE file for details.
This software is provided as-is, and users should be aware of the legal and ethical considerations when using proxy servers. Always ensure you have the right to use the proxy servers you configure with this client.