mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
29 lines
520 B
Go
29 lines
520 B
Go
package middleware
|
|
|
|
import (
|
|
"strings"
|
|
|
|
m "github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"gopkg.in/macaron.v1"
|
|
)
|
|
|
|
func ValidateHostHeader(domain string) macaron.Handler {
|
|
return func(c *m.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, domain) {
|
|
c.Redirect(strings.TrimSuffix(setting.AppUrl, "/")+c.Req.RequestURI, 301)
|
|
return
|
|
}
|
|
}
|
|
}
|