X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=dmaap-mediator-producer%2Finternal%2Frestclient%2FHTTPClient.go;h=a7582c2ba71150e5a9608792a2ef88892c1f480d;hb=db7b5c801bdc96889aea18ab190f2b72fa8d8e06;hp=8ccd4b21ca028fe7cf05cf50118856ee27d2d300;hpb=6f48adb69090799c74c29204dd2cd1737cc9d6ac;p=nonrtric.git diff --git a/dmaap-mediator-producer/internal/restclient/HTTPClient.go b/dmaap-mediator-producer/internal/restclient/HTTPClient.go index 8ccd4b21..a7582c2b 100644 --- a/dmaap-mediator-producer/internal/restclient/HTTPClient.go +++ b/dmaap-mediator-producer/internal/restclient/HTTPClient.go @@ -31,8 +31,12 @@ import ( "time" "github.com/hashicorp/go-retryablehttp" + log "github.com/sirupsen/logrus" ) +const ContentTypeJSON = "application/json" +const ContentTypePlain = "text/plain" + // HTTPClient interface type HTTPClient interface { Get(url string) (*http.Response, error) @@ -67,16 +71,16 @@ func Get(url string, client HTTPClient) ([]byte, error) { } func Put(url string, body []byte, client HTTPClient) error { - return do(http.MethodPut, url, body, client) + return do(http.MethodPut, url, body, ContentTypeJSON, client) } -func Post(url string, body []byte, client HTTPClient) error { - return do(http.MethodPost, url, body, client) +func Post(url string, body []byte, contentType string, client HTTPClient) error { + return do(http.MethodPost, url, body, contentType, client) } -func do(method string, url string, body []byte, client HTTPClient) error { +func do(method string, url string, body []byte, contentType string, client HTTPClient) error { if req, reqErr := http.NewRequest(method, url, bytes.NewBuffer(body)); reqErr == nil { - req.Header.Set("Content-Type", "application/json") + req.Header.Set("Content-Type", contentType) if response, respErr := client.Do(req); respErr == nil { if isResponseSuccess(response.StatusCode) { return nil @@ -115,6 +119,7 @@ func CreateClientCertificate(certPath string, keyPath string) (tls.Certificate, func CreateRetryClient(cert tls.Certificate) *http.Client { rawRetryClient := retryablehttp.NewClient() + rawRetryClient.Logger = leveledLogger{} rawRetryClient.RetryWaitMax = time.Minute rawRetryClient.RetryMax = math.MaxInt rawRetryClient.HTTPClient.Transport = getSecureTransportWithoutVerify(cert) @@ -145,3 +150,28 @@ func IsUrlSecure(configUrl string) bool { u, _ := url.Parse(configUrl) return u.Scheme == "https" } + +// Used to get leveled logging in the RetryClient +type leveledLogger struct { +} + +func (ll leveledLogger) Error(msg string, keysAndValues ...interface{}) { + log.WithFields(getFields(keysAndValues)).Error(msg) +} +func (ll leveledLogger) Info(msg string, keysAndValues ...interface{}) { + log.WithFields(getFields(keysAndValues)).Info(msg) +} +func (ll leveledLogger) Debug(msg string, keysAndValues ...interface{}) { + log.WithFields(getFields(keysAndValues)).Debug(msg) +} +func (ll leveledLogger) Warn(msg string, keysAndValues ...interface{}) { + log.WithFields(getFields(keysAndValues)).Warn(msg) +} + +func getFields(keysAndValues []interface{}) log.Fields { + fields := log.Fields{} + for i := 0; i < len(keysAndValues); i = i + 2 { + fields[fmt.Sprint(keysAndValues[i])] = keysAndValues[i+1] + } + return fields +}