mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
6c5a573772
* Chore: Move ReqContext to contexthandler service * Rename package to contextmodel * Generate ngalert files * Remove unused imports
29 lines
579 B
Go
29 lines
579 B
Go
package middleware
|
|
|
|
import (
|
|
"strings"
|
|
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
func ValidateHostHeader(cfg *setting.Cfg) web.Handler {
|
|
return func(c *contextmodel.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
|
|
}
|
|
}
|
|
}
|