-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebTemplate.go
430 lines (370 loc) · 11.7 KB
/
webTemplate.go
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
package webServer
import (
"fmt"
h_template "html/template"
"log"
"net/http"
"os"
"sync"
t_template "text/template"
)
// SampleFirstTextTemplate 一番簡単なテンプレートの使い方
func SampleFirstTextTemplate() {
type Inventory struct {
Material string
Count uint
}
sweaters := Inventory{"wool", 17}
tmpl, err := t_template.New("test").Parse("{{.Count}} items are made of {{.Material}}\n")
if err != nil {
panic(err)
}
err = tmpl.Execute(os.Stdout, sweaters)
if err != nil {
panic(err)
}
}
// SampleTextTemplateSpaces 空白のトリミングを試す
func SampleTextTemplateSpaces() {
tmpl01, _ := t_template.New("test").Parse("{{23 -}} < {{- 45}}\n")
tmpl01.Execute(os.Stdout, "")
// "23<45" と出力される
tmpl02, _ := t_template.New("test").Parse("hello {{- 23 -}} < {{ 45 -}} world\n")
tmpl02.Execute(os.Stdout, "")
// "hello23< 45world" と出力される
}
// data テンプレートでメソッドが使えるか試すため
type data struct {
Name string
Age int
}
// AgePlus5 テンプレートでメソッドが使えるか試す
func (d data) AgePlus5() int {
return d.Age + 5
}
// SampleTextTemplateAction 構文を試す
func SampleTextTemplateAction() {
const text = `
hello
{{- /* コメント */ -}}
world
{{/* output と出力するバリエーション */ -}}
{{"output" | printf "%q"}}
{{with $x := "output"}}{{$x | printf "%q"}}{{end}}
{{/* テンプレートを入れ子にする */ -}}
{{define "T1"}}ONE{{end}}
{{define "T2"}}TWO{{end}}
{{define "T3"}}{{template "T1"}} {{template "T2"}}{{end}}
{{template "T3"}}
{{/* スライスを受け取って for 文回す */ -}}
{{ range . }}
{{ .Name }}: {{ .Age }}
{{ end }}
{{/* スライスの特定要素を取り出す */ -}}
{{ index . 0 }}
{{ (index . 2).Name }}
{{/* テンプレートでメソッドが使えるか */ -}}
{{ (index . 1).AgePlus5 }}
`
d := []data{
{
Name: "aaa",
Age: 10,
},
{
Name: "bbb",
Age: 20,
},
{
Name: "ccc",
Age: 30,
},
}
tmpl01, _ := t_template.New("test").Parse(text)
tmpl01.Execute(os.Stdout, d)
}
// SampleTextTemplate 公式リファレンスのサンプルのちょっと改造
// See: [text/template にあったサンプル](https://pkg.go.dev/text/template#example-Template) より
func SampleTextTemplate() {
// Define a template.
const letter = `
親愛なる {{.Name}},
{{if .Attended}}
結婚式でお会いできて嬉しかったです。
{{- else}}
結婚式に来れなくて残念です。
{{- end}}
{{with .Gift -}}
素敵な {{.}} をありがとうございました。
{{end}}
よろしくお願いします。
ジョシー
`
// Prepare some data to insert into the template.
// テンプレートに挿入するデータを用意する。
type Recipient struct {
Name, Gift string
Attended bool // 出席
}
// Recipient 受取人
var recipients = []Recipient{
{"ミルドレッドおばさん", "bone china tea set", true},
{"ジョン叔父さん", "moleskin pants", false},
{"いとこのロドニー", "", false},
}
// Create a new template and parse the letter into it.
// 新しいテンプレートを作成し、そのテンプレートに手紙を解析します。
t := t_template.Must(t_template.New("letter").Parse(letter))
// Execute the template for each recipient.
// 宛先ごとにテンプレートを実行します。
for _, r := range recipients {
// とりあえずコンソールに出力する
err := t.Execute(os.Stdout, r)
if err != nil {
log.Println("executing template:", err)
}
}
}
// SampleHtmlTemplate 公式リファレンスのサンプルのちょっと改造
// See: [html/template にあったサンプル](https://pkg.go.dev/html/template#example-package) より
func SampleHtmlTemplate() {
const tpl = `
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{.Title}}</title>
</head>
<body>
{{- range .Items}}
<div>{{ . }}</div>
{{- else}}
<div>行なし</div>
{{- end}}
</body>
</html>
`
check := func(err error) {
if err != nil {
log.Fatal(err)
}
}
t, err := h_template.New("webpage").Parse(tpl)
check(err)
type base struct {
Title string
Items []string
}
// 1ページ目
data := base{
Title: "1ページ目",
Items: []string{
"写真",
"ブログ",
},
}
// とりあえずコンソールに出力する
err = t.Execute(os.Stdout, data)
check(err)
// 2ページ目
noItems := base{
Title: "2ページ目",
Items: []string{},
}
// とりあえずコンソールに出力する
err = t.Execute(os.Stdout, noItems)
check(err)
}
// SampleHtmlTemplateAutoescaping 公式リファレンスのサンプルのちょっと改造
// html/template にすると script タグがちゃんとエスケープされる確認
// See: [html/template にあったサンプル](https://pkg.go.dev/html/template#example-package-Autoescaping) より
func SampleHtmlTemplateAutoescaping() {
const text = `{{define "T"}}
Hello, {{.}}!
{{end}}`
t, _ := h_template.New("foo").Parse(text)
t.ExecuteTemplate(os.Stdout, "T", "<script>alert('アラートだよ')</script>")
}
// SampleHtmlTemplateEscape 公式リファレンスのサンプルのちょっと改造
// いろいろなエスケープ方法
// See: [html/template にあったサンプル](https://pkg.go.dev/html/template#example-package-Escape) より
func SampleHtmlTemplateEscape() {
const s = `"フラン & フレディー's ダイナー" <[email protected]>`
v := []interface{}{`"フラン & フレディー's ダイナー"`, ' ', `<[email protected]>`}
fmt.Print("-1-: ")
fmt.Println(h_template.HTMLEscapeString(s))
fmt.Print("-2-: ")
h_template.HTMLEscape(os.Stdout, []byte(s))
fmt.Fprintln(os.Stdout, "")
fmt.Print("-3-: ")
fmt.Println(h_template.HTMLEscaper(v...))
fmt.Print("-4-: ")
fmt.Println(h_template.JSEscapeString(s))
fmt.Print("-5-: ")
h_template.JSEscape(os.Stdout, []byte(s))
fmt.Fprintln(os.Stdout, "")
fmt.Print("-6-: ")
fmt.Println(h_template.JSEscaper(v...))
fmt.Print("-7-: ")
fmt.Println(h_template.URLQueryEscaper(v...))
}
// textTemplate ServeHTTP() メソッドを持つための struct
type textTemplate struct {
fileName string // ファイル名の格納
data interface{} // html に埋め込む値の構造体
templ *t_template.Template // templ コンパイルされたテンプレートの参照を保持
}
// ServeHTTP http.Handle() の引数に渡すため
func (t *textTemplate) ServeHTTP(w http.ResponseWriter, r *http.Request) {
t.templ = t_template.Must(t_template.ParseFiles(t.fileName))
// テンプレートをコンパイル(値の埋め込み など)
t.templ.Execute(w, t.data)
}
// MainTextTemplateServer text/template を使った方法
func MainTextTemplateServer() {
// html に渡す値たち
// field は public じゃないと html に埋め込めない
type data struct {
Name string
Age int
}
d := data{Name: "ozaki", Age: 25}
t := &textTemplate{fileName: "web/template01.html", data: d}
http.Handle("/template", t)
// サーバを立てる
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal("ListenAndServer:", err)
}
}
// htmlTemplate ServeHTTP() メソッドを持つための struct
type htmlTemplate struct {
fileName string // ファイル名の格納
data interface{} // html に埋め込む値の構造体
templ *h_template.Template // templ コンパイルされたテンプレートの参照を保持
}
// ServeHTTP http.Handle() の引数に渡すため
func (t *htmlTemplate) ServeHTTP(w http.ResponseWriter, r *http.Request) {
t.templ = h_template.Must(h_template.ParseFiles(t.fileName))
// テンプレートをコンパイル(値の埋め込み など)
t.templ.Execute(w, t.data)
}
// MainHtmlTemplateServer html/template を使った方法
func MainHtmlTemplateServer() {
// html に渡す値たち
type data struct {
Name string
Age int
}
d := data{Name: "ozaki", Age: 25}
t := &htmlTemplate{fileName: "web/template02.html", data: d}
http.Handle("/template", t)
// サーバを立てる
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal("ListenAndServer:", err)
}
}
// template02 code injection を試す
type template02 struct {
fileName string // ファイル名の格納
data interface{} // html に埋め込む値の構造体
t_templ *t_template.Template // templ コンパイルされたテンプレートの参照を保持
h_templ *h_template.Template // templ コンパイルされたテンプレートの参照を保持
}
// MainTemplateInjection code injection をしてみる
func MainTemplateInjection() {
type data struct {
Name string
Age int
}
// code injection をしてみる
d := data{
Name: "<script>alert(\"インジェクション\")</script>",
Age: 26,
}
t02 := &template02{fileName: "web/template01.html", data: d}
// コードインジェクションができる
http.HandleFunc("/template-injection", func(w http.ResponseWriter, r *http.Request) {
t02.t_templ = t_template.Must(t_template.ParseFiles(t02.fileName))
// テンプレートをコンパイル(値の埋め込み など)
t02.t_templ.Execute(w, t02.data)
})
// コードインジェクションができない
http.HandleFunc("/template", func(w http.ResponseWriter, r *http.Request) {
t02.h_templ = h_template.Must(h_template.ParseFiles(t02.fileName))
// テンプレートをコンパイル(値の埋め込み など)
t02.h_templ.Execute(w, t02.data)
})
// サーバを立てる
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal("ListenAndServer:", err)
}
}
// MainTemplateComponent テンプレートの一部共通化を試す
func MainTemplateComponent() {
http.HandleFunc("/template-component", func(w http.ResponseWriter, r *http.Request) {
d := struct {
Header struct {
Title string
UserName string
}
Message string
}{
Header: struct {
Title string
UserName string
}{
Title: "テストページ",
UserName: "ゲスト",
},
Message: "こんにちは",
}
t := h_template.Must(h_template.ParseFiles(
"web/template03.html",
"web/template03_header.html",
"web/template03_footer.html",
))
t.Execute(w, d)
})
http.ListenAndServe(":8080", nil)
}
// onceTemplate テンプレートのコンパイルを1回だけにする
type onceTemplate struct {
fileName string // ファイル名の格納
data interface{} // テンプレートに埋め込む値
once sync.Once // コンパイルするために使う
templ *h_template.Template // templ コンパイルされたテンプレートの参照を保持
}
// ServeHTTP http のため インタフェースを実装する
// sync.Once の値は常に同じものを使う必要があるため レシーバがポインタである必要がある
func (t *onceTemplate) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// 1回だけ実行する
t.once.Do(func() {
// ディレクトリの書き方が このファイルからの path ではなく 実行している場所(main.go など)からの path じゃないと動かない
t.templ = h_template.Must(h_template.ParseFiles(t.fileName))
})
// 値をテンプレートに埋め込む
err := t.templ.Execute(w, t.data)
if err != nil {
log.Println(err)
}
}
// MainOnceTemplate テンプレートのコンパイルを1回だけのパターン
func MainOnceTemplate() {
// ここで URL に対応する http.Handler を DefaultServeMux に登録
http.Handle("/once", &onceTemplate{
fileName: "web/template02.html",
data: data{
Name: "ozaki",
Age: 26,
},
})
// Web サーバを開始
// ListenAndServe() の第2引数が nil なら DefaultServeMux が Handler として指定される
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Println(err)
}
}