-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrunner.go
executable file
·152 lines (126 loc) · 3.44 KB
/
runner.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
package main
import (
"encoding/json"
"github.com/coderbyte-org/cb-code-runner/cmd"
"github.com/coderbyte-org/cb-code-runner/language"
"io/ioutil"
"os"
"path/filepath"
"net/http"
"log"
)
type Payload struct {
Language string `json:"language"`
Files []*InMemoryFile `json:"files"`
Stdin string `json:"stdin"`
Command string `json:"command"`
}
type InMemoryFile struct {
Name string `json:"name"`
Content string `json:"content"`
}
type Result struct {
Stdout string `json:"stdout"`
Stderr string `json:"stderr"`
Error string `json:"error"`
Duration string `json:"duration"`
}
func main() {
http.HandleFunc("/", func (w http.ResponseWriter, r *http.Request) {
var errOccured bool = false
// get input data
body, _ := ioutil.ReadAll(r.Body)
bodyData := string(body)
log.Println(bodyData)
payload := &Payload{}
err := json.Unmarshal([]byte(bodyData), payload)
if err != nil {
log.Println("Failed to parse input json (%s)\n", err.Error())
errOccured = true
}
// Ensure that we have at least one file
if !errOccured && len(payload.Files) == 0 {
log.Println("No files given\n")
errOccured = true
}
// Check if we support given language
if !errOccured && !language.IsSupported(payload.Language) {
log.Println("Language '%s' is not supported\n", payload.Language)
errOccured = true
}
// Write files to disk
filepaths, err := writeFiles(payload.Files)
if !errOccured && err != nil {
log.Println("Failed to write file to disk (%s)", err.Error())
errOccured = true
}
var stdout, stderr, duration string
if (!errOccured) {
if payload.Command == "" {
stdout, stderr, err, duration = language.Run(payload.Language, filepaths, payload.Stdin)
} else {
workDir := filepath.Dir(filepaths[0])
stdout, stderr, err, duration = cmd.RunBashStdin(workDir, payload.Command, payload.Stdin)
}
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusCreated)
writeResult(stdout, stderr, err, duration, w)
}
})
port := os.Getenv("PORT")
if port == "" {
log.Fatal("$PORT must be set")
}
log.Fatal(http.ListenAndServe(":" + port, nil))
}
// Writes files to disk, returns list of absolute filepaths
func writeFiles(files []*InMemoryFile) ([]string, error) {
// Create temp dir
tmpPath, err := ioutil.TempDir("", "")
if err != nil {
return nil, err
}
paths := make([]string, len(files), len(files))
for i, file := range files {
path, err := writeFile(tmpPath, file)
if err != nil {
return nil, err
}
paths[i] = path
}
return paths, nil
}
// Writes a single file to disk
func writeFile(basePath string, file *InMemoryFile) (string, error) {
// Get absolute path to file inside basePath
absPath := filepath.Join(basePath, file.Name)
// Create all parent dirs
err := os.MkdirAll(filepath.Dir(absPath), 0775)
if err != nil {
return "", err
}
// Write file to disk
err = ioutil.WriteFile(absPath, []byte(file.Content), 0664)
if err != nil {
return "", err
}
// Return absolute path to file
return absPath, nil
}
func writeResult(stdout, stderr string, err error, duration string, writer http.ResponseWriter) {
result := &Result{
Stdout: stdout,
Stderr: stderr,
Error: errToStr(err),
Duration: duration,
}
json.NewEncoder(os.Stdout).Encode(result)
responseJSON, err := json.Marshal(result)
writer.Write(responseJSON)
}
func errToStr(err error) string {
if err != nil {
return err.Error()
}
return ""
}