mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"net/http"
|
||
|
"text/template"
|
||
|
|
||
|
macaron "gopkg.in/macaron.v1"
|
||
|
|
||
|
"github.com/grafana/grafana/pkg/models"
|
||
|
"github.com/grafana/grafana/pkg/services/accesscontrol"
|
||
|
)
|
||
|
|
||
|
func Middleware(ac accesscontrol.AccessControl) func(string, ...string) macaron.Handler {
|
||
|
return func(permission string, scopes ...string) macaron.Handler {
|
||
|
return func(c *models.ReqContext) {
|
||
|
for i, scope := range scopes {
|
||
|
var buf bytes.Buffer
|
||
|
|
||
|
tmpl, err := template.New("scope").Parse(scope)
|
||
|
if err != nil {
|
||
|
c.JsonApiErr(http.StatusInternalServerError, "Internal server error", err)
|
||
|
return
|
||
|
}
|
||
|
err = tmpl.Execute(&buf, c.AllParams())
|
||
|
if err != nil {
|
||
|
c.JsonApiErr(http.StatusInternalServerError, "Internal server error", err)
|
||
|
return
|
||
|
}
|
||
|
scopes[i] = buf.String()
|
||
|
}
|
||
|
|
||
|
hasAccess, err := ac.Evaluate(c.Req.Context(), c.SignedInUser, permission, scopes...)
|
||
|
if err != nil {
|
||
|
c.Logger.Error("Error from access control system", "error", err)
|
||
|
c.JsonApiErr(http.StatusForbidden, "Forbidden", nil)
|
||
|
return
|
||
|
}
|
||
|
if !hasAccess {
|
||
|
c.Logger.Info("Access denied", "error", err, "userID", c.UserId, "permission", permission, "scopes", scopes)
|
||
|
c.JsonApiErr(http.StatusForbidden, "Forbidden", nil)
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|