-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathprettyerror.go
169 lines (154 loc) · 3.83 KB
/
prettyerror.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
package engine
import (
"bytes"
"net/http"
"strconv"
"strings"
"text/template"
)
const (
// Highlight of errors in the code
preHighlight = "<font style='color: red !important'>"
postHighlight = "</font>"
// HTML template for the error page
htmlTemplate = `<!doctype html>
<html>
<head>
<title>{{.Title}}</title>
<style>
body {
background-color: #f0f0f0;
color: #0b0b0b;
font-family: Lato,'Trebuchet MS',Helvetica,sans-serif;
font-weight: 300;
margin: 3.5em;
font-size: 1.3em;
}
h1 {
color: #101010;
}
div {
margin-bottom: 35pt;
}
#right {
text-align: right;
}
#wrap {
white-space: pre-wrap;
}
</style>
</head>
<body>
<div style="font-size: 3em; font-weight: bold;">{{.Title}}</div>
Contents of {{.Filename}}:
<div>
<pre><code>{{.Code}}</code></pre>
</div>
Error message:
<div>
<pre id="wrap"><code style="color: #A00000;">{{.ErrorMessage}}</code></pre>
</div>
<div id="right">{{.VersionString}}</div>
</body>
</html>`
)
// Given a lowercase string for the language, return an appropriate error page title
func errorPageTitle(lang string) string {
switch lang {
case "":
return "Error"
case "css":
return "CSS Error"
case "gcss":
return "GCSS Error"
case "html":
return "HTML Error"
case "jsx":
return "JSX Error"
case "lua":
return "Lua Error"
case "teal":
return "Teal Error"
default:
return lang + " Error"
}
}
// PrettyError serves an informative error page to the user
func (ac *Config) PrettyError(w http.ResponseWriter, req *http.Request, filename string, filebytes []byte, errormessage, lang string) {
// HTTP status
w.WriteHeader(http.StatusOK)
// HTTP content type
w.Header().Add(contentType, htmlUTF8)
var (
code string
err error
)
// The line that the error refers to, for the case of Lua
linenr := -1
if len(filebytes) > 0 {
if lang == "lua" {
fields := strings.SplitN(errormessage, ":", 3)
if len(fields) > 2 {
numberfield := fields[1]
if strings.Contains(numberfield, "(") {
numberfield = strings.Split(numberfield, "(")[0]
}
linenr, err = strconv.Atoi(numberfield)
linenr--
if err != nil {
linenr = -1
}
}
} else if lang == "amber" {
if strings.Contains(errormessage, "- Line: ") {
fields := strings.SplitN(errormessage, "- Line: ", 2)
if strings.Contains(fields[1], ",") {
numberfields := strings.SplitN(fields[1], ",", 2)
linenr, err = strconv.Atoi(strings.TrimSpace(numberfields[0]))
linenr--
if err != nil {
linenr = -1
}
}
}
}
filebytes = bytes.ReplaceAll(filebytes, []byte("<"), []byte("<"))
bytelines := bytes.Split(filebytes, []byte("\n"))
if (linenr >= 0) && (linenr < len(bytelines)) {
bytelines[linenr] = []byte(preHighlight + string(bytelines[linenr]) + postHighlight)
}
code = string(bytes.Join(bytelines, []byte("\n")))
}
title := errorPageTitle(lang)
data := struct {
Title string
Filename string
Code string
ErrorMessage string
VersionString string
}{
Title: title,
Filename: filename,
Code: code,
ErrorMessage: strings.TrimSpace(errormessage),
VersionString: ac.versionString,
}
tmpl, err := template.New("errorPage").Parse(htmlTemplate)
if err != nil {
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
return
}
if ac.autoRefresh {
var htmlbuf bytes.Buffer
if err := tmpl.Execute(&htmlbuf, data); err != nil {
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
return
}
w.Write(ac.InsertAutoRefresh(req, htmlbuf.Bytes()))
return
}
if err := tmpl.Execute(w, data); err != nil {
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
return
}
}