mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 19:30:36 -06:00
104 lines
2.3 KiB
Go
104 lines
2.3 KiB
Go
package api
|
|
|
|
import (
|
|
"github.com/Unknwon/macaron"
|
|
"github.com/torkelo/grafana-pro/pkg/api/dtos"
|
|
"github.com/torkelo/grafana-pro/pkg/middleware"
|
|
"github.com/torkelo/grafana-pro/pkg/setting"
|
|
)
|
|
|
|
// Register adds http routes
|
|
func Register(m *macaron.Macaron) {
|
|
auth := middleware.Auth()
|
|
|
|
// not logged in views
|
|
m.Get("/", auth, Index)
|
|
m.Post("/logout", LogoutPost)
|
|
m.Post("/login", LoginPost)
|
|
m.Get("/login/:name", OAuthLogin)
|
|
m.Get("/login", Index)
|
|
|
|
// authed views
|
|
m.Get("/account/", auth, Index)
|
|
m.Get("/account/datasources/", auth, Index)
|
|
m.Get("/admin", auth, Index)
|
|
m.Get("/dashboard/*", auth, Index)
|
|
|
|
// sign up
|
|
m.Get("/signup", Index)
|
|
m.Post("/api/account/signup", SignUp)
|
|
|
|
// authed api
|
|
m.Group("/api", func() {
|
|
// account
|
|
m.Group("/account", func() {
|
|
m.Get("/", GetAccount)
|
|
m.Post("/collaborators/add", AddCollaborator)
|
|
m.Post("/using/:id", SetUsingAccount)
|
|
m.Get("/others", GetOtherAccounts)
|
|
})
|
|
// Token
|
|
m.Group("/tokens", func() {
|
|
m.Combo("/").Get(GetTokens).Put(AddToken).Post(UpdateToken)
|
|
m.Delete("/:id", DeleteToken)
|
|
})
|
|
// Data sources
|
|
m.Group("/datasources", func() {
|
|
m.Combo("/").Get(GetDataSources).Put(AddDataSource).Post(UpdateDataSource)
|
|
m.Delete("/:id", DeleteDataSource)
|
|
m.Any("/proxy/:id/*", auth, ProxyDataSourceRequest)
|
|
})
|
|
// Dashboard
|
|
m.Group("/dashboard", func() {
|
|
m.Combo("/:slug").Get(GetDashboard).Delete(DeleteDashboard)
|
|
m.Post("/", PostDashboard)
|
|
})
|
|
// Search
|
|
m.Get("/search/", Search)
|
|
// metrics
|
|
m.Get("/metrics/test", auth, GetTestMetrics)
|
|
}, auth)
|
|
|
|
// rendering
|
|
m.Get("/render/*", auth, RenderToPng)
|
|
|
|
m.NotFound(NotFound)
|
|
}
|
|
|
|
func setIndexViewData(c *middleware.Context) error {
|
|
settings, err := getFrontendSettings(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
c.Data["User"] = dtos.NewCurrentUser(c.UserAccount)
|
|
c.Data["Settings"] = settings
|
|
c.Data["AppUrl"] = setting.AppUrl
|
|
c.Data["AppSubUrl"] = setting.AppSubUrl
|
|
|
|
return nil
|
|
}
|
|
|
|
func Index(c *middleware.Context) {
|
|
if err := setIndexViewData(c); err != nil {
|
|
c.Handle(500, "Failed to get settings", err)
|
|
return
|
|
}
|
|
|
|
c.HTML(200, "index")
|
|
}
|
|
|
|
func NotFound(c *middleware.Context) {
|
|
if c.IsApiRequest() {
|
|
c.JsonApiErr(200, "Not found", nil)
|
|
return
|
|
}
|
|
|
|
if err := setIndexViewData(c); err != nil {
|
|
c.Handle(500, "Failed to get settings", err)
|
|
return
|
|
}
|
|
|
|
c.HTML(404, "index")
|
|
}
|