summaryrefslogtreecommitdiff
path: root/srv/src/api/posts.go
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2022-05-13 13:35:54 -0600
committerBrian Picciano <mediocregopher@gmail.com>2022-05-14 15:22:16 -0600
commit7e87c09c50983a25ed7c9816e11a856903ed89d5 (patch)
treeee817372a0b3f2c829ad8b81ca925a5067714146 /srv/src/api/posts.go
parent2929b4279c7a8128bd305290cc4187b6afb11cde (diff)
Add /posts handler to api
Diffstat (limited to 'srv/src/api/posts.go')
-rw-r--r--srv/src/api/posts.go46
1 files changed, 46 insertions, 0 deletions
diff --git a/srv/src/api/posts.go b/srv/src/api/posts.go
new file mode 100644
index 0000000..995f2fb
--- /dev/null
+++ b/srv/src/api/posts.go
@@ -0,0 +1,46 @@
+package api
+
+import (
+ "errors"
+ "fmt"
+ "net/http"
+ "path/filepath"
+ "strings"
+
+ "github.com/mediocregopher/blog.mediocregopher.com/srv/api/apiutils"
+ "github.com/mediocregopher/blog.mediocregopher.com/srv/post"
+)
+
+func (a *api) postHandler() http.Handler {
+ return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
+
+ id := strings.TrimSuffix(filepath.Base(r.URL.Path), ".html")
+
+ storedPost, err := a.params.PostStore.GetByID(id)
+
+ if errors.Is(err, post.ErrPostNotFound) {
+ http.Error(rw, "Post not found", 404)
+ return
+ } else if err != nil {
+ apiutils.InternalServerError(
+ rw, r, fmt.Errorf("fetching post with id %q: %w", id, err),
+ )
+ return
+ }
+
+ renderablePost, err := post.NewRenderablePost(a.params.PostStore, storedPost)
+ if err != nil {
+ apiutils.InternalServerError(
+ rw, r, fmt.Errorf("constructing renderable post with id %q: %w", id, err),
+ )
+ return
+ }
+
+ if err := a.params.PostHTTPRenderer.Render(rw, renderablePost); err != nil {
+ apiutils.InternalServerError(
+ rw, r, fmt.Errorf("rendering post with id %q: %w", id, err),
+ )
+ return
+ }
+ })
+}