mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 19:30:36 -06:00
169 lines
5.8 KiB
Go
169 lines
5.8 KiB
Go
package api
|
|
|
|
import (
|
|
"github.com/Unknwon/macaron"
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
|
"github.com/grafana/grafana/pkg/middleware"
|
|
m "github.com/grafana/grafana/pkg/models"
|
|
"github.com/macaron-contrib/binding"
|
|
)
|
|
|
|
// Register adds http routes
|
|
func Register(r *macaron.Macaron) {
|
|
reqSignedIn := middleware.Auth(&middleware.AuthOptions{ReqSignedIn: true})
|
|
reqGrafanaAdmin := middleware.Auth(&middleware.AuthOptions{ReqSignedIn: true, ReqGrafanaAdmin: true})
|
|
reqEditorRole := middleware.RoleAuth(m.ROLE_EDITOR, m.ROLE_ADMIN)
|
|
regOrgAdmin := middleware.RoleAuth(m.ROLE_ADMIN)
|
|
bind := binding.Bind
|
|
|
|
// not logged in views
|
|
r.Get("/", reqSignedIn, Index)
|
|
r.Get("/logout", Logout)
|
|
r.Post("/login", bind(dtos.LoginCommand{}), wrap(LoginPost))
|
|
r.Get("/login/:name", OAuthLogin)
|
|
r.Get("/login", LoginView)
|
|
r.Get("/invite", Index)
|
|
|
|
// authed views
|
|
r.Get("/profile/", reqSignedIn, Index)
|
|
r.Get("/org/", reqSignedIn, Index)
|
|
r.Get("/org/new", reqSignedIn, Index)
|
|
r.Get("/datasources/", reqSignedIn, Index)
|
|
r.Get("/datasources/edit/*", reqSignedIn, Index)
|
|
r.Get("/org/users/", reqSignedIn, Index)
|
|
r.Get("/org/apikeys/", reqSignedIn, Index)
|
|
r.Get("/dashboard/import/", reqSignedIn, Index)
|
|
r.Get("/admin/settings", reqGrafanaAdmin, Index)
|
|
r.Get("/admin/users", reqGrafanaAdmin, Index)
|
|
r.Get("/admin/users/create", reqGrafanaAdmin, Index)
|
|
r.Get("/admin/users/edit/:id", reqGrafanaAdmin, Index)
|
|
r.Get("/dashboard/*", reqSignedIn, Index)
|
|
|
|
// sign up
|
|
r.Get("/signup", Index)
|
|
r.Post("/api/user/signup", bind(m.CreateUserCommand{}), wrap(SignUp))
|
|
|
|
// invited
|
|
r.Get("/api/user/invite/:code", wrap(GetInviteInfoByCode))
|
|
|
|
// reset password
|
|
r.Get("/user/password/send-reset-email", Index)
|
|
r.Get("/user/password/reset", Index)
|
|
|
|
r.Post("/api/user/password/send-reset-email", bind(dtos.SendResetPasswordEmailForm{}), wrap(SendResetPasswordEmail))
|
|
r.Post("/api/user/password/reset", bind(dtos.ResetUserPasswordForm{}), wrap(ResetPassword))
|
|
|
|
// dashboard snapshots
|
|
r.Post("/api/snapshots/", bind(m.CreateDashboardSnapshotCommand{}), CreateDashboardSnapshot)
|
|
r.Get("/dashboard/snapshot/*", Index)
|
|
|
|
r.Get("/api/snapshots/:key", GetDashboardSnapshot)
|
|
r.Get("/api/snapshots-delete/:key", DeleteDashboardSnapshot)
|
|
|
|
// api renew session based on remember cookie
|
|
r.Get("/api/login/ping", LoginApiPing)
|
|
|
|
// authed api
|
|
r.Group("/api", func() {
|
|
|
|
// user (signed in)
|
|
r.Group("/user", func() {
|
|
r.Get("/", wrap(GetSignedInUser))
|
|
r.Put("/", bind(m.UpdateUserCommand{}), wrap(UpdateSignedInUser))
|
|
r.Post("/using/:id", wrap(UserSetUsingOrg))
|
|
r.Get("/orgs", wrap(GetSignedInUserOrgList))
|
|
r.Post("/stars/dashboard/:id", wrap(StarDashboard))
|
|
r.Delete("/stars/dashboard/:id", wrap(UnstarDashboard))
|
|
r.Put("/password", bind(m.ChangeUserPasswordCommand{}), wrap(ChangeUserPassword))
|
|
})
|
|
|
|
// users (admin permission required)
|
|
r.Group("/users", func() {
|
|
r.Get("/", wrap(SearchUsers))
|
|
r.Get("/:id", wrap(GetUserById))
|
|
r.Get("/:id/orgs", wrap(GetUserOrgList))
|
|
r.Put("/:id", bind(m.UpdateUserCommand{}), wrap(UpdateUser))
|
|
}, reqGrafanaAdmin)
|
|
|
|
// current org
|
|
r.Group("/org", func() {
|
|
r.Get("/", wrap(GetOrgCurrent))
|
|
r.Put("/", bind(m.UpdateOrgCommand{}), wrap(UpdateOrgCurrent))
|
|
r.Post("/users", bind(m.AddOrgUserCommand{}), wrap(AddOrgUserToCurrentOrg))
|
|
r.Get("/users", wrap(GetOrgUsersForCurrentOrg))
|
|
r.Patch("/users/:userId", bind(m.UpdateOrgUserCommand{}), wrap(UpdateOrgUserForCurrentOrg))
|
|
r.Delete("/users/:userId", wrap(RemoveOrgUserForCurrentOrg))
|
|
|
|
// invites
|
|
r.Get("/invites", wrap(GetPendingOrgInvites))
|
|
r.Post("/invites", bind(dtos.AddInviteForm{}), wrap(AddOrgInvite))
|
|
r.Patch("/invites/:id/revoke", wrap(RevokeInvite))
|
|
}, regOrgAdmin)
|
|
|
|
// create new org
|
|
r.Post("/orgs", bind(m.CreateOrgCommand{}), wrap(CreateOrg))
|
|
|
|
// search all orgs
|
|
r.Get("/orgs", reqGrafanaAdmin, wrap(SearchOrgs))
|
|
|
|
// orgs (admin routes)
|
|
r.Group("/orgs/:orgId", func() {
|
|
r.Put("/", bind(m.UpdateOrgCommand{}), wrap(UpdateOrg))
|
|
r.Get("/users", wrap(GetOrgUsers))
|
|
r.Post("/users", bind(m.AddOrgUserCommand{}), wrap(AddOrgUser))
|
|
r.Patch("/users/:userId", bind(m.UpdateOrgUserCommand{}), wrap(UpdateOrgUser))
|
|
r.Delete("/users/:userId", wrap(RemoveOrgUser))
|
|
}, reqGrafanaAdmin)
|
|
|
|
// auth api keys
|
|
r.Group("/auth/keys", func() {
|
|
r.Get("/", wrap(GetApiKeys))
|
|
r.Post("/", bind(m.AddApiKeyCommand{}), wrap(AddApiKey))
|
|
r.Delete("/:id", wrap(DeleteApiKey))
|
|
}, regOrgAdmin)
|
|
|
|
// Data sources
|
|
r.Group("/datasources", func() {
|
|
r.Get("/", GetDataSources)
|
|
r.Post("/", bind(m.AddDataSourceCommand{}), AddDataSource)
|
|
r.Put("/:id", bind(m.UpdateDataSourceCommand{}), UpdateDataSource)
|
|
r.Delete("/:id", DeleteDataSource)
|
|
r.Get("/:id", GetDataSourceById)
|
|
r.Get("/plugins", GetDataSourcePlugins)
|
|
}, regOrgAdmin)
|
|
|
|
r.Get("/frontend/settings/", GetFrontendSettings)
|
|
r.Any("/datasources/proxy/:id/*", reqSignedIn, ProxyDataSourceRequest)
|
|
r.Any("/datasources/proxy/:id", reqSignedIn, ProxyDataSourceRequest)
|
|
|
|
// Dashboard
|
|
r.Group("/dashboards", func() {
|
|
r.Combo("/db/:slug").Get(GetDashboard).Delete(DeleteDashboard)
|
|
r.Post("/db", reqEditorRole, bind(m.SaveDashboardCommand{}), PostDashboard)
|
|
r.Get("/file/:file", GetDashboardFromJsonFile)
|
|
r.Get("/home", GetHomeDashboard)
|
|
r.Get("/tags", GetDashboardTags)
|
|
})
|
|
|
|
// Search
|
|
r.Get("/search/", Search)
|
|
|
|
// metrics
|
|
r.Get("/metrics/test", GetTestMetrics)
|
|
}, reqSignedIn)
|
|
|
|
// admin api
|
|
r.Group("/api/admin", func() {
|
|
r.Get("/settings", AdminGetSettings)
|
|
r.Post("/users", bind(dtos.AdminCreateUserForm{}), AdminCreateUser)
|
|
r.Put("/users/:id/password", bind(dtos.AdminUpdateUserPasswordForm{}), AdminUpdateUserPassword)
|
|
r.Put("/users/:id/permissions", bind(dtos.AdminUpdateUserPermissionsForm{}), AdminUpdateUserPermissions)
|
|
r.Delete("/users/:id", AdminDeleteUser)
|
|
}, reqGrafanaAdmin)
|
|
|
|
// rendering
|
|
r.Get("/render/*", reqSignedIn, RenderToPng)
|
|
|
|
r.NotFound(NotFoundHandler)
|
|
}
|