Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add standardization to HTTP response #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 6 additions & 43 deletions internal/server/http.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
//modified http

package server

import (
"context"
"encoding/json"
"errors"
"log/slog"
"net/http"
Expand All @@ -25,24 +26,6 @@ type HandlerMux struct {
rateLimiter func(http.ResponseWriter, *http.Request, http.Handler)
}

type HTTPResponse struct {
Data interface{} `json:"data"`
}

type HTTPErrorResponse struct {
Error interface{} `json:"error"`
}

func errorResponse(response string) string {
errorMessage := map[string]string{"error": response}
jsonResponse, err := json.Marshal(errorMessage)
if err != nil {
slog.Error("Error marshaling response: %v", slog.Any("err", err))
return `{"error": "internal server error"}`
}

return string(jsonResponse)
}

func (cim *HandlerMux) ServeHTTP(w http.ResponseWriter, r *http.Request) {
middleware.TrailingSlashMiddleware(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
Expand Down Expand Up @@ -95,43 +78,23 @@ func (s *HTTPServer) Shutdown() error {
}

func (s *HTTPServer) HealthCheck(w http.ResponseWriter, request *http.Request) {
util.JSONResponse(w, http.StatusOK, map[string]string{"message": "server is running"})
util.HttpResponseJSON(w, http.StatusOK, map[string]string{"message": "Server is running"})
}

func (s *HTTPServer) CliHandler(w http.ResponseWriter, r *http.Request) {
diceCmd, err := util.ParseHTTPRequest(r)
if err != nil {
http.Error(w, errorResponse(err.Error()), http.StatusBadRequest)
util.HttpResponseException(w,http.StatusBadRequest,err)
return
}

resp, err := s.DiceClient.ExecuteCommand(diceCmd)
if err != nil {
slog.Error("error: failure in executing command", "error", slog.Any("err", err))
http.Error(w, errorResponse(err.Error()), http.StatusBadRequest)
return
}

respStr, ok := resp.(string)
if !ok {
slog.Error("error: response is not a string", "error", slog.Any("err", err))
http.Error(w, errorResponse("internal server error"), http.StatusInternalServerError)
return
}

httpResponse := HTTPResponse{Data: respStr}
responseJSON, err := json.Marshal(httpResponse)
if err != nil {
slog.Error("error marshaling response to json", "error", slog.Any("err", err))
http.Error(w, errorResponse("internal server error"), http.StatusInternalServerError)
return
}

_, err = w.Write(responseJSON)
if err != nil {
http.Error(w, errorResponse("internal server error"), http.StatusInternalServerError)
util.HttpResponseException(w,http.StatusBadRequest,err)
return
}
util.HttpResponseJSON(w, http.StatusOK, resp)
}

func (s *HTTPServer) SearchHandler(w http.ResponseWriter, request *http.Request) {
Expand Down
61 changes: 61 additions & 0 deletions util/helpers.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// modifed helpers.go

package utils

import (
Expand All @@ -8,13 +10,28 @@
"log/slog"
"net/http"
"net/http/httptest"
"os"
"runtime/debug"
"server/config"
"server/internal/middleware"
db "server/internal/tests/dbmocks"
"server/util/cmds"
"strings"
)

type HttpResponse struct {

Check failure on line 22 in util/helpers.go

View workflow job for this annotation

GitHub Actions / lint

ST1003: type HttpResponse should be HTTPResponse (stylecheck)
Data interface{} `json:"data"`
Error *ErrorDetails `json:"error"`
HasError bool `json:"hasError"`
HasData bool `json:"hasData"`
StackTrace *string `json:"stackTrace,omitempty"`
}

type ErrorDetails struct {
Message *string `json:"message"`
StackTrace *string `json:"stackTrace,omitempty"`
}

// Map of blocklisted commands
var blocklistedCommands = map[string]bool{
"FLUSHALL": true,
Expand Down Expand Up @@ -131,3 +148,47 @@

return w, r, rateLimiter
}

func generateHttpResponse(w http.ResponseWriter, statusCode int, data interface{}, err *string) {

Check failure on line 152 in util/helpers.go

View workflow job for this annotation

GitHub Actions / lint

ST1003: func generateHttpResponse should be generateHTTPResponse (stylecheck)
response := HttpResponse{
HasData: data != nil,
HasError: err != nil,
Data: data,
}

if err != nil {
errorDetails := &ErrorDetails{
Message: err,
}
if os.Getenv("ENV") == "development" {
stackTrace := string(debug.Stack())
errorDetails.StackTrace = &stackTrace
}
response.Error = errorDetails
}

w.Header().Set("Content-Type", "application/json")
w.WriteHeader(statusCode)

if encodeErr := json.NewEncoder(w).Encode(response); encodeErr != nil {
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
}
}

func HttpResponseJSON(w http.ResponseWriter,statusCode int, data interface{}) {

Check failure on line 178 in util/helpers.go

View workflow job for this annotation

GitHub Actions / lint

ST1003: func HttpResponseJSON should be HTTPResponseJSON (stylecheck)
generateHttpResponse(w, http.StatusOK, data, nil)
}

func HttpResponseException(w http.ResponseWriter, statusCode int, err interface{}) {

Check failure on line 182 in util/helpers.go

View workflow job for this annotation

GitHub Actions / lint

ST1003: func HttpResponseException should be HTTPResponseException (stylecheck)
var errorStr string
switch e := err.(type) {
case error:
errorStr = e.Error()
case string:
errorStr = e
default:
errorStr = "Unknown error type"
}
generateHttpResponse(w, statusCode, nil, &errorStr)
}

Loading