diff options
Diffstat (limited to 'srv/src/api/posts.go')
-rw-r--r-- | srv/src/api/posts.go | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/srv/src/api/posts.go b/srv/src/api/posts.go index e5916e1..845d9ff 100644 --- a/srv/src/api/posts.go +++ b/srv/src/api/posts.go @@ -7,6 +7,7 @@ import ( "net/http" "path/filepath" "strings" + "time" "github.com/gomarkdown/markdown" "github.com/gomarkdown/markdown/html" @@ -168,6 +169,35 @@ func (a *api) editPostHandler() http.Handler { }) } +func (a *api) postPostHandler() http.Handler { + + return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { + + p := post.Post{ + ID: r.PostFormValue("id"), + Title: r.PostFormValue("title"), + Description: r.PostFormValue("description"), + Tags: strings.Fields(r.PostFormValue("tags")), + Series: r.PostFormValue("series"), + } + + p.Body = strings.TrimSpace(r.PostFormValue("body")) + // textareas encode newlines as CRLF for historical reasons + p.Body = strings.ReplaceAll(p.Body, "\r\n", "\n") + + if err := a.params.PostStore.Set(p, time.Now()); err != nil { + apiutil.InternalServerError( + rw, r, fmt.Errorf("storing post with id %q: %w", p.ID, err), + ) + return + } + + redirectPath := fmt.Sprintf("posts/%s?method=edit", p.ID) + + a.executeRedirectTpl(rw, r, redirectPath) + }) +} + func (a *api) deletePostHandler() http.Handler { return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { |