mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
57fcfd578d
* replace macaron with web package * add web.go
29 lines
537 B
Go
29 lines
537 B
Go
package middleware
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
func ValidateHostHeader(cfg *setting.Cfg) web.Handler {
|
|
return func(c *models.ReqContext) {
|
|
// ignore local render calls
|
|
if c.IsRenderCall {
|
|
return
|
|
}
|
|
|
|
h := c.Req.Host
|
|
if i := strings.Index(h, ":"); i >= 0 {
|
|
h = h[:i]
|
|
}
|
|
|
|
if !strings.EqualFold(h, cfg.Domain) {
|
|
c.Redirect(strings.TrimSuffix(cfg.AppURL, "/")+c.Req.RequestURI, 301)
|
|
return
|
|
}
|
|
}
|
|
}
|