-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapiserver.go
142 lines (119 loc) · 3.66 KB
/
apiserver.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
package api
import (
"html/template"
"log"
"net/http"
auth "openai-api-proxy/auth"
db "openai-api-proxy/db"
"os"
"github.com/Masterminds/sprig/v3"
)
func ApiInit(mux *http.ServeMux, a *auth.Auth, db *db.Database) {
timeZone, ok := os.LookupEnv("TIMEZONE")
if !ok {
timeZone = "Europe/Berlin"
}
api := ApiHandler{db, a, timeZone}
graph := NewGraphHandler(&api)
mux.HandleFunc("/api2/user/widget", api.GetUserWidget)
mux.HandleFunc("/api2/user/logout", api.LogoutUser)
mux.HandleFunc("/api2/admin/table/get", api.GetAdminTable)
mux.HandleFunc("/api2/admin/table/graph/get/", graph.GetAdminTableGraph)
mux.HandleFunc("/api2/table/graph/get/", graph.GetTableGraph)
mux.HandleFunc("/api2/table/get", api.GetTable)
mux.HandleFunc("/api2/table/entry/save", api.CreateEntry)
mux.HandleFunc("/api2/table/entry/delete/", api.DeleteEntry)
}
type ApiHandler struct {
db *db.Database
auth *auth.Auth
timeZone string
}
func (a *ApiHandler) GetAdminTable(w http.ResponseWriter, r *http.Request) {
ok, err := a.auth.ValidateAdminSession(w, r)
if err == nil && ok {
keys, err := a.db.LookupApiKeyUserOverview()
if err != nil {
log.Fatal(err)
}
templ := template.Must(template.New("adminTable.html.templ").Funcs(sprig.FuncMap()).ParseFiles("templates/adminTable.html.templ"))
if err != nil {
panic(err)
}
err = templ.Execute(w, keys)
if err != nil {
panic(err)
}
} else {
http.Error(w, http.StatusText(http.StatusForbidden), http.StatusForbidden)
}
}
func (a *ApiHandler) LogoutUser(w http.ResponseWriter, r *http.Request) {
a.auth.LogoutHandler(w, r)
}
func (a *ApiHandler) GetUserWidget(w http.ResponseWriter, r *http.Request) {
claims, err := a.auth.GetClaims(r)
if err != nil {
http.Error(w, "Not Authenticated", http.StatusForbidden)
return
}
claimsDB, err := a.db.GetUser(claims.Sub)
if err != nil {
log.Println("Could not get Claims from DB")
return
}
userWidgetContent := `
<p class="text-xl">{{if .IsAdmin }}<a class="text-sky-400" href="/admin">Admin-Panel</a> - <a class="text-sky-400" href="/">Homepage</a>{{ end }} </p><p>Hallo, {{.Name}} <u><a class="text-sky-400" href="/api2/user/logout">logout</a></u></p>
`
userWidget, err := template.New(userWidgetContent).Parse(userWidgetContent)
if err != nil {
log.Println("Error while templating the pop up")
return
}
err = userWidget.Execute(w, claimsDB)
if err != nil {
log.Println("Error while filling out the Template or writing Response")
}
}
func (a *ApiHandler) GetTable(w http.ResponseWriter, r *http.Request) {
// Check if Request is Authenticated
if !a.auth.ValidateSessionToken(w, r) {
http.Error(w, http.StatusText(http.StatusForbidden), http.StatusForbidden)
return
}
claims, err := a.auth.GetClaims(r)
if err != nil {
// If Claims Extraction Failed, user will be Redirected to Update his Token.
a.Unauthenticated(w, r)
}
admin := false
for _, group := range claims.Roles {
if group == "admin" {
admin = true
}
}
// Check/Create user as its the first authenticated action ran
u := db.User{
Name: claims.Name,
Sub: claims.Sub,
IsAdmin: admin,
}
a.db.WriteUser(&u)
keys, err := a.db.LookupApiKeyInfos(claims.Sub)
if err != nil {
log.Fatal(err)
}
templ := template.Must(template.New("table.html.templ").Funcs(sprig.FuncMap()).ParseFiles("templates/table.html.templ"))
if err != nil {
panic(err)
}
err = templ.Execute(w, keys)
if err != nil {
panic(err)
}
}
func (h *ApiHandler) Unauthenticated(w http.ResponseWriter, r *http.Request) {
//Redirect will be better for the users, as it saves them the reload
w.Header().Set("HX-Redirect", "/")
http.Error(w, http.StatusText(http.StatusForbidden), http.StatusForbidden)
}