-
Notifications
You must be signed in to change notification settings - Fork 2
/
server.go
223 lines (189 loc) · 5.74 KB
/
server.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
package main
import (
"encoding/json"
"github.com/gorilla/handlers"
"tailon/cmd"
"tailon/frontend"
"github.com/shurcooL/httpfs/html/vfstemplate"
"github.com/shurcooL/httpgzip"
"gopkg.in/igm/sockjs-go.v3/sockjs"
"html/template"
"log"
"net/http"
"os"
"os/exec"
"strconv"
"time"
)
func setupRoutes(relativeroot string) *http.ServeMux {
router := http.NewServeMux()
// This is either "frontend/frontend.go" or "frontend/assets_vfsdata.go", depending
// on the "dev" build tag. The latter is generated by "frontend/Makefile" with "vfsgen".
staticHandler := noCacheControl(httpgzip.FileServer(frontend.Assets, httpgzip.FileServerOptions{IndexHTML: true}))
sockjsHandler := sockjs.NewHandler(relativeroot+"ws", sockjs.DefaultOptions, wsHandler)
staticHandler = http.StripPrefix(relativeroot+"vfs/", staticHandler)
router.Handle(relativeroot+"vfs/", staticHandler)
router.Handle(relativeroot+"ws/", sockjsHandler)
router.HandleFunc(relativeroot+"files/", downloadHandler)
router.HandleFunc(relativeroot+"", indexHandler)
return router
}
func setupServer(config *Config, addr string, logger *log.Logger) *http.Server {
router := setupRoutes(config.RelativeRoot)
loggingRouter := handlers.LoggingHandler(os.Stderr, router)
server := http.Server{
Addr: addr,
Handler: loggingRouter,
ErrorLog: logger,
ReadTimeout: 5 * time.Second,
WriteTimeout: 10 * time.Second,
IdleTimeout: 15 * time.Second,
}
return &server
}
func indexHandler(w http.ResponseWriter, r *http.Request) {
t := template.Must(vfstemplate.ParseFiles(frontend.Assets, nil, "/templates/base.html", "/templates/tailon.html"))
t.Execute(w, config)
}
func downloadHandler(w http.ResponseWriter, r *http.Request) {
if !config.AllowDownload {
http.Error(w, "downloads forbidden by server", http.StatusForbidden)
return
}
path := r.URL.Query()["path"][0]
if !fileAllowed(path) {
log.Printf("warn: attempt to access unknown file: %s", path)
http.Error(w, "unknown file", http.StatusNotFound)
return
}
http.ServeFile(w, r, path)
}
func noCacheControl(h http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "no-store, no-cache, must-revalidate, max-age=0")
h.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
// FrontendCommand instances are the messages that the client sends to the server when the file, tool or script change.
type FrontendCommand struct {
Command string
Script string
Entry ListEntry
Nlines int
}
// The main sockjs handler.
func wsHandler(session sockjs.Session) {
messages := make(chan string)
done := make(chan struct{})
defer close(done)
go wsWriter(session, messages, done)
for {
if msg, err := session.Recv(); err == nil {
messages <- msg
continue
} else {
log.Print(err)
}
break
}
}
// Goroutine handling received messages and streaming of file contents.
func wsWriter(session sockjs.Session, messages chan string, done <-chan struct{}) {
// The processes that make up the pipeline. The stdout of procA is connected to the stdin of procB.
var procA *exec.Cmd
var procB *cmd.Cmd
cmdOptions := cmd.Options{Buffered: false, Streaming: true}
for {
select {
case msg := <-messages:
if msg == "list" {
lst := createListing(config.FileSpecs)
b, err := json.Marshal(lst)
if err != nil {
log.Println("error: ", err)
}
session.Send(string(b))
} else if msg[0] == '{' {
msgJSON := FrontendCommand{}
json.Unmarshal([]byte(msg), &msgJSON)
if !fileAllowed(msgJSON.Entry.Path) {
log.Print("Unknown file: ", msgJSON.Entry.Path)
continue
}
killProcs(procA, procB)
// Check if the command is using another command for stdin.
stdinSource := config.CommandSpecs[msgJSON.Command].Stdin
if stdinSource != "" {
actionA := config.CommandSpecs[stdinSource].Action
actionA = expandCommandArgs(actionA, msgJSON)
procA = exec.Command(actionA[0], actionA[1:]...)
log.Print("Running command: ", actionA)
}
actionB := config.CommandSpecs[msgJSON.Command].Action
actionB = expandCommandArgs(actionB, msgJSON)
procB = cmd.NewCmdOptions(cmdOptions, actionB[0], actionB[1:]...)
log.Print("Running command: ", actionB)
// Start streaming procB's stdout and stderr to the client.
go streamOutput(procA, procB, session)
}
case <-done:
killProcs(procA, procB)
return
}
}
}
// Expands the variables in main.CommandSpec.Action with the values in the
// frontend command. For example:
// ["tail", "-n", "$lines", "-F", "$path"] -> ["tail", "-n", "10", "-F", "f1.txt"]
func expandCommandArgs(action []string, cmd FrontendCommand) []string {
var res = make([]string, 0)
for _, arg := range action {
switch arg {
case "$lines":
res = append(res, strconv.Itoa(cmd.Nlines))
case "$path":
res = append(res, cmd.Entry.Path)
case "$script":
res = append(res, cmd.Script)
default:
res = append(res, arg)
}
}
return res
}
// Goroutine that streams command stdout and stderr to the client.
func streamOutput(procA *exec.Cmd, procB *cmd.Cmd, session sockjs.Session) {
if procA != nil {
procB.Stdin, _ = procA.StdoutPipe()
procA.Start()
}
statusChan := procB.Start()
for {
select {
case line := <-procB.Stdout:
msg := []string{"o", line}
data, _ := json.Marshal(msg)
session.Send(string(data))
case line := <-procB.Stderr:
msg := []string{"e", line}
data, _ := json.Marshal(msg)
session.Send(string(data))
case <-statusChan:
}
}
}
func killProcs(procA *exec.Cmd, procB *cmd.Cmd) {
if procA != nil {
log.Printf("Stopping pid %d", procA.Process.Pid)
procA.Process.Kill()
procA.Wait()
}
if procB != nil {
log.Printf("Stopping pid %d", procB.Status().PID)
if procB.Stdin != nil {
procB.Stdin.Close()
}
procB.Stop()
}
}