mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
32 lines
562 B
Go
32 lines
562 B
Go
package store
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
func splitFirstSegment(path string) (string, string) {
|
|
idx := strings.Index(path, "/")
|
|
if idx == 0 {
|
|
path = path[1:]
|
|
idx = strings.Index(path, "/")
|
|
}
|
|
|
|
if idx > 0 {
|
|
return path[:idx], path[idx+1:]
|
|
}
|
|
return path, ""
|
|
}
|
|
|
|
func getPathAndScope(c *models.ReqContext) (string, string) {
|
|
params := web.Params(c.Req)
|
|
path := params["*"]
|
|
if path == "" {
|
|
return "", ""
|
|
}
|
|
return splitFirstSegment(filepath.Clean(path))
|
|
}
|