summaryrefslogtreecommitdiff
path: root/pkg/helpers/json.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/helpers/json.go')
-rw-r--r--pkg/helpers/json.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkg/helpers/json.go b/pkg/helpers/json.go
new file mode 100644
index 0000000..664a984
--- /dev/null
+++ b/pkg/helpers/json.go
@@ -0,0 +1,25 @@
+package helpers
+
+import (
+ "encoding/json"
+ "fmt"
+ "log/slog"
+ "net/http"
+)
+
+func Decode(r *http.Request, data any) error {
+ if err := json.NewDecoder(r.Body).Decode(&data); err != nil {
+ return fmt.Errorf("failed to decode json: %w", err)
+ }
+ return nil
+}
+
+func Encode(w http.ResponseWriter, status int, data any) error {
+ w.Header().Set("Content-Type", "application/json")
+ w.WriteHeader(status)
+ if err := json.NewEncoder(w).Encode(data); err != nil {
+ slog.Error("failed to encode json", "err", err)
+ return fmt.Errorf("failed to encode json: %w", err)
+ }
+ return nil
+}