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.
2017-05-03 07:16:45 +02:00
|
|
|
// Package that provides the logic of the webserver
|
2017-04-05 20:23:29 +02:00
|
|
|
package http
|
|
|
|
|
|
|
|
import "net/http"
|
|
|
|
|
2017-05-03 07:16:45 +02:00
|
|
|
// Format of a function to bind it to the middleware handler
|
2017-04-05 20:23:29 +02:00
|
|
|
type HasPermission func(string, int) (bool, error)
|
|
|
|
|
2017-05-03 07:16:45 +02:00
|
|
|
// Function to evaluate the permission and implement an error handling
|
2017-04-05 20:23:29 +02:00
|
|
|
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) {
|
2017-06-09 09:42:39 +02:00
|
|
|
session := r.Header.Get("session")
|
|
|
|
ok, err := perm(session, permission)
|
2017-04-05 20:23:29 +02:00
|
|
|
if err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusGatewayTimeout)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if ok {
|
|
|
|
h(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
http.Error(w, "Not allowed", http.StatusForbidden)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|