mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
83 lines
2.1 KiB
Go
83 lines
2.1 KiB
Go
package middleware
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"gopkg.in/macaron.v1"
|
|
)
|
|
|
|
func getDashboardURLBySlug(orgID int64, slug string) (string, error) {
|
|
query := models.GetDashboardQuery{Slug: slug, OrgId: orgID}
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
|
return "", models.ErrDashboardNotFound
|
|
}
|
|
|
|
return models.GetDashboardUrl(query.Result.Uid, query.Result.Slug), nil
|
|
}
|
|
|
|
func RedirectFromLegacyDashboardURL() macaron.Handler {
|
|
return func(c *models.ReqContext) {
|
|
slug := c.Params("slug")
|
|
|
|
if slug != "" {
|
|
if url, err := getDashboardURLBySlug(c.OrgId, slug); err == nil {
|
|
url = fmt.Sprintf("%s?%s", url, c.Req.URL.RawQuery)
|
|
c.Redirect(url, 301)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// In Grafana v7.0 we changed panel edit & view query parameters.
|
|
// This middleware tries to detect those old url parameters and direct to the new url query params
|
|
func RedirectFromLegacyPanelEditURL() macaron.Handler {
|
|
return func(c *models.ReqContext) {
|
|
queryParams := c.Req.URL.Query()
|
|
|
|
panelId, hasPanelId := queryParams["panelId"]
|
|
_, hasFullscreen := queryParams["fullscreen"]
|
|
_, hasEdit := queryParams["edit"]
|
|
|
|
if hasPanelId && hasFullscreen {
|
|
delete(queryParams, "panelId")
|
|
delete(queryParams, "fullscreen")
|
|
delete(queryParams, "edit")
|
|
|
|
if hasEdit {
|
|
queryParams["editPanel"] = panelId
|
|
} else {
|
|
queryParams["viewPanel"] = panelId
|
|
}
|
|
|
|
newURL := setting.ToAbsUrl(fmt.Sprintf("%s?%s", strings.TrimPrefix(c.Req.URL.Path, "/"), queryParams.Encode()))
|
|
c.Redirect(newURL, 301)
|
|
}
|
|
}
|
|
}
|
|
|
|
func RedirectFromLegacyDashboardSoloURL() macaron.Handler {
|
|
return func(c *models.ReqContext) {
|
|
slug := c.Params("slug")
|
|
renderRequest := c.QueryBool("render")
|
|
|
|
if slug != "" {
|
|
if url, err := getDashboardURLBySlug(c.OrgId, slug); err == nil {
|
|
if renderRequest && strings.Contains(url, setting.AppSubUrl) {
|
|
url = strings.Replace(url, setting.AppSubUrl, "", 1)
|
|
}
|
|
|
|
url = strings.Replace(url, "/d/", "/d-solo/", 1)
|
|
url = fmt.Sprintf("%s?%s", url, c.Req.URL.RawQuery)
|
|
c.Redirect(url, 301)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|