-
Notifications
You must be signed in to change notification settings - Fork 2
/
routes.go
212 lines (187 loc) · 5.63 KB
/
routes.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
/*
Copyright (C) 2016 Eric Ziscky
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package main
import (
"encoding/json"
"log"
"net/http"
"strconv"
"sync"
"time"
"github.com/gorilla/mux"
)
var memstore = make(map[*http.Request]map[string]interface{})
var memutex sync.Mutex
//StoreVar stores a request var in the request map
func StoreVar(r *http.Request, key string, v interface{}) {
memutex.Lock()
defer memutex.Unlock()
if memstore[r] == nil {
memstore[r] = make(map[string]interface{})
}
memstore[r][key] = v
}
//RemoveVars removes the request vars from the request map
func RemoveVars(r *http.Request) {
memutex.Lock()
defer memutex.Unlock()
delete(memstore, r)
}
//GetVar gets a variable from the request map
func GetVar(r *http.Request, key string) interface{} {
memutex.Lock()
defer memutex.Unlock()
return memstore[r][key]
}
//CheckToken checks the request token
func CheckToken(next http.HandlerFunc) http.HandlerFunc {
return func(rw http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
if vars["token"] != appConf.Token {
http.Error(rw, "Unauthorized", http.StatusUnauthorized)
return
}
next(rw, r)
}
}
//WithProcess adds the process to the request var
func WithProcess(next http.HandlerFunc) http.HandlerFunc {
return func(rw http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
pid, err := strconv.Atoi(vars["pid"])
if err != nil {
http.Error(rw, err.Error(), http.StatusBadRequest)
return
}
proc, exists := activeProcesses[pid]
if !exists {
http.Error(rw, "Process Does Not Exist", http.StatusNotFound)
return
}
StoreVar(r, "proc", proc)
StoreVar(r, "pid", pid)
next(rw, r)
}
}
//Stats returns the process stats via web API
func Stats(rw http.ResponseWriter, r *http.Request) {
proc := GetVar(r, "proc").(*ChildProcess)
defer RemoveVars(r)
if !proc.EStats {
rw.Write([]byte("Not allowed"))
return
}
stats, sterr := proc.Stats()
if sterr != nil {
http.Error(rw, sterr.Error(), http.StatusInternalServerError)
return
}
json.NewEncoder(rw).Encode(stats)
}
//Default is the default API route ,returns all monitored processs info
func Default(rw http.ResponseWriter, r *http.Request) {
procs := []map[string]interface{}{}
for _, proc := range activeProcesses {
procs = append(procs, map[string]interface{}{
"pid": proc.PID,
"name": proc.Pname,
"path": proc.PPath,
"args": proc.Args,
"numrestarts": proc.RestartCount,
"timestarted": proc.Timestamp.String(),
"timealive": time.Since(proc.Timestamp).String(),
"isalive": proc.IsAlive,
})
}
json.NewEncoder(rw).Encode(procs)
}
//Kill instructs zist to kill a process by pid
func Kill(rw http.ResponseWriter, r *http.Request) {
proc := GetVar(r, "proc").(*ChildProcess)
defer RemoveVars(r)
proc.Kill()
log.Println(proc.PID, " killed")
rw.Write([]byte(strconv.Itoa(proc.PID) + " killed"))
}
//Start instructs zist to start a process by PID
func Start(rw http.ResponseWriter, r *http.Request) {
proc := GetVar(r, "proc").(*ChildProcess)
pid := GetVar(r, "pid").(int)
defer RemoveVars(r)
if err := startProcess(proc, pid, 0); err != nil {
http.Error(rw, err.Error(), http.StatusNotFound)
return
}
log.Println(pid, " restarted with new pid ", proc.PID)
rw.Write([]byte(strconv.Itoa(proc.PID)))
}
//Restart instructs zist to restart a process
func Restart(rw http.ResponseWriter, r *http.Request) {
proc := GetVar(r, "proc").(*ChildProcess)
pid := GetVar(r, "pid").(int)
defer RemoveVars(r)
proc.Kill()
if err := startProcess(proc, pid, proc.RestartCount+1); err != nil {
http.Error(rw, err.Error(), http.StatusNotFound)
return
}
log.Println(pid, " restarted with new pid ", proc.PID)
rw.Write([]byte(strconv.Itoa(proc.PID)))
}
//Detach requests zist to detach a process
func Detach(rw http.ResponseWriter, r *http.Request) {
proc := GetVar(r, "proc").(*ChildProcess)
defer RemoveVars(r)
if err := proc.Detach(); err != nil {
http.Error(rw, err.Error(), http.StatusNotFound)
return
}
rw.Write([]byte(proc.Pname + " has been successfully detached. I will no longer restart it if it fails,give you stdstreams or give stats"))
}
//StdOut gets the process stdout
func StdOut(rw http.ResponseWriter, r *http.Request) {
proc := GetVar(r, "proc").(*ChildProcess)
defer RemoveVars(r)
if !proc.EStdOut {
rw.Write([]byte("Not allowed"))
return
}
json.NewEncoder(rw).Encode(proc.GetOutput())
}
//StdErr gets the process stderr
func StdErr(rw http.ResponseWriter, r *http.Request) {
proc := GetVar(r, "proc").(*ChildProcess)
defer RemoveVars(r)
if !proc.EStdErr {
rw.Write([]byte("Not allowed"))
return
}
json.NewEncoder(rw).Encode(proc.GetErrors())
}
//startProcess starts the requested child process
func startProcess(proc *ChildProcess, pid, numrestarts int) error {
procstrct := Job{
Path: proc.PPath,
}
if err := proc.Initialize(procstrct, numrestarts); err != nil {
return err
}
proc.IsAlive = true
AddProcess(proc)
cp := new(ChildProcess)
cp.PID = pid
RemoveProcess(cp)
return nil
}