package api import ( "GoCMS/useCases" "encoding/json" "github.com/go-chi/chi/v5" "net/http" "strconv" ) type PostPost struct { Title string `json:"title" validate:"required,min=3,max=50"` Body string `json:"body" validate:"required,max=10000"` } const idUint32ErrorMessage = "The server expects the ID to be in the format of an unsigned 32-bit integer (uint32)." func getPost(w http.ResponseWriter, r *http.Request) { id, err := strconv.ParseUint(chi.URLParam(r, "id"), 10, 32) if err != nil { http.Error(w, idUint32ErrorMessage, http.StatusBadRequest) return } post, err := Container.GetPostUseCase.GetPost(uint32(id)) if err != nil { http.Error(w, "The requested resource, identified by its unique ID, could not be found on the server.", http.StatusNotFound) return } postJson, _ := json.Marshal(post) _, _ = w.Write(postJson) } func postPost(w http.ResponseWriter, r *http.Request) { var post PostPost err := json.NewDecoder(r.Body).Decode(&post) if err != nil { http.Error(w, bodyErrorMessage, http.StatusBadRequest) return } err = validate.Struct(post) if err != nil { http.Error(w, err.Error(), http.StatusBadRequest) return } createdPost, err := Container.CreatePostUseCase.CreatePost(useCases.CreatePostCommand{ Title: post.Title, Body: post.Body, }) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } postJson, _ := json.Marshal(createdPost) _, _ = w.Write(postJson) } func listPosts(w http.ResponseWriter, _ *http.Request) { posts := Container.ListPostsUseCase.ListPosts() postsJson, _ := json.Marshal(posts) _, _ = w.Write(postsJson) } func deletePost(w http.ResponseWriter, r *http.Request) { id, err := strconv.ParseUint(chi.URLParam(r, "id"), 10, 32) if err != nil { http.Error(w, idUint32ErrorMessage, http.StatusBadRequest) } err = Container.DeletePostUseCase.DeletePost(uint32(id)) if err != nil { http.Error(w, err.Error(), http.StatusNotFound) } _, _ = w.Write([]byte("post deleted")) } func NewPostRouter() http.Handler { r := chi.NewRouter() r.Get("/{id}", getPost) r.Post("/", postPost) r.Get("/", listPosts) r.Delete("/{id}", deletePost) return r }