forked from lastlogin-net/obligator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.go
172 lines (143 loc) · 3.04 KB
/
api.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
package main
import (
"encoding/json"
"io"
"net"
"net/http"
"net/mail"
"os"
"path/filepath"
"strings"
)
type Api struct {
}
func NewApi(storage Storage, dir string) (*Api, error) {
mux := http.NewServeMux()
mux.HandleFunc("/oauth2-providers", func(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
providers, err := storage.GetOAuth2Providers()
if err != nil {
w.WriteHeader(500)
io.WriteString(w, err.Error())
return
}
json.NewEncoder(w).Encode(providers)
}
})
mux.HandleFunc("/oauth2-providers/", func(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "PUT":
pathParts := strings.Split(r.URL.Path, "/")
if len(pathParts) > 3 {
w.WriteHeader(400)
io.WriteString(w, "Too many path segments")
return
}
providerId := pathParts[2]
if providerId == "" {
w.WriteHeader(400)
io.WriteString(w, "Missing provider ID")
return
}
var prov OAuth2Provider
err := json.NewDecoder(r.Body).Decode(&prov)
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
if prov.ID == "" {
w.WriteHeader(400)
io.WriteString(w, "Missing ID")
return
}
if prov.Name == "" {
w.WriteHeader(400)
io.WriteString(w, "Missing name")
return
}
if prov.URI == "" {
w.WriteHeader(400)
io.WriteString(w, "Missing URI")
return
}
if prov.ClientID == "" {
w.WriteHeader(400)
io.WriteString(w, "Missing client_id")
return
}
err = storage.SetOauth2Provider(prov)
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
updateOidcConfigs(storage)
}
})
mux.HandleFunc("/root-uri", func(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "PUT":
r.ParseForm()
rootUri := r.Form.Get("root_uri")
if rootUri == "" {
w.WriteHeader(400)
io.WriteString(w, "Missing root_uri")
return
}
err := storage.SetRootUri(rootUri)
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
}
})
mux.HandleFunc("/users", func(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
users, err := storage.GetUsers()
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
json.NewEncoder(w).Encode(users)
case "POST":
var user User
err := json.NewDecoder(r.Body).Decode(&user)
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
_, err = mail.ParseAddress(user.Email)
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
err = storage.CreateUser(user)
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
}
})
server := http.Server{
Handler: mux,
}
sockPath := filepath.Join(dir, "obligator_api.sock")
os.Remove(sockPath)
listener, err := net.Listen("unix", sockPath)
if err != nil {
return nil, err
}
go func() {
server.Serve(listener)
}()
a := &Api{}
return a, nil
}