2015-05-02 18:06:58 +08:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
|
|
import (
|
2019-04-08 19:31:46 +08:00
|
|
|
"github.com/grafana/grafana/pkg/infra/remotecache"
|
2019-04-16 20:09:18 +08:00
|
|
|
authproxy "github.com/grafana/grafana/pkg/middleware/auth_proxy"
|
2015-05-02 18:06:58 +08:00
|
|
|
m "github.com/grafana/grafana/pkg/models"
|
|
|
|
|
)
|
|
|
|
|
|
2019-04-08 19:31:46 +08:00
|
|
|
const (
|
|
|
|
|
|
|
|
|
|
// cachePrefix is a prefix for the cache key
|
2019-04-16 20:09:18 +08:00
|
|
|
cachePrefix = authproxy.CachePrefix
|
2019-01-23 19:41:15 +08:00
|
|
|
)
|
2018-03-23 05:02:34 +08:00
|
|
|
|
2019-04-08 19:31:46 +08:00
|
|
|
func initContextWithAuthProxy(store *remotecache.RemoteCache, ctx *m.ReqContext, orgID int64) bool {
|
2019-04-16 20:09:18 +08:00
|
|
|
auth := authproxy.New(&authproxy.Options{
|
|
|
|
|
Store: store,
|
|
|
|
|
Ctx: ctx,
|
|
|
|
|
OrgID: orgID,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Bail if auth proxy is not enabled
|
2019-05-14 15:18:28 +08:00
|
|
|
if !auth.IsEnabled() {
|
2015-05-02 18:06:58 +08:00
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-16 20:09:18 +08:00
|
|
|
// If the there is no header - we can't move forward
|
2019-05-14 15:18:28 +08:00
|
|
|
if !auth.HasHeader() {
|
2015-05-02 18:06:58 +08:00
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-16 20:09:18 +08:00
|
|
|
// Check if allowed to continue with this IP
|
2019-05-14 15:18:28 +08:00
|
|
|
if result, err := auth.IsAllowedIP(); !result {
|
2019-04-16 20:09:18 +08:00
|
|
|
ctx.Handle(407, err.Error(), err.DetailsError)
|
2016-02-23 21:22:28 +08:00
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-17 19:57:26 +08:00
|
|
|
// Try to log in user from various providers
|
|
|
|
|
id, err := auth.Login()
|
2019-04-16 20:09:18 +08:00
|
|
|
if err != nil {
|
|
|
|
|
ctx.Handle(500, err.Error(), err.DetailsError)
|
|
|
|
|
return true
|
2018-04-17 04:17:01 +08:00
|
|
|
}
|
2018-03-23 05:02:34 +08:00
|
|
|
|
2019-04-16 20:09:18 +08:00
|
|
|
// Get full user info
|
|
|
|
|
user, err := auth.GetSignedUser(id)
|
|
|
|
|
if err != nil {
|
|
|
|
|
ctx.Handle(500, err.Error(), err.DetailsError)
|
2018-04-17 04:17:01 +08:00
|
|
|
return true
|
2016-02-23 21:22:28 +08:00
|
|
|
}
|
|
|
|
|
|
2019-04-16 20:09:18 +08:00
|
|
|
// Add user info to context
|
|
|
|
|
ctx.SignedInUser = user
|
|
|
|
|
ctx.IsSignedIn = true
|
2016-02-23 21:22:28 +08:00
|
|
|
|
2019-04-16 20:09:18 +08:00
|
|
|
// Remember user data it in cache
|
2019-05-17 19:57:26 +08:00
|
|
|
if err := auth.Remember(id); err != nil {
|
2019-04-16 20:09:18 +08:00
|
|
|
ctx.Handle(500, err.Error(), err.DetailsError)
|
|
|
|
|
return true
|
2016-02-23 21:22:28 +08:00
|
|
|
}
|
|
|
|
|
|
2015-05-02 18:06:58 +08:00
|
|
|
return true
|
|
|
|
|
}
|