CI: Add SonarCloud scan GHA workflow
[nonrtric/plt/ranpm.git] / pm-file-converter / common / utils / utils.go
index 5466d2c..7be5819 100644 (file)
@@ -21,15 +21,16 @@ package utils
 
 import (
        "bytes"
-       log "github.com/sirupsen/logrus"
        "main/components/kafkacollector"
        "net/http"
+
+       log "github.com/sirupsen/logrus"
 )
 
 var httpclient = &http.Client{}
 
 // Send a http request with json (json may be nil)
-func Send_http_request(json []byte, method string, url string, retry bool, useAuth bool) bool {
+func SendHttpRequest(json []byte, method string, url string, retry bool, useAuth bool) bool {
 
        // set the HTTP method, url, and request body
        var req *http.Request
@@ -46,7 +47,7 @@ func Send_http_request(json []byte, method string, url string, retry bool, useAu
        }
 
        if useAuth {
-               token, err := kafkacollector.Fetch_token()
+               token, err := kafkacollector.FetchToken()
                if err != nil {
                        log.Error("Cannot fetch token for http request: ", err)
                        return false