genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/lib/http/permission.go

32 lines
967 B
Go
Raw Normal View History

2017-04-28 10:10:25 +02:00
// Package http provides the
// logic of the webserver
package http
import "net/http"
2017-04-28 10:27:36 +02:00
// format of a function to bind it for the middleware handler
type HasPermission func(string, int) (bool, error)
2017-04-28 10:27:36 +02:00
// Function to evaluate the permission and implent an error handling
2017-04-28 10:10:25 +02:00
// Input: http response writer w, pointer to htto request r, bool variable HasPermission perm, int variable permission (form)
func PermissionHandler(h func(w http.ResponseWriter, r *http.Request), perm HasPermission, permission int) func(w http.ResponseWriter, r *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
session, err := r.Cookie("session")
if err != nil {
http.Error(w, err.Error(), http.StatusNonAuthoritativeInfo)
return
}
ok, err := perm(session.Value, permission)
if err != nil {
http.Error(w, err.Error(), http.StatusGatewayTimeout)
return
}
if ok {
h(w, r)
return
}
http.Error(w, "Not allowed", http.StatusForbidden)
}
}