-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthorizer.go
51 lines (41 loc) · 1.09 KB
/
authorizer.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
package rbac
import (
"net/http"
)
// Authorizer func
// Function to take headers, method and path from request handler
func (rbac *RBAC) Authorizer() func(next http.Handler) http.Handler {
return func(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
// Check headers keys and return authorization value
bearerToken, err := verifyHeadersAndGetToken(r)
if err != nil {
writeError(http.StatusBadRequest, err.Error(), w)
return
}
// Check signature jwt by firebase admin
token, err := rbac.verifyToken(bearerToken)
if err != nil {
writeError(http.StatusUnauthorized, err.Error(), w)
return
}
// Get roles by user
roles, err := rbac.GetRolesByUID(token.UID)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
if len(roles) == 0 {
w.WriteHeader(http.StatusForbidden)
return
}
granted := rbac.GrantAccess(roles, r.Method, r.URL.Path)
if !granted {
w.WriteHeader(http.StatusForbidden)
return
}
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
}