forked from web-platform-tests/wpt.fyi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_handler.go
90 lines (78 loc) · 2.42 KB
/
admin_handler.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
// Copyright 2018 The WPT Dashboard Project. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package webapp
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"google.golang.org/appengine/memcache"
"github.com/web-platform-tests/wpt.fyi/shared"
)
func adminUploadHandler(w http.ResponseWriter, r *http.Request) {
ctx := shared.NewAppEngineContext(r)
a := shared.NewAppEngineAPI(ctx)
showAdminUploadForm(a, w, r)
}
func showAdminUploadForm(a shared.AppEngineAPI, w http.ResponseWriter, r *http.Request) {
assertAdminAndRenderTemplate(a, w, r, "/admin/results/upload", "admin_upload.html", nil)
}
func adminFlagsHandler(w http.ResponseWriter, r *http.Request) {
ctx := shared.NewAppEngineContext(r)
a := shared.NewAppEngineAPI(ctx)
ds := shared.NewAppEngineDatastore(ctx, false)
data := struct {
Host string
}{
Host: a.GetHostname(),
}
if r.Method == "GET" {
assertAdminAndRenderTemplate(a, w, r, "/admin/flags", "admin_flags.html", data)
} else if r.Method == "POST" {
if !a.IsAdmin() {
http.Error(w, "Admin only", http.StatusUnauthorized)
return
}
var flag shared.Flag
if bytes, err := ioutil.ReadAll(r.Body); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
} else if err = json.Unmarshal(bytes, &flag); err != nil {
http.Error(w, fmt.Sprintf("Failed to unmarshal flag: %s", err.Error()), http.StatusBadRequest)
return
} else if err = shared.SetFeature(ds, flag); err != nil {
http.Error(w, fmt.Sprintf("Failed to save feature %s: %s", flag.Name, err.Error()), http.StatusInternalServerError)
return
}
}
}
func assertAdminAndRenderTemplate(
a shared.AppEngineAPI,
w http.ResponseWriter,
r *http.Request,
redirectPath,
template string,
data interface{}) {
if !a.IsAdmin() {
http.Error(w, "Admin only", http.StatusUnauthorized)
return
}
if err := templates.ExecuteTemplate(w, template, data); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
func adminCacheFlushHandler(w http.ResponseWriter, r *http.Request) {
ctx := shared.NewAppEngineContext(r)
a := shared.NewAppEngineAPI(ctx)
if !a.IsAdmin() {
http.Error(w, "Admin only", http.StatusUnauthorized)
return
}
if err := memcache.Flush(ctx); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
} else {
w.Write([]byte("Successfully flushed cache"))
}
}