-
Notifications
You must be signed in to change notification settings - Fork 0
/
goplayground.go
260 lines (215 loc) · 5.89 KB
/
goplayground.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
package main
import (
"bytes"
"encoding/json"
"errors"
"io"
"io/ioutil"
"log"
"net/http"
"net/url"
"strings"
"time"
)
const userAgent = "http://tools.arslexis.io/goplayground/"
// maxSnippetSize value taken from
// https://github.com/golang/playground/blob/master/app/goplay/share.go
const maxSnippetSize = 64 * 1024
// FmtResponse is the response returned from
// upstream play.golang.org/fmt request
type FmtResponse struct {
Body string
Error string
}
// CompileEvent represents individual
// event record in CompileResponse
type CompileEvent struct {
Message string
Kind string
Delay time.Duration
}
// CompileResponse is the response returned from
// upstream play.golang.org/compile request
type CompileResponse struct {
Body *string
Events []*CompileEvent
Errors string
}
func doRequest(method, url, contentType string, body io.Reader) ([]byte, error) {
req, err := http.NewRequest(method, url, body)
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", contentType)
req.Header.Add("User-Agent", userAgent)
response, err := http.DefaultClient.Do(req)
if err != nil {
return nil, err
}
var bodyBytes bytes.Buffer
_, err = io.Copy(&bodyBytes, io.LimitReader(response.Body, maxSnippetSize+1))
response.Body.Close()
if err != nil {
return nil, err
}
if bodyBytes.Len() > maxSnippetSize {
return nil, errors.New("snippet is too large")
}
return bodyBytes.Bytes(), nil
}
func postForm(url string, data url.Values) ([]byte, error) {
return doRequest("POST", url, "application/x-www-form-urlencoded", strings.NewReader(data.Encode()))
}
func runShare(body io.Reader) ([]byte, error) {
return doRequest("POST", "https://play.golang.org/share", "text/plain", body)
}
func runImports(body *string) ([]byte, error) {
form := url.Values{}
form.Add("imports", "true")
form.Add("body", *body)
return postForm("https://play.golang.org/fmt", form)
}
func runCompile(body *string) ([]byte, error) {
form := url.Values{}
form.Add("body", *body)
form.Add("version", "2")
return postForm("https://play.golang.org/compile", form)
}
// format code snippet
func fmtHandler(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
if r.Method != http.MethodPost {
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
return
}
bodyBytes, err := io.ReadAll(r.Body)
if err != nil {
http.Error(w, "Failed to read request data", http.StatusInternalServerError)
return
}
body := string(bodyBytes)
bodyBytes, err = runImports(&body)
if err != nil {
log.Printf("runImports() error: %v", err)
http.Error(w, "Failed to format source code", http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
w.Write(bodyBytes)
}
func compileHandler(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
if r.Method != http.MethodPost {
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
return
}
bodyBytes, err := io.ReadAll(r.Body)
if err != nil {
http.Error(w, "Failed to read request data", http.StatusInternalServerError)
return
}
body := string(bodyBytes)
bodyBytes, err = runImports(&body)
if err != nil {
log.Printf("runImports() error: %v", err)
http.Error(w, "Failed to format source code", http.StatusInternalServerError)
return
}
fmtResponse := FmtResponse{}
err = json.Unmarshal(bodyBytes, &fmtResponse)
if err != nil {
log.Printf("fmtResponse unmarshal error: %v", err)
http.Error(w, "Failed to decode upstream server response", http.StatusInternalServerError)
return
}
if fmtResponse.Error != "" {
w.Write(bodyBytes)
return
}
bodyUpdated := fmtResponse.Body != body
bodyBytes, err = runCompile(&fmtResponse.Body)
if err != nil {
log.Printf("runCompile() error: %v", err)
http.Error(w, "Failed to compile source code", http.StatusInternalServerError)
return
}
if !bodyUpdated {
w.Write(bodyBytes)
return
}
// return a new payload with the formatted body
compileResponse := CompileResponse{}
err = json.Unmarshal(bodyBytes, &compileResponse)
if err != nil {
log.Printf("compileResponse unmarshal error: %v", err)
http.Error(w, "Failed to decode upstream server response", http.StatusInternalServerError)
return
}
compileResponse.Body = &fmtResponse.Body
bodyBytes, err = json.Marshal(compileResponse)
if err != nil {
log.Printf("compileResponse marshal error: %v", err)
http.Error(w, "Failed to encode data", http.StatusInternalServerError)
return
}
w.Write(bodyBytes)
}
func shareHandler(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
if r.Method != http.MethodPost {
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
return
}
bodyBytes, err := runShare(r.Body)
if err != nil {
http.Error(w, "Failed to send share request", http.StatusInternalServerError)
return
}
w.Write(bodyBytes)
}
// given the hash of the content get the content
func loadHandler(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
if r.Method != http.MethodGet {
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
return
}
response, err := http.Get("https://play.golang.org/p/" + r.URL.RawQuery + ".go")
if err != nil {
http.Error(w, "Failed to load snippet", http.StatusInternalServerError)
return
}
defer response.Body.Close()
bodyBytes, err := ioutil.ReadAll(response.Body)
if err != nil {
http.Error(w, "Failed to read data", http.StatusInternalServerError)
}
if response.StatusCode != http.StatusOK {
http.Error(w, string(bodyBytes), response.StatusCode)
return
}
w.Write(bodyBytes)
}
func handleGoPlayground(w http.ResponseWriter, r *http.Request) {
uri := r.URL.Path
call := strings.TrimPrefix(uri, "/api/goplay/")
if call == "" {
logErrorf("/api/goplay/ has no name\n")
return
}
switch call {
case "compile":
compileHandler(w, r)
return
case "share":
shareHandler(w, r)
return
case "load":
loadHandler(w, r)
return
case "fmt":
fmtHandler(w, r)
return
}
http.NotFound(w, r)
}