Compare commits

...

7 Commits

4 changed files with 73 additions and 41 deletions

82
main.go

File diff suppressed because it is too large Load Diff

View File

@ -53,11 +53,12 @@ func UploadPost(BasePath string, headers map[string]string, PostData UploadPostM
defer resp.Body.Close()
if resp.StatusCode == http.StatusOK {
BodyRead, err := io.ReadAll(resp.Body)
buffer := bytes.NewBuffer(nil)
_, err := io.Copy(buffer, resp.Body)
if err != nil {
return nil, err
}
return BodyRead, nil
return buffer.Bytes(), nil
} else {
return nil, err
}
@ -99,11 +100,12 @@ func NetworkStoragePut(URL string, ContentType string, filepath string) ([]byte,
defer resp.Body.Close()
if resp.StatusCode == http.StatusOK {
BodyRead, err := io.ReadAll(resp.Body)
buffer := bytes.NewBuffer(nil)
_, err := io.Copy(buffer, resp.Body)
if err != nil {
return nil, err
}
return BodyRead, nil
return buffer.Bytes(), nil
} else {
return nil, err
}
@ -127,13 +129,15 @@ func UploadProcessPost(BasePath string, headers map[string]string, PostData Uplo
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusOK {
BodyRead, err := io.ReadAll(resp.Body)
buffer := bytes.NewBuffer(nil)
_, err := io.Copy(buffer, resp.Body)
if err != nil {
return nil, err
}
return BodyRead, nil
return buffer.Bytes(), nil
} else {
return nil, err
}

View File

@ -75,5 +75,5 @@ func HTTPClientDo(Request *http.Request) (*http.Response, error) {
if err != nil {
return nil, err
}
return response, err
return response, nil
}

View File

@ -2,18 +2,28 @@ package handler
import (
"encoding/json"
"net/http"
"strings"
"github.com/rs/zerolog/log"
)
func ErrorResponseBuild(StatusCode int64, Message string) string {
func ResponseBuild(w http.ResponseWriter, ContentType string, ContentData []byte) {
w.Header().Set("Content-Type", ContentType)
w.WriteHeader(http.StatusOK)
w.Write(ContentData)
}
func ErrorResponseBuild(w http.ResponseWriter, StatusCode int64, Message string) {
ErrorResponse := ErrorResponse{
StatusCode: StatusCode,
Message: Message,
}
Response, _ := json.Marshal(ErrorResponse)
return string(Response)
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(int(StatusCode))
w.Write(Response)
}
func InfoLogBuilder(headers []string, message string) {