aboutsummaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorAlexander Kiryukhin <a.kiryukhin@mail.ru>2021-12-19 20:08:05 +0300
committerAlexander Kiryukhin <a.kiryukhin@mail.ru>2021-12-19 20:08:05 +0300
commit6f5bb85330acd4227d4c233e283f384e6ff834c8 (patch)
treeb997176261bc5df75449ec687c299d8828f15e5e /handler.go
parent55a7b7d61484d5fe374a1093f328de1cc775b0b6 (diff)
Initial
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go31
1 files changed, 31 insertions, 0 deletions
diff --git a/handler.go b/handler.go
new file mode 100644
index 0000000..d497b24
--- /dev/null
+++ b/handler.go
@@ -0,0 +1,31 @@
+package api
+
+import (
+ "context"
+ "encoding/json"
+ "fmt"
+ "net/http"
+)
+
+//Wrap API handler and returns standard http handler function
+func Wrap[RQ any, RS any](handler func(ctx context.Context, request *RQ) (RS, error)) func(w http.ResponseWriter, r *http.Request) {
+ return func(w http.ResponseWriter, r *http.Request) {
+ req := new(RQ)
+ if err := json.NewDecoder(r.Body).Decode(req); err != nil {
+ w.WriteHeader(http.StatusBadRequest)
+ _, _ = w.Write([]byte(fmt.Sprintf("Fail to parse request body: %s", err.Error())))
+ return
+ }
+ resp, err := handler(r.Context(), req)
+ if err != nil {
+ w.WriteHeader(http.StatusInternalServerError)
+ _, _ = w.Write([]byte(err.Error()))
+ return
+ }
+ if err := json.NewEncoder(w).Encode(resp); err != nil {
+ w.WriteHeader(http.StatusInternalServerError)
+ _, _ = w.Write([]byte(err.Error()))
+ return
+ }
+ }
+}