summaryrefslogtreecommitdiff
path: root/src/http/posts.go
blob: 14224f23cda80d2b25e7d6d95a0c26ee30d6b9d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
package http

import (
	"bytes"
	"context"
	"errors"
	"fmt"
	"net/http"
	"path/filepath"
	"strings"
	txttpl "text/template"
	"time"

	"dev.mediocregopher.com/mediocre-blog.git/src/http/apiutil"
	"dev.mediocregopher.com/mediocre-blog.git/src/post"
	"dev.mediocregopher.com/mediocre-blog.git/src/post/asset"
	"dev.mediocregopher.com/mediocre-blog.git/src/render"
	"dev.mediocregopher.com/mediocre-go-lib.git/mctx"
)

func (a *api) postPreprocessFuncImage(args ...string) (string, error) {

	var (
		id    = args[0]
		descr = "TODO"
	)

	if len(args) > 1 {
		descr = args[1]
	}

	tpl := txttpl.New("image.html")

	tpl.Funcs(txttpl.FuncMap{
		"AssetURL": func(id string) string {
			return a.assetURL(id, false)
		},
	})

	tpl = txttpl.Must(tpl.Parse(mustReadTplFile("image.html")))

	tplPayload := struct {
		ID        string
		Descr     string
		Resizable bool
	}{
		ID:        id,
		Descr:     descr,
		Resizable: asset.IsImageResizable(id),
	}

	buf := new(bytes.Buffer)
	if err := tpl.ExecuteTemplate(buf, "image.html", tplPayload); err != nil {
		return "", err
	}

	return buf.String(), nil
}

func (a *api) postPreprocessFuncs() post.PreprocessFunctions {
	return post.PreprocessFunctions{
		BlogURL: func(path string) string {
			return a.blogURL(a.params.PublicURL, path, false)
		},
		BlogHTTPURL: func(path string) string {
			return a.blogURL(a.params.PublicURL, path, true)
		},
		BlogGeminiURL: func(path string) string {
			return a.blogURL(a.params.GeminiPublicURL, path, true)
		},
		AssetURL: func(id string) string {
			return a.assetURL(id, false)
		},
		PostURL: func(id string) string {
			return a.postURL(id, false)
		},
		StaticURL: func(path string) string {
			path = filepath.Join("static", path)
			return a.blogURL(a.params.PublicURL, path, false)
		},
		Image: a.postPreprocessFuncImage,
	}
}

func (a *api) getPostsHandler() http.Handler {
	var (
		tpl            = a.mustParseBasedTpl("posts.html")
		getPostHandler = a.getPostHandler()
	)

	return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
		if id := filepath.Base(r.URL.Path); id != "/" {
			getPostHandler.ServeHTTP(rw, r)
			return
		}
		a.executeTemplate(rw, r, tpl, nil)
	})
}

func (a *api) getPostHandler() http.Handler {

	tpl := a.mustParseBasedTpl("post.html")

	return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
		a.executeTemplate(rw, r, tpl, nil)
	})
}

func (a *api) managePostsHandler() http.Handler {
	tpl := a.mustParseBasedTpl("posts-manage.html")
	return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
		a.executeTemplate(rw, r, tpl, nil)
	})
}

func (a *api) editPostHandler(isDraft bool) http.Handler {
	tpl := a.mustParseBasedTpl("post-edit.html")
	return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
		a.executeTemplate(rw, r, tpl, struct {
			IsDraft bool
			Formats []post.Format
		}{
			IsDraft: isDraft,
			Formats: post.Formats,
		})
	})
}

func postFromPostReq(r *http.Request) (post.Post, error) {

	formatStr := r.PostFormValue("format")
	if formatStr == "" {
		return post.Post{}, errors.New("format is required")
	}

	format, err := post.FormatFromString(formatStr)
	if err != nil {
		return post.Post{}, fmt.Errorf("parsing format: %w", err)
	}

	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"),
		Format:      format,
	}

	// textareas encode newlines as CRLF for historical reasons
	p.Body = r.PostFormValue("body")
	p.Body = strings.ReplaceAll(p.Body, "\r\n", "\n")
	p.Body = strings.TrimSpace(p.Body)

	if p.ID == "" ||
		p.Title == "" ||
		p.Body == "" ||
		len(p.Tags) == 0 {
		return post.Post{}, errors.New("id, ritle, tags, and body are all required")
	}

	return p, nil
}

func (a *api) publishPost(ctx context.Context, p post.Post) error {

	first, err := a.params.PostStore.Set(p, time.Now())

	if err != nil {
		return fmt.Errorf("storing post with id %q: %w", p.ID, err)
	}

	if !first {
		return nil
	}

	if err := a.params.PostDraftStore.Delete(p.ID); err != nil {
		return fmt.Errorf("deleting draft: %w", err)
	}

	return nil
}

func (a *api) postPostHandler() http.Handler {

	return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {

		ctx := r.Context()

		p, err := postFromPostReq(r)
		if err != nil {
			apiutil.BadRequest(rw, r, err)
			return
		}

		ctx = mctx.Annotate(ctx, "postID", p.ID)

		if err := a.publishPost(ctx, p); err != nil {
			apiutil.InternalServerError(
				rw, r, fmt.Errorf("publishing post with id %q: %w", p.ID, err),
			)
			return
		}

		a.executeRedirectTpl(rw, r, a.editPostURL(p.ID, false))
	})
}

func (a *api) deletePostHandler(isDraft bool) http.Handler {

	return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {

		id := filepath.Base(r.URL.Path)

		if id == "/" {
			apiutil.BadRequest(rw, r, errors.New("id is required"))
			return
		}

		var err error

		if isDraft {
			err = a.params.PostDraftStore.Delete(id)
		} else {
			err = a.params.PostStore.Delete(id)
		}

		if errors.Is(err, post.ErrPostNotFound) {
			http.Error(rw, "Post not found", 404)
			return
		} else if err != nil {
			apiutil.InternalServerError(
				rw, r, fmt.Errorf("deleting post with id %q: %w", id, err),
			)
			return
		}

		if isDraft {
			a.executeRedirectTpl(rw, r, a.manageDraftPostsURL(false))
		} else {
			a.executeRedirectTpl(rw, r, a.managePostsURL(false))
		}
	})
}

func (a *api) previewPostHandler() http.Handler {

	tpl := a.mustParseBasedTpl("post.html")

	return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {

		p, err := postFromPostReq(r)
		if err != nil {
			apiutil.BadRequest(rw, r, err)
			return
		}

		storedPost := post.StoredPost{
			Post:        p,
			PublishedAt: time.Now(),
		}

		r = r.WithContext(render.WithPost(r.Context(), storedPost))
		a.executeTemplate(rw, r, tpl, nil)
	})
}