-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathserver.go
257 lines (212 loc) · 6.71 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
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
package main
import (
"encoding/base64"
"encoding/json"
"errors"
"flag"
"fmt"
"html/template"
"io/ioutil"
"log"
"net/http"
"path/filepath"
"strconv"
"strings"
"github.com/gorilla/securecookie"
"github.com/gorilla/sessions"
)
var configFile = flag.String("config", "./config.json", "config file")
var store = sessions.NewCookieStore(securecookie.GenerateRandomKey(32))
var templates map[string]*template.Template
var loginBytes, _ = ioutil.ReadFile("./templates/login.html")
var loginTemp, _ = template.New("login").Parse(string(loginBytes))
// Load templates on program initialisation
func init() {
//https: //elithrar.github.io/article/approximating-html-template-inheritance/
if templates == nil {
templates = make(map[string]*template.Template)
}
templatesDir := "./templates/"
//pages to show indeed
bases, err := filepath.Glob(templatesDir + "bases/*.html")
if err != nil {
log.Fatal(err)
}
//widgts, header, footer, sidebar, etc.
includes, err := filepath.Glob(templatesDir + "includes/*.html")
if err != nil {
log.Fatal(err)
}
// Generate our templates map from our bases/ and includes/ directories
for _, base := range bases {
files := append(includes, base)
templates[filepath.Base(base)] = template.Must(template.ParseFiles(files...))
}
}
func renderTemplate(w http.ResponseWriter, name string, data interface{}) error {
// Ensure the template exists in the map.
tmpl, ok := templates[name]
if !ok {
return fmt.Errorf("The template %s does not exist.", name)
}
w.Header().Set("Content-Type", "text/html; charset=utf-8")
return tmpl.ExecuteTemplate(w, name, data)
}
func main() {
flag.Parse()
loadConfig()
http.HandleFunc("/logout", func(rw http.ResponseWriter, req *http.Request) {
session, _ := store.Get(req, "gosessionid")
session.Options = &sessions.Options{MaxAge: -1, Path: "/"}
session.Save(req, rw)
http.Redirect(rw, req, "/", http.StatusFound)
})
http.HandleFunc("/", authWrapper(recoverWrapper(indexHandler)))
http.HandleFunc("/login", func(w http.ResponseWriter, r *http.Request) {
var errMsg = ""
if r.Method == http.MethodPost {
username := r.FormValue("username")
password := r.FormValue("password")
if username == serverConfig.User && password == serverConfig.Password {
session, _ := store.Get(r, "gosessionid")
session.Values["userLogin"] = username
session.Save(r, w)
http.Redirect(w, r, "/services", http.StatusFound)
return
}
errMsg = "username or password is not correct"
loginTemp.ExecuteTemplate(w, "login", errMsg)
}
if r.Method == http.MethodGet {
loginTemp.ExecuteTemplate(w, "login", nil)
}
})
http.HandleFunc("/services", authWrapper(recoverWrapper(servicesHandler)))
http.HandleFunc("/s/deactivate/", authWrapper(recoverWrapper(deactivateHandler)))
http.HandleFunc("/s/activate/", authWrapper(recoverWrapper(activateHandler)))
http.HandleFunc("/s/m/", authWrapper(recoverWrapper(modifyHandler)))
http.HandleFunc("/registry", authWrapper(recoverWrapper(registryHandler)))
fs := http.FileServer(http.Dir("web"))
http.Handle("/static/", http.StripPrefix("/static/", fs))
http.ListenAndServe(serverConfig.Host+":"+strconv.Itoa(serverConfig.Port), nil)
}
func authWrapper(h func(w http.ResponseWriter, r *http.Request)) func(w http.ResponseWriter, r *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
session, _ := store.Get(r, "gosessionid")
username := session.Values["userLogin"]
if username != nil {
h(w, r)
} else {
http.Redirect(w, r, "/login", http.StatusFound)
}
}
}
func recoverWrapper(h func(w http.ResponseWriter, r *http.Request)) func(w http.ResponseWriter, r *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
defer func() {
if re := recover(); re != nil {
var err error
fmt.Println("Recovered in registryHandler", re)
switch t := re.(type) {
case string:
err = errors.New(t)
case error:
err = t
default:
err = errors.New("Unknown error")
}
w.WriteHeader(http.StatusOK)
renderTemplate(w, "error.html", err.Error())
}
}()
h(w, r)
}
}
func indexHandler(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "/services", http.StatusFound)
}
func servicesHandler(w http.ResponseWriter, r *http.Request) {
data := make(map[string]interface{})
data["services"] = reg.fetchServices()
renderTemplate(w, r.URL.Path[1:]+".html", data)
}
func deactivateHandler(w http.ResponseWriter, r *http.Request) {
i := strings.LastIndex(r.URL.Path, "/")
base64ID := r.URL.Path[i+1:]
if b, err := base64.StdEncoding.DecodeString(base64ID); err == nil {
s := string(b)
j := strings.Index(s, "@")
name := s[0:j]
address := s[j+1:]
reg.deactivateService(name, address)
}
http.Redirect(w, r, "/services", http.StatusFound)
}
func activateHandler(w http.ResponseWriter, r *http.Request) {
i := strings.LastIndex(r.URL.Path, "/")
base64ID := r.URL.Path[i+1:]
if b, err := base64.StdEncoding.DecodeString(base64ID); err == nil {
s := string(b)
j := strings.Index(s, "@")
name := s[0:j]
address := s[j+1:]
reg.activateService(name, address)
}
http.Redirect(w, r, "/services", http.StatusFound)
}
func modifyHandler(w http.ResponseWriter, r *http.Request) {
metadata := r.URL.Query()
i := strings.LastIndex(r.URL.Path, "/")
base64ID := r.URL.Path[i+1:]
if b, err := base64.StdEncoding.DecodeString(base64ID); err == nil {
s := string(b)
j := strings.Index(s, "@")
name := s[0:j]
address := s[j+1:]
reg.updateMetadata(name, address, metadata.Encode())
}
http.Redirect(w, r, "/services", http.StatusFound)
}
func registryHandler(w http.ResponseWriter, r *http.Request) {
oldConfig := serverConfig
defer func() {
if re := recover(); re != nil {
bytes, err := json.MarshalIndent(&oldConfig, "", "\t")
if err == nil {
err = ioutil.WriteFile("./config.json", bytes, 0644)
loadConfig()
}
panic(re)
}
}()
if r.Method == "POST" {
registryType := r.FormValue("registry_type")
registryURL := r.FormValue("registry_url")
basePath := r.FormValue("base_path")
serverConfig.RegistryType = registryType
serverConfig.RegistryURL = registryURL
serverConfig.ServiceBaseURL = basePath
bytes, err := json.MarshalIndent(&serverConfig, "", "\t")
if err == nil {
err = ioutil.WriteFile("./config.json", bytes, 0644)
loadConfig()
}
}
renderTemplate(w, r.URL.Path[1:]+".html", serverConfig)
}
type Registry interface {
initRegistry()
fetchServices() []*Service
deactivateService(name, address string) error
activateService(name, address string) error
updateMetadata(name, address string, metadata string) error
}
// Service is a service endpoint
type Service struct {
ID string
Name string
Address string
Metadata string
State string
Group string
}