all repos — elgit @ 8b1540f0bd4d2e042b28506abcb3de9189399b1b

fork of legit: web frontend for git, written in go

routes/template.go (view raw)

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
package routes

import (
	"bytes"
	"fmt"
	"io"
	"log"
	"net/http"
	"path/filepath"
	"strings"

	"alin.ovh/elgit/git"
	"alin.ovh/elgit/templates"
	"github.com/microcosm-cc/bluemonday"
	"github.com/russross/blackfriday/v2"
)

func (d *deps) Write404(w http.ResponseWriter) {
	d.WriteError(w, templates.Error{
		Code:    http.StatusNotFound,
		Message: "nothing like that here.",
	})
}

func (d *deps) Write500(w http.ResponseWriter) {
	d.WriteError(w, templates.Error{
		Code:    http.StatusInternalServerError,
		Message: "something broke!",
	})
}

func (d *deps) WriteError(w http.ResponseWriter, err templates.Error) {
	w.WriteHeader(err.Code)
	data := templates.PageData{
		Meta:  d.c.Meta,
		Error: &err,
	}
	if err := templates.ErrorPage(data).Render(w); err != nil {
		log.Printf("error template: %s", err)
	}
}

func (d *deps) listFiles(files []git.NiceTree, data map[string]any, w http.ResponseWriter) {
	pageData := templates.PageData{
		Meta:        d.c.Meta,
		DisplayName: getDisplayName(data["name"].(string)),
		Name:        data["name"].(string),
		Ref:         data["ref"].(string),
		Description: data["desc"].(string),
		Parent:      "",
	}

	if parent, ok := data["parent"]; ok && parent != nil {
		pageData.Parent = parent.(string)
	}

	readme := ""
	if readmeContent, ok := data["readme"]; ok && readmeContent != nil {
		readme = readmeContent.(string)
	}

	dotdot := ""
	if dotdotPath, ok := data["dotdot"]; ok && dotdotPath != nil {
		dotdot = dotdotPath.(string)
	}

	if err := templates.TreePage(pageData, files, readme, dotdot).Render(w); err != nil {
		log.Println(err)

		return
	}
}

func countLines(r io.Reader) (int, error) {
	buf := make([]byte, 32*1024)
	bufLen := 0
	count := 0
	nl := []byte{'\n'}

	for {
		c, err := r.Read(buf)
		if c > 0 {
			bufLen += c
		}
		count += bytes.Count(buf[:c], nl)

		switch {
		case err == io.EOF:
			/* handle last line not having a newline at the end */
			if bufLen >= 1 && buf[(bufLen-1)%(32*1024)] != '\n' {
				count++
			}

			return count, nil
		case err != nil:
			return 0, err
		}
	}
}

func (d *deps) showFile(content string, data map[string]any, w http.ResponseWriter) {
	var renderedContent string
	if len(content) > 0 {
		switch filepath.Ext(data["path"].(string)) {
		case ".md":
			unsafe := blackfriday.Run(
				[]byte(content),
				blackfriday.WithExtensions(blackfriday.CommonExtensions),
			)
			html := bluemonday.UGCPolicy().SanitizeBytes(unsafe)
			renderedContent = string(html)
		default:
			safe := bluemonday.UGCPolicy().SanitizeBytes([]byte(content))
			renderedContent = fmt.Sprintf(`<pre>%s</pre>`, safe)
		}
	}

	lc, err := countLines(strings.NewReader(content))
	if err != nil {
		// Non-fatal, we'll just skip showing line numbers in the template.
		log.Printf("counting lines: %s", err)
	}

	lines := make([]int, lc)
	if lc > 0 {
		for i := range lines {
			lines[i] = i + 1
		}
	}

	pageData := templates.PageData{
		Meta:            d.c.Meta,
		DisplayName:     getDisplayName(data["name"].(string)),
		LineCount:       lines,
		Content:         content,
		RenderedContent: renderedContent,
		Name:            data["name"].(string),
		Ref:             data["ref"].(string),
		Description:     data["desc"].(string),
		Path:            data["path"].(string),
	}

	if err := templates.FilePage(pageData).Render(w); err != nil {
		log.Println(err)

		return
	}
}

func (d *deps) showRaw(content string, w http.ResponseWriter) {
	w.WriteHeader(http.StatusOK)
	w.Header().Set("Content-Type", "text/plain")
	_, err := w.Write([]byte(content))
	if err != nil {
		log.Println(err)
		d.Write500(w)
	}
}