Redmage/api/reddit/client.go

31 lines
673 B
Go
Raw Normal View History

2024-04-10 17:13:07 +07:00
package reddit
import (
"net/http"
"github.com/tigorlazuardi/redmage/config"
2024-04-10 17:13:07 +07:00
)
type Client interface {
Do(*http.Request) (*http.Response, error)
}
func NewRedditHTTPClient(cfg *config.Config) Client {
return &http.Client{
Transport: createRoundTripper(cfg),
}
}
type roundTripperFunc func(*http.Request) (*http.Response, error)
func (ro roundTripperFunc) RoundTrip(req *http.Request) (*http.Response, error) {
return ro(req)
}
func createRoundTripper(cfg *config.Config) roundTripperFunc {
return func(r *http.Request) (*http.Response, error) {
r.Header.Set("User-Agent", cfg.String("download.useragent"))
return http.DefaultTransport.RoundTrip(r)
}
}