summaryrefslogtreecommitdiff
path: root/src/gmi/tpl.go
blob: f6c17544c2400eeaf30282b85018262e937cef69 (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
package gmi

import (
	"bytes"
	"context"
	"embed"
	"errors"
	"fmt"
	"io"
	"io/fs"
	"mime"
	"net/url"
	"path"
	"path/filepath"
	"strings"
	"text/template"

	"dev.mediocregopher.com/mediocre-blog.git/src/post"
	"dev.mediocregopher.com/mediocre-blog.git/src/render"
	"dev.mediocregopher.com/mediocre-go-lib.git/mctx"
	"git.sr.ht/~adnano/go-gemini"
)

type ctxKey string

const (
	ctxKeyTplPath ctxKey = "tplPath"
)

func withTplPath(ctx context.Context, path string) context.Context {
	return context.WithValue(ctx, ctxKeyTplPath, path)
}

//go:embed tpl
var tplFS embed.FS

func (a *api) tplHandler() (gemini.Handler, error) {

	blogURL := func(base *url.URL, path string, abs bool) string {

		// filepath.Join strips trailing slash, but we want to keep it
		trailingSlash := strings.HasSuffix(path, "/")

		path = filepath.Join("/", base.Path, path)

		if trailingSlash && path != "/" {
			path += "/"
		}

		if !abs {
			return path
		}

		u := *base
		u.Path = path
		return u.String()
	}

	preprocessFuncs := post.PreprocessFunctions{
		BlogURL: func(path string) string {
			return blogURL(a.params.PublicURL, path, false)
		},
		BlogHTTPURL: func(path string) string {
			return blogURL(a.params.HTTPPublicURL, path, true)
		},
		BlogGeminiURL: func(path string) string {
			return blogURL(a.params.PublicURL, path, true)
		},
		AssetURL: func(id string) string {
			path := filepath.Join("assets", id)
			return blogURL(a.params.PublicURL, path, false)
		},
		PostURL: func(id string) string {
			path := filepath.Join("posts", id) + ".gmi"
			return blogURL(a.params.PublicURL, path, false)
		},
		StaticURL: func(path string) string {
			path = filepath.Join("static", path)
			return blogURL(a.params.HTTPPublicURL, path, true)
		},
		Image: func(args ...string) (string, error) {
			var (
				id    = args[0]
				descr = "Image"
			)

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

			path := filepath.Join("assets", id)
			path = blogURL(a.params.PublicURL, path, false)

			return fmt.Sprintf("\n=> %s %s", path, descr), nil
		},
	}

	allTpls := template.New("")

	allTpls.Funcs(preprocessFuncs.ToFuncMap())

	allTpls.Funcs(template.FuncMap{
		"PostURLAbs": func(id string) string {
			path := filepath.Join("posts", id) + ".gmi"
			return blogURL(a.params.PublicURL, path, true)
		},
		"PostHTTPURL": func(id string) string {
			path := filepath.Join("posts", id)
			return preprocessFuncs.BlogHTTPURL(path)
		},
	})

	err := fs.WalkDir(tplFS, "tpl", func(path string, d fs.DirEntry, err error) error {

		if err != nil {
			return err
		}

		if d.IsDir() {
			return nil
		}

		body, err := fs.ReadFile(tplFS, path)
		if err != nil {
			panic(err)
		}

		name := strings.TrimPrefix(path, "tpl/")

		allTpls, err = allTpls.New(name).Parse(string(body))
		if err != nil {
			return fmt.Errorf("parsing %q as template: %w", path, err)
		}

		return nil
	})

	if err != nil {
		return nil, fmt.Errorf("parsing templates: %w", err)
	}

	return gemini.HandlerFunc(func(
		ctx context.Context,
		rw gemini.ResponseWriter,
		r *gemini.Request,
	) {
		tplPath, _ := ctx.Value(ctxKeyTplPath).(string)
		if tplPath == "" {
			tplPath = r.URL.Path
		}
		tplPath = strings.TrimPrefix(tplPath, "/")

		mimeType := mime.TypeByExtension(path.Ext(tplPath))

		ctx = mctx.Annotate(ctx,
			"url", r.URL,
			"tplPath", tplPath,
			"mimeType", mimeType,
		)

		tpl := allTpls.Lookup(tplPath)

		if tpl == nil {
			rw.WriteHeader(gemini.StatusNotFound, "Page not found, sorry!")
			return
		}

		if mimeType != "" {
			rw.SetMediaType(mimeType)
		}

		buf := new(bytes.Buffer)

		err := tpl.Execute(buf, render.NewMethods(
			ctx,
			r.URL,
			a.params.PublicURL,
			a.params.HTTPGeminiGatewayURL,
			a.params.PostStore,
			nil, // asset.Store, not supported by gemini endpoint
			nil, // post.DraftStore, not supported by gemini endpoint
			preprocessFuncs,
		))

		if errors.Is(err, post.ErrPostNotFound) {
			a.params.Logger.Warn(ctx, "post not found", err)
			rw.WriteHeader(gemini.StatusNotFound, "Post not found")
		} else if err != nil {
			a.params.Logger.Error(ctx, "rendering error", err)
			rw.WriteHeader(gemini.StatusTemporaryFailure, err.Error())
			return
		}

		io.Copy(rw, buf)
	}), nil
}