| 
									
										
										
										
											2020-12-15 16:32:06 +08:00
										 |  |  | // Package api contains API logic.
 | 
					
						
							| 
									
										
										
										
											2014-12-16 04:25:02 +08:00
										 |  |  | package api | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2020-12-09 23:22:24 +08:00
										 |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-21 06:51:22 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/api/avatar" | 
					
						
							| 
									
										
										
										
											2021-02-04 14:37:28 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/api/frontendlogging" | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/api/routing" | 
					
						
							| 
									
										
										
										
											2020-12-15 16:32:06 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/infra/log" | 
					
						
							| 
									
										
										
										
											2015-02-05 17:37:13 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/middleware" | 
					
						
							| 
									
										
										
										
											2019-06-26 14:47:03 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/models" | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 	ac "github.com/grafana/grafana/pkg/services/accesscontrol" | 
					
						
							| 
									
										
										
										
											2021-04-14 22:31:27 +08:00
										 |  |  | 	acmiddleware "github.com/grafana/grafana/pkg/services/accesscontrol/middleware" | 
					
						
							| 
									
										
										
										
											2014-12-16 04:25:02 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 16:32:06 +08:00
										 |  |  | var plog = log.New("api") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-28 16:36:57 +08:00
										 |  |  | // registerRoutes registers all API HTTP routes.
 | 
					
						
							| 
									
										
										
										
											2018-03-23 05:13:46 +08:00
										 |  |  | func (hs *HTTPServer) registerRoutes() { | 
					
						
							| 
									
										
										
										
											2021-03-16 23:46:34 +08:00
										 |  |  | 	reqNoAuth := middleware.NoAuth() | 
					
						
							| 
									
										
										
										
											2018-10-11 18:36:04 +08:00
										 |  |  | 	reqSignedIn := middleware.ReqSignedIn | 
					
						
							| 
									
										
										
										
											2021-06-15 00:02:05 +08:00
										 |  |  | 	reqNotSignedIn := middleware.ReqNotSignedIn | 
					
						
							| 
									
										
										
										
											2021-02-28 01:04:28 +08:00
										 |  |  | 	reqSignedInNoAnonymous := middleware.ReqSignedInNoAnonymous | 
					
						
							| 
									
										
										
										
											2018-10-11 18:36:04 +08:00
										 |  |  | 	reqGrafanaAdmin := middleware.ReqGrafanaAdmin | 
					
						
							|  |  |  | 	reqEditorRole := middleware.ReqEditorRole | 
					
						
							|  |  |  | 	reqOrgAdmin := middleware.ReqOrgAdmin | 
					
						
							| 
									
										
										
										
											2021-09-17 15:19:36 +08:00
										 |  |  | 	reqOrgAdminFolderAdminOrTeamAdmin := middleware.OrgAdminFolderAdminOrTeamAdmin | 
					
						
							| 
									
										
										
										
											2019-03-14 17:02:46 +08:00
										 |  |  | 	reqCanAccessTeams := middleware.AdminOrFeatureEnabled(hs.Cfg.EditorsCanAdmin) | 
					
						
							| 
									
										
										
										
											2020-12-11 18:44:44 +08:00
										 |  |  | 	reqSnapshotPublicModeOrSignedIn := middleware.SnapshotPublicModeOrSignedIn(hs.Cfg) | 
					
						
							| 
									
										
										
										
											2020-12-16 02:09:04 +08:00
										 |  |  | 	redirectFromLegacyPanelEditURL := middleware.RedirectFromLegacyPanelEditURL(hs.Cfg) | 
					
						
							| 
									
										
										
										
											2021-04-14 22:31:27 +08:00
										 |  |  | 	authorize := acmiddleware.Middleware(hs.AccessControl) | 
					
						
							| 
									
										
										
										
											2021-11-17 17:12:28 +08:00
										 |  |  | 	authorizeInOrg := acmiddleware.AuthorizeInOrgMiddleware(hs.AccessControl, hs.SQLStore) | 
					
						
							| 
									
										
										
										
											2019-02-12 04:12:01 +08:00
										 |  |  | 	quota := middleware.Quota(hs.QuotaService) | 
					
						
							| 
									
										
										
										
											2014-12-16 04:25:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-27 19:41:58 +08:00
										 |  |  | 	r := hs.RouteRegister | 
					
						
							| 
									
										
										
										
											2016-08-29 20:45:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 21:25:12 +08:00
										 |  |  | 	// not logged in views
 | 
					
						
							| 
									
										
										
										
											2019-01-15 22:15:52 +08:00
										 |  |  | 	r.Get("/logout", hs.Logout) | 
					
						
							| 
									
										
										
										
											2021-10-06 18:52:27 +08:00
										 |  |  | 	r.Post("/login", quota("session"), routing.Wrap(hs.LoginPost)) | 
					
						
							| 
									
										
										
										
											2019-01-15 22:15:52 +08:00
										 |  |  | 	r.Get("/login/:name", quota("session"), hs.OAuthLogin) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/login", hs.LoginView) | 
					
						
							|  |  |  | 	r.Get("/invite/:code", hs.Index) | 
					
						
							| 
									
										
										
										
											2014-12-16 04:25:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 21:25:12 +08:00
										 |  |  | 	// authed views
 | 
					
						
							| 
									
										
										
										
											2020-11-11 06:36:35 +08:00
										 |  |  | 	r.Get("/", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2021-02-28 01:04:28 +08:00
										 |  |  | 	r.Get("/profile/", reqSignedInNoAnonymous, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/profile/password", reqSignedInNoAnonymous, hs.Index) | 
					
						
							| 
									
										
										
										
											2020-11-11 06:36:35 +08:00
										 |  |  | 	r.Get("/.well-known/change-password", redirectToChangePassword) | 
					
						
							| 
									
										
										
										
											2021-02-28 01:04:28 +08:00
										 |  |  | 	r.Get("/profile/switch-org/:id", reqSignedInNoAnonymous, hs.ChangeActiveOrgAndRedirectToHome) | 
					
						
							| 
									
										
										
										
											2021-11-18 21:10:38 +08:00
										 |  |  | 	r.Get("/org/", authorize(reqOrgAdmin, orgPreferencesAccessEvaluator), hs.Index) | 
					
						
							|  |  |  | 	r.Get("/org/new", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseGlobalOrg, orgsCreateAccessEvaluator), hs.Index) | 
					
						
							| 
									
										
										
										
											2021-09-22 19:50:21 +08:00
										 |  |  | 	r.Get("/datasources/", authorize(reqOrgAdmin, dataSourcesConfigurationAccessEvaluator), hs.Index) | 
					
						
							|  |  |  | 	r.Get("/datasources/new", authorize(reqOrgAdmin, dataSourcesNewAccessEvaluator), hs.Index) | 
					
						
							|  |  |  | 	r.Get("/datasources/edit/*", authorize(reqOrgAdmin, dataSourcesEditAccessEvaluator), hs.Index) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 	r.Get("/org/users", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersRead, ac.ScopeUsersAll)), hs.Index) | 
					
						
							| 
									
										
										
										
											2019-03-04 22:51:18 +08:00
										 |  |  | 	r.Get("/org/users/new", reqOrgAdmin, hs.Index) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 	r.Get("/org/users/invite", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionUsersCreate)), hs.Index) | 
					
						
							| 
									
										
										
										
											2019-03-14 17:02:46 +08:00
										 |  |  | 	r.Get("/org/teams", reqCanAccessTeams, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/org/teams/*", reqCanAccessTeams, hs.Index) | 
					
						
							| 
									
										
										
										
											2019-03-04 22:51:18 +08:00
										 |  |  | 	r.Get("/org/apikeys/", reqOrgAdmin, hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/dashboard/import/", reqSignedIn, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/configuration", reqGrafanaAdmin, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/admin", reqGrafanaAdmin, hs.Index) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 	r.Get("/admin/settings", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionSettingsRead)), hs.Index) | 
					
						
							|  |  |  | 	r.Get("/admin/users", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, ac.ScopeGlobalUsersAll)), hs.Index) | 
					
						
							|  |  |  | 	r.Get("/admin/users/create", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersCreate)), hs.Index) | 
					
						
							|  |  |  | 	r.Get("/admin/users/edit/:id", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead)), hs.Index) | 
					
						
							| 
									
										
										
										
											2021-11-18 21:10:38 +08:00
										 |  |  | 	r.Get("/admin/orgs", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseGlobalOrg, orgsAccessEvaluator), hs.Index) | 
					
						
							|  |  |  | 	r.Get("/admin/orgs/edit/:id", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseGlobalOrg, orgsAccessEvaluator), hs.Index) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 	r.Get("/admin/stats", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionServerStatsRead)), hs.Index) | 
					
						
							|  |  |  | 	r.Get("/admin/ldap", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionLDAPStatusRead)), hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/styleguide", reqSignedIn, hs.Index) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-14 12:09:55 +08:00
										 |  |  | 	r.Get("/live", reqGrafanaAdmin, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/live/pipeline", reqGrafanaAdmin, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/live/cloud", reqGrafanaAdmin, hs.Index) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/plugins", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2019-05-03 01:15:39 +08:00
										 |  |  | 	r.Get("/plugins/:id/", reqSignedIn, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/plugins/:id/edit", reqSignedIn, hs.Index) // deprecated
 | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/plugins/:id/page/:page", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2019-05-03 01:15:39 +08:00
										 |  |  | 	r.Get("/a/:id/*", reqSignedIn, hs.Index) // App Root Page
 | 
					
						
							| 
									
										
										
										
											2021-07-05 16:24:14 +08:00
										 |  |  | 	r.Get("/a/:id", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-17 18:51:41 +08:00
										 |  |  | 	r.Get("/d/:uid/:slug", reqSignedIn, redirectFromLegacyPanelEditURL, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/d/:uid", reqSignedIn, redirectFromLegacyPanelEditURL, hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/dashboard/script/*", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2020-11-11 06:36:35 +08:00
										 |  |  | 	r.Get("/dashboard/new", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/dashboard-solo/snapshot/*", hs.Index) | 
					
						
							|  |  |  | 	r.Get("/d-solo/:uid/:slug", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2019-10-15 00:21:44 +08:00
										 |  |  | 	r.Get("/d-solo/:uid", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/dashboard-solo/script/*", reqSignedIn, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/import/dashboard", reqSignedIn, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/dashboards/", reqSignedIn, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/dashboards/*", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2020-10-14 18:48:48 +08:00
										 |  |  | 	r.Get("/goto/:uid", reqSignedIn, hs.redirectFromShortURL, hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-02 20:43:12 +08:00
										 |  |  | 	r.Get("/explore", authorize(func(c *models.ReqContext) { | 
					
						
							|  |  |  | 		if f, ok := reqSignedIn.(func(c *models.ReqContext)); ok { | 
					
						
							|  |  |  | 			f(c) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		middleware.EnsureEditorOrViewerCanEdit(c) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 	}, ac.EvalPermission(ac.ActionDatasourcesExplore)), hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	r.Get("/playlists/", reqSignedIn, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/playlists/*", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2021-05-17 16:15:17 +08:00
										 |  |  | 	r.Get("/alerting/", reqSignedIn, hs.Index) | 
					
						
							|  |  |  | 	r.Get("/alerting/*", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2015-12-22 18:07:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 21:25:12 +08:00
										 |  |  | 	// sign up
 | 
					
						
							| 
									
										
										
										
											2020-09-07 23:24:46 +08:00
										 |  |  | 	r.Get("/verify", hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/signup", hs.Index) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	r.Get("/api/user/signup/options", routing.Wrap(GetSignUpOptions)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	r.Post("/api/user/signup", quota("user"), routing.Wrap(SignUp)) | 
					
						
							|  |  |  | 	r.Post("/api/user/signup/step2", routing.Wrap(hs.SignUpStep2)) | 
					
						
							| 
									
										
										
										
											2014-12-16 04:25:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-20 21:52:49 +08:00
										 |  |  | 	// invited
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	r.Get("/api/user/invite/:code", routing.Wrap(GetInviteInfoByCode)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	r.Post("/api/user/invite/complete", routing.Wrap(hs.CompleteInvite)) | 
					
						
							| 
									
										
										
										
											2015-07-20 21:52:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 16:57:01 +08:00
										 |  |  | 	// reset password
 | 
					
						
							| 
									
										
										
										
											2021-06-15 00:02:05 +08:00
										 |  |  | 	r.Get("/user/password/send-reset-email", reqNotSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/user/password/reset", hs.Index) | 
					
						
							| 
									
										
										
										
											2015-06-08 16:57:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	r.Post("/api/user/password/send-reset-email", routing.Wrap(SendResetPasswordEmail)) | 
					
						
							|  |  |  | 	r.Post("/api/user/password/reset", routing.Wrap(ResetPassword)) | 
					
						
							| 
									
										
										
										
											2014-12-16 04:25:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-21 20:53:16 +08:00
										 |  |  | 	// dashboard snapshots
 | 
					
						
							| 
									
										
										
										
											2021-03-16 23:46:34 +08:00
										 |  |  | 	r.Get("/dashboard/snapshot/*", reqNoAuth, hs.Index) | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 	r.Get("/dashboard/snapshots/", reqSignedIn, hs.Index) | 
					
						
							| 
									
										
										
										
											2015-03-27 03:34:58 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-05 00:37:07 +08:00
										 |  |  | 	// api renew session based on cookie
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	r.Get("/api/login/ping", quota("session"), routing.Wrap(hs.LoginAPIPing)) | 
					
						
							| 
									
										
										
										
											2015-04-07 15:25:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-21 21:17:23 +08:00
										 |  |  | 	// expose plugin file system assets
 | 
					
						
							| 
									
										
										
										
											2021-09-08 14:49:05 +08:00
										 |  |  | 	r.Get("/public/plugins/:pluginId/*", hs.getPluginAssets) | 
					
						
							| 
									
										
										
										
											2021-04-21 21:17:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 21:25:12 +08:00
										 |  |  | 	// authed api
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 	r.Group("/api", func(apiRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2015-05-19 17:47:14 +08:00
										 |  |  | 		// user (signed in)
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/user", func(userRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			userRoute.Get("/", routing.Wrap(GetSignedInUser)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			userRoute.Put("/", routing.Wrap(UpdateSignedInUser)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			userRoute.Post("/using/:id", routing.Wrap(UserSetUsingOrg)) | 
					
						
							|  |  |  | 			userRoute.Get("/orgs", routing.Wrap(GetSignedInUserOrgList)) | 
					
						
							|  |  |  | 			userRoute.Get("/teams", routing.Wrap(GetSignedInUserTeamList)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			userRoute.Post("/stars/dashboard/:id", routing.Wrap(StarDashboard)) | 
					
						
							|  |  |  | 			userRoute.Delete("/stars/dashboard/:id", routing.Wrap(UnstarDashboard)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			userRoute.Put("/password", routing.Wrap(ChangeUserPassword)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			userRoute.Get("/quotas", routing.Wrap(GetUserQuotas)) | 
					
						
							|  |  |  | 			userRoute.Put("/helpflags/:id", routing.Wrap(SetHelpFlag)) | 
					
						
							| 
									
										
										
										
											2016-11-09 17:41:39 +08:00
										 |  |  | 			// For dev purpose
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			userRoute.Get("/helpflags/clear", routing.Wrap(ClearHelpFlags)) | 
					
						
							| 
									
										
										
										
											2016-04-03 04:54:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-02 20:41:45 +08:00
										 |  |  | 			userRoute.Get("/preferences", routing.Wrap(hs.GetUserPreferences)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			userRoute.Put("/preferences", routing.Wrap(hs.UpdateUserPreferences)) | 
					
						
							| 
									
										
										
										
											2019-03-08 22:15:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			userRoute.Get("/auth-tokens", routing.Wrap(hs.GetUserAuthTokens)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			userRoute.Post("/revoke-auth-token", routing.Wrap(hs.RevokeUserAuthToken)) | 
					
						
							| 
									
										
										
										
											2021-02-28 01:04:28 +08:00
										 |  |  | 		}, reqSignedInNoAnonymous) | 
					
						
							| 
									
										
										
										
											2015-01-20 01:01:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/users", func(usersRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-10-07 17:54:43 +08:00
										 |  |  | 			userIDScope := ac.Scope("global", "users", "id", ac.Parameter(":id")) | 
					
						
							| 
									
										
										
										
											2021-09-29 18:51:49 +08:00
										 |  |  | 			usersRoute.Get("/", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, ac.ScopeGlobalUsersAll)), routing.Wrap(hs.searchUsersService.SearchUsers)) | 
					
						
							|  |  |  | 			usersRoute.Get("/search", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, ac.ScopeGlobalUsersAll)), routing.Wrap(hs.searchUsersService.SearchUsersWithPaging)) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 			usersRoute.Get("/:id", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, userIDScope)), routing.Wrap(GetUserByID)) | 
					
						
							|  |  |  | 			usersRoute.Get("/:id/teams", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersTeamRead, userIDScope)), routing.Wrap(GetUserTeams)) | 
					
						
							|  |  |  | 			usersRoute.Get("/:id/orgs", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, userIDScope)), routing.Wrap(GetUserOrgList)) | 
					
						
							| 
									
										
										
										
											2017-01-31 13:25:55 +08:00
										 |  |  | 			// query parameters /users/lookup?loginOrEmail=admin@example.com
 | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 			usersRoute.Get("/lookup", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, ac.ScopeGlobalUsersAll)), routing.Wrap(GetUserByLoginOrEmail)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			usersRoute.Put("/:id", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersWrite, userIDScope)), routing.Wrap(UpdateUser)) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 			usersRoute.Post("/:id/using/:orgId", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersWrite, userIDScope)), routing.Wrap(UpdateUserActiveOrg)) | 
					
						
							| 
									
										
										
										
											2021-04-14 22:31:27 +08:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2015-05-18 23:28:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-08 23:25:45 +08:00
										 |  |  | 		// team (admin permission required)
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/teams", func(teamsRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			teamsRoute.Post("/", routing.Wrap(hs.CreateTeam)) | 
					
						
							|  |  |  | 			teamsRoute.Put("/:teamId", routing.Wrap(hs.UpdateTeam)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			teamsRoute.Delete("/:teamId", routing.Wrap(hs.DeleteTeamByID)) | 
					
						
							|  |  |  | 			teamsRoute.Get("/:teamId/members", routing.Wrap(hs.GetTeamMembers)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			teamsRoute.Post("/:teamId/members", routing.Wrap(hs.AddTeamMember)) | 
					
						
							|  |  |  | 			teamsRoute.Put("/:teamId/members/:userId", routing.Wrap(hs.UpdateTeamMember)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			teamsRoute.Delete("/:teamId/members/:userId", routing.Wrap(hs.RemoveTeamMember)) | 
					
						
							|  |  |  | 			teamsRoute.Get("/:teamId/preferences", routing.Wrap(hs.GetTeamPreferences)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			teamsRoute.Put("/:teamId/preferences", routing.Wrap(hs.UpdateTeamPreferences)) | 
					
						
							| 
									
										
										
										
											2019-03-14 17:02:46 +08:00
										 |  |  | 		}, reqCanAccessTeams) | 
					
						
							| 
									
										
										
										
											2017-04-10 07:24:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 20:08:23 +08:00
										 |  |  | 		// team without requirement of user to be org admin
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/teams", func(teamsRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			teamsRoute.Get("/:teamId", routing.Wrap(hs.GetTeamByID)) | 
					
						
							|  |  |  | 			teamsRoute.Get("/search", routing.Wrap(hs.SearchTeams)) | 
					
						
							| 
									
										
										
										
											2018-04-06 20:08:23 +08:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-11 01:18:36 +08:00
										 |  |  | 		// org information available to all users.
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/org", func(orgRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-11-17 17:12:28 +08:00
										 |  |  | 			orgRoute.Get("/", authorize(reqSignedIn, ac.EvalPermission(ActionOrgsRead)), routing.Wrap(GetCurrentOrg)) | 
					
						
							|  |  |  | 			orgRoute.Get("/quotas", authorize(reqSignedIn, ac.EvalPermission(ActionOrgsQuotasRead)), routing.Wrap(hs.GetCurrentOrgQuotas)) | 
					
						
							| 
									
										
										
										
											2015-09-11 01:18:36 +08:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// current org
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/org", func(orgRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-10-07 17:54:43 +08:00
										 |  |  | 			userIDScope := ac.Scope("users", "id", ac.Parameter(":userId")) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			orgRoute.Put("/", authorize(reqOrgAdmin, ac.EvalPermission(ActionOrgsWrite)), routing.Wrap(UpdateCurrentOrg)) | 
					
						
							|  |  |  | 			orgRoute.Put("/address", authorize(reqOrgAdmin, ac.EvalPermission(ActionOrgsWrite)), routing.Wrap(UpdateCurrentOrgAddress)) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 			orgRoute.Get("/users", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersRead, ac.ScopeUsersAll)), routing.Wrap(hs.GetOrgUsersForCurrentOrg)) | 
					
						
							|  |  |  | 			orgRoute.Get("/users/search", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersRead, ac.ScopeUsersAll)), routing.Wrap(hs.SearchOrgUsersWithPaging)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			orgRoute.Post("/users", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersAdd, ac.ScopeUsersAll)), quota("user"), routing.Wrap(hs.AddOrgUserToCurrentOrg)) | 
					
						
							|  |  |  | 			orgRoute.Patch("/users/:userId", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersRoleUpdate, userIDScope)), routing.Wrap(hs.UpdateOrgUserForCurrentOrg)) | 
					
						
							| 
									
										
										
										
											2021-11-17 17:12:28 +08:00
										 |  |  | 			orgRoute.Delete("/users/:userId", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersRemove, userIDScope)), routing.Wrap(hs.RemoveOrgUserForCurrentOrg)) | 
					
						
							| 
									
										
										
										
											2015-07-17 15:51:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// invites
 | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 			orgRoute.Get("/invites", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionUsersCreate)), routing.Wrap(GetPendingOrgInvites)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			orgRoute.Post("/invites", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionUsersCreate)), quota("user"), routing.Wrap(AddOrgInvite)) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 			orgRoute.Patch("/invites/:code/revoke", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionUsersCreate)), routing.Wrap(RevokeInvite)) | 
					
						
							| 
									
										
										
										
											2015-12-18 13:46:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-03 04:54:06 +08:00
										 |  |  | 			// prefs
 | 
					
						
							| 
									
										
										
										
											2021-11-17 17:12:28 +08:00
										 |  |  | 			orgRoute.Get("/preferences", authorize(reqOrgAdmin, ac.EvalPermission(ActionOrgsPreferencesRead)), routing.Wrap(hs.GetOrgPreferences)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			orgRoute.Put("/preferences", authorize(reqOrgAdmin, ac.EvalPermission(ActionOrgsPreferencesWrite)), routing.Wrap(hs.UpdateOrgPreferences)) | 
					
						
							| 
									
										
										
										
											2021-04-22 18:19:41 +08:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2015-05-19 16:16:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 20:08:23 +08:00
										 |  |  | 		// current org without requirement of user to be org admin
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/org", func(orgRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-09-17 15:19:36 +08:00
										 |  |  | 			orgRoute.Get("/users/lookup", authorize(reqOrgAdminFolderAdminOrTeamAdmin, ac.EvalPermission(ac.ActionOrgUsersRead, ac.ScopeUsersAll)), routing.Wrap(hs.GetOrgUsersForCurrentOrgLookup)) | 
					
						
							| 
									
										
										
										
											2018-04-06 20:08:23 +08:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-19 16:16:32 +08:00
										 |  |  | 		// create new org
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		apiRoute.Post("/orgs", authorizeInOrg(reqSignedIn, acmiddleware.UseGlobalOrg, ac.EvalPermission(ActionOrgsCreate)), quota("org"), routing.Wrap(hs.CreateOrg)) | 
					
						
							| 
									
										
										
										
											2015-05-19 16:16:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-19 17:47:14 +08:00
										 |  |  | 		// search all orgs
 | 
					
						
							| 
									
										
										
										
											2021-11-17 17:12:28 +08:00
										 |  |  | 		apiRoute.Get("/orgs", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseGlobalOrg, ac.EvalPermission(ActionOrgsRead)), routing.Wrap(SearchOrgs)) | 
					
						
							| 
									
										
										
										
											2015-05-19 17:47:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-19 16:16:32 +08:00
										 |  |  | 		// orgs (admin routes)
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/orgs/:orgId", func(orgsRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-11-17 17:12:28 +08:00
										 |  |  | 			userIDScope := ac.Scope("users", "id", ac.Parameter(":userId")) | 
					
						
							|  |  |  | 			orgsRoute.Get("/", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseOrgFromContextParams, ac.EvalPermission(ActionOrgsRead)), routing.Wrap(GetOrgByID)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			orgsRoute.Put("/", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseOrgFromContextParams, ac.EvalPermission(ActionOrgsWrite)), routing.Wrap(UpdateOrg)) | 
					
						
							|  |  |  | 			orgsRoute.Put("/address", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseOrgFromContextParams, ac.EvalPermission(ActionOrgsWrite)), routing.Wrap(UpdateOrgAddress)) | 
					
						
							| 
									
										
										
										
											2021-11-17 17:12:28 +08:00
										 |  |  | 			orgsRoute.Delete("/", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseOrgFromContextParams, ac.EvalPermission(ActionOrgsDelete)), routing.Wrap(DeleteOrgByID)) | 
					
						
							|  |  |  | 			orgsRoute.Get("/users", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgUsersRead, ac.ScopeUsersAll)), routing.Wrap(hs.GetOrgUsers)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			orgsRoute.Post("/users", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgUsersAdd, ac.ScopeUsersAll)), routing.Wrap(hs.AddOrgUser)) | 
					
						
							|  |  |  | 			orgsRoute.Patch("/users/:userId", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgUsersRoleUpdate, userIDScope)), routing.Wrap(hs.UpdateOrgUser)) | 
					
						
							| 
									
										
										
										
											2021-11-17 17:12:28 +08:00
										 |  |  | 			orgsRoute.Delete("/users/:userId", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgUsersRemove, userIDScope)), routing.Wrap(hs.RemoveOrgUser)) | 
					
						
							|  |  |  | 			orgsRoute.Get("/quotas", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseOrgFromContextParams, ac.EvalPermission(ActionOrgsQuotasRead)), routing.Wrap(hs.GetOrgQuotas)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			orgsRoute.Put("/quotas/:target", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseOrgFromContextParams, ac.EvalPermission(ActionOrgsQuotasWrite)), routing.Wrap(hs.UpdateOrgQuota)) | 
					
						
							| 
									
										
										
										
											2021-04-22 18:19:41 +08:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2015-01-27 03:26:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-13 05:50:56 +08:00
										 |  |  | 		// orgs (admin routes)
 | 
					
						
							| 
									
										
										
										
											2021-11-17 17:12:28 +08:00
										 |  |  | 		apiRoute.Get("/orgs/name/:name/", authorizeInOrg(reqGrafanaAdmin, acmiddleware.UseGlobalOrg, ac.EvalPermission(ActionOrgsRead)), routing.Wrap(hs.GetOrgByName)) | 
					
						
							| 
									
										
										
										
											2016-01-13 05:50:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-27 15:26:11 +08:00
										 |  |  | 		// auth api keys
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/auth/keys", func(keysRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			keysRoute.Get("/", routing.Wrap(GetAPIKeys)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			keysRoute.Post("/", quota("api_key"), routing.Wrap(hs.AddAPIKey)) | 
					
						
							|  |  |  | 			keysRoute.Post("/additional", quota("api_key"), routing.Wrap(hs.AdditionalAPIKey)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			keysRoute.Delete("/:id", routing.Wrap(DeleteAPIKey)) | 
					
						
							| 
									
										
										
										
											2015-12-03 23:43:55 +08:00
										 |  |  | 		}, reqOrgAdmin) | 
					
						
							| 
									
										
										
										
											2015-01-27 03:26:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-17 14:35:06 +08:00
										 |  |  | 		// Preferences
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/preferences", func(prefRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			prefRoute.Post("/set-home-dash", routing.Wrap(SetHomeDashboard)) | 
					
						
							| 
									
										
										
										
											2016-03-17 14:35:06 +08:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2016-03-11 22:30:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 21:25:12 +08:00
										 |  |  | 		// Data sources
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/datasources", func(datasourceRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-09-07 23:13:11 +08:00
										 |  |  | 			datasourceRoute.Get("/", authorize(reqOrgAdmin, ac.EvalPermission(ActionDatasourcesRead, ScopeDatasourcesAll)), routing.Wrap(hs.GetDataSources)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			datasourceRoute.Post("/", authorize(reqOrgAdmin, ac.EvalPermission(ActionDatasourcesCreate)), quota("data_source"), routing.Wrap(AddDataSource)) | 
					
						
							|  |  |  | 			datasourceRoute.Put("/:id", authorize(reqOrgAdmin, ac.EvalPermission(ActionDatasourcesWrite, ScopeDatasourceID)), routing.Wrap(hs.UpdateDataSource)) | 
					
						
							| 
									
										
										
										
											2021-09-01 21:18:17 +08:00
										 |  |  | 			datasourceRoute.Delete("/:id", authorize(reqOrgAdmin, ac.EvalPermission(ActionDatasourcesDelete, ScopeDatasourceID)), routing.Wrap(hs.DeleteDataSourceById)) | 
					
						
							|  |  |  | 			datasourceRoute.Delete("/uid/:uid", authorize(reqOrgAdmin, ac.EvalPermission(ActionDatasourcesDelete, ScopeDatasourceUID)), routing.Wrap(hs.DeleteDataSourceByUID)) | 
					
						
							|  |  |  | 			datasourceRoute.Delete("/name/:name", authorize(reqOrgAdmin, ac.EvalPermission(ActionDatasourcesDelete, ScopeDatasourceName)), routing.Wrap(hs.DeleteDataSourceByName)) | 
					
						
							|  |  |  | 			datasourceRoute.Get("/:id", authorize(reqOrgAdmin, ac.EvalPermission(ActionDatasourcesRead, ScopeDatasourceID)), routing.Wrap(GetDataSourceById)) | 
					
						
							|  |  |  | 			datasourceRoute.Get("/uid/:uid", authorize(reqOrgAdmin, ac.EvalPermission(ActionDatasourcesRead, ScopeDatasourceUID)), routing.Wrap(GetDataSourceByUID)) | 
					
						
							|  |  |  | 			datasourceRoute.Get("/name/:name", authorize(reqOrgAdmin, ac.EvalPermission(ActionDatasourcesRead, ScopeDatasourceName)), routing.Wrap(GetDataSourceByName)) | 
					
						
							|  |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2015-12-03 23:43:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 21:18:17 +08:00
										 |  |  | 		apiRoute.Get("/datasources/id/:name", authorize(reqSignedIn, ac.EvalPermission(ActionDatasourcesIDRead, ScopeDatasourceName)), routing.Wrap(GetDataSourceIdByName)) | 
					
						
							| 
									
										
										
										
											2016-03-08 04:25:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		apiRoute.Get("/plugins", routing.Wrap(hs.GetPluginList)) | 
					
						
							| 
									
										
										
										
											2021-03-17 23:06:10 +08:00
										 |  |  | 		apiRoute.Get("/plugins/:pluginId/settings", routing.Wrap(hs.GetPluginSettingByID)) | 
					
						
							| 
									
										
										
										
											2021-03-08 14:02:49 +08:00
										 |  |  | 		apiRoute.Get("/plugins/:pluginId/markdown/:name", routing.Wrap(hs.GetPluginMarkdown)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		apiRoute.Get("/plugins/:pluginId/health", routing.Wrap(hs.CheckHealth)) | 
					
						
							| 
									
										
										
										
											2020-03-03 18:45:16 +08:00
										 |  |  | 		apiRoute.Any("/plugins/:pluginId/resources", hs.CallResource) | 
					
						
							|  |  |  | 		apiRoute.Any("/plugins/:pluginId/resources/*", hs.CallResource) | 
					
						
							| 
									
										
										
										
											2021-05-13 02:05:16 +08:00
										 |  |  | 		apiRoute.Get("/plugins/errors", routing.Wrap(hs.GetPluginErrorsList)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-04 17:49:05 +08:00
										 |  |  | 		apiRoute.Group("/plugins", func(pluginRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			pluginRoute.Post("/:pluginId/install", routing.Wrap(hs.InstallPlugin)) | 
					
						
							| 
									
										
										
										
											2021-08-04 17:49:05 +08:00
										 |  |  | 			pluginRoute.Post("/:pluginId/uninstall", routing.Wrap(hs.UninstallPlugin)) | 
					
						
							|  |  |  | 		}, reqGrafanaAdmin) | 
					
						
							| 
									
										
										
										
											2016-03-11 16:57:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/plugins", func(pluginRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-03-08 14:02:49 +08:00
										 |  |  | 			pluginRoute.Get("/:pluginId/dashboards/", routing.Wrap(hs.GetPluginDashboards)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			pluginRoute.Post("/:pluginId/settings", routing.Wrap(hs.UpdatePluginSetting)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			pluginRoute.Get("/:pluginId/metrics", routing.Wrap(hs.CollectPluginMetrics)) | 
					
						
							| 
									
										
										
										
											2015-12-03 23:43:55 +08:00
										 |  |  | 		}, reqOrgAdmin) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-09 23:47:43 +08:00
										 |  |  | 		apiRoute.Get("/frontend/settings/", hs.GetFrontendSettings) | 
					
						
							| 
									
										
										
										
											2021-10-21 21:41:40 +08:00
										 |  |  | 		apiRoute.Any("/datasources/proxy/:id/*", authorize(reqSignedIn, ac.EvalPermission(ActionDatasourcesQuery)), hs.ProxyDataSourceRequest) | 
					
						
							|  |  |  | 		apiRoute.Any("/datasources/proxy/:id", authorize(reqSignedIn, ac.EvalPermission(ActionDatasourcesQuery)), hs.ProxyDataSourceRequest) | 
					
						
							|  |  |  | 		apiRoute.Any("/datasources/:id/resources", authorize(reqSignedIn, ac.EvalPermission(ActionDatasourcesQuery)), hs.CallDatasourceResource) | 
					
						
							|  |  |  | 		apiRoute.Any("/datasources/:id/resources/*", authorize(reqSignedIn, ac.EvalPermission(ActionDatasourcesQuery)), hs.CallDatasourceResource) | 
					
						
							|  |  |  | 		apiRoute.Any("/datasources/:id/health", authorize(reqSignedIn, ac.EvalPermission(ActionDatasourcesQuery)), routing.Wrap(hs.CheckDatasourceHealth)) | 
					
						
							| 
									
										
										
										
											2015-02-10 17:19:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 20:51:01 +08:00
										 |  |  | 		// Folders
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/folders", func(folderRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-03-17 23:06:10 +08:00
										 |  |  | 			folderRoute.Get("/", routing.Wrap(hs.GetFolders)) | 
					
						
							|  |  |  | 			folderRoute.Get("/id/:id", routing.Wrap(hs.GetFolderByID)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			folderRoute.Post("/", routing.Wrap(hs.CreateFolder)) | 
					
						
							| 
									
										
										
										
											2018-02-20 22:25:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 			folderRoute.Group("/:uid", func(folderUidRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-03-17 23:06:10 +08:00
										 |  |  | 				folderUidRoute.Get("/", routing.Wrap(hs.GetFolderByUID)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 				folderUidRoute.Put("/", routing.Wrap(hs.UpdateFolder)) | 
					
						
							| 
									
										
										
										
											2021-03-02 17:34:01 +08:00
										 |  |  | 				folderUidRoute.Delete("/", routing.Wrap(hs.DeleteFolder)) | 
					
						
							| 
									
										
										
										
											2018-02-20 22:25:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 				folderUidRoute.Group("/permissions", func(folderPermissionRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 					folderPermissionRoute.Get("/", routing.Wrap(hs.GetFolderPermissionList)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 					folderPermissionRoute.Post("/", routing.Wrap(hs.UpdateFolderPermissions)) | 
					
						
							| 
									
										
										
										
											2018-02-20 22:25:16 +08:00
										 |  |  | 				}) | 
					
						
							|  |  |  | 			}) | 
					
						
							| 
									
										
										
										
											2018-01-29 20:51:01 +08:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 21:25:12 +08:00
										 |  |  | 		// Dashboard
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/dashboards", func(dashboardRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			dashboardRoute.Get("/uid/:uid", routing.Wrap(hs.GetDashboard)) | 
					
						
							| 
									
										
										
										
											2021-01-20 16:28:10 +08:00
										 |  |  | 			dashboardRoute.Delete("/uid/:uid", routing.Wrap(hs.DeleteDashboardByUID)) | 
					
						
							| 
									
										
										
										
											2018-01-30 04:23:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			dashboardRoute.Post("/calculate-diff", routing.Wrap(CalculateDashboardDiff)) | 
					
						
							|  |  |  | 			dashboardRoute.Post("/trim", routing.Wrap(hs.TrimDashboard)) | 
					
						
							| 
									
										
										
										
											2017-06-07 17:50:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			dashboardRoute.Post("/db", routing.Wrap(hs.PostDashboard)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			dashboardRoute.Get("/home", routing.Wrap(hs.GetHomeDashboard)) | 
					
						
							| 
									
										
										
										
											2017-09-13 20:53:38 +08:00
										 |  |  | 			dashboardRoute.Get("/tags", GetDashboardTags) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			dashboardRoute.Post("/import", routing.Wrap(hs.ImportDashboard)) | 
					
						
							| 
									
										
										
										
											2017-10-12 23:38:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 			dashboardRoute.Group("/id/:dashboardId", func(dashIdRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 				dashIdRoute.Get("/versions", routing.Wrap(GetDashboardVersions)) | 
					
						
							|  |  |  | 				dashIdRoute.Get("/versions/:id", routing.Wrap(GetDashboardVersion)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 				dashIdRoute.Post("/restore", routing.Wrap(hs.RestoreDashboardVersion)) | 
					
						
							| 
									
										
										
										
											2017-10-12 23:38:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 				dashIdRoute.Group("/permissions", func(dashboardPermissionRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 					dashboardPermissionRoute.Get("/", routing.Wrap(hs.GetDashboardPermissionList)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 					dashboardPermissionRoute.Post("/", routing.Wrap(hs.UpdateDashboardPermissions)) | 
					
						
							| 
									
										
										
										
											2017-10-12 23:38:49 +08:00
										 |  |  | 				}) | 
					
						
							|  |  |  | 			}) | 
					
						
							| 
									
										
										
										
											2015-01-14 21:25:12 +08:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2015-01-27 03:26:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 21:05:24 +08:00
										 |  |  | 		// Dashboard snapshots
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/dashboard/snapshots", func(dashboardRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			dashboardRoute.Get("/", routing.Wrap(SearchDashboardSnapshots)) | 
					
						
							| 
									
										
										
										
											2016-01-19 21:05:24 +08:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2016-01-19 17:37:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-22 18:07:15 +08:00
										 |  |  | 		// Playlist
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/playlists", func(playlistRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			playlistRoute.Get("/", routing.Wrap(SearchPlaylists)) | 
					
						
							|  |  |  | 			playlistRoute.Get("/:id", ValidateOrgPlaylist, routing.Wrap(GetPlaylist)) | 
					
						
							|  |  |  | 			playlistRoute.Get("/:id/items", ValidateOrgPlaylist, routing.Wrap(GetPlaylistItems)) | 
					
						
							|  |  |  | 			playlistRoute.Get("/:id/dashboards", ValidateOrgPlaylist, routing.Wrap(GetPlaylistDashboards)) | 
					
						
							|  |  |  | 			playlistRoute.Delete("/:id", reqEditorRole, ValidateOrgPlaylist, routing.Wrap(DeletePlaylist)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			playlistRoute.Put("/:id", reqEditorRole, ValidateOrgPlaylist, routing.Wrap(UpdatePlaylist)) | 
					
						
							|  |  |  | 			playlistRoute.Post("/", reqEditorRole, routing.Wrap(CreatePlaylist)) | 
					
						
							| 
									
										
										
										
											2015-12-22 18:07:15 +08:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 21:25:12 +08:00
										 |  |  | 		// Search
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		apiRoute.Get("/search/sorting", routing.Wrap(hs.ListSortOptions)) | 
					
						
							|  |  |  | 		apiRoute.Get("/search/", routing.Wrap(Search)) | 
					
						
							| 
									
										
										
										
											2015-01-27 03:26:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 21:25:12 +08:00
										 |  |  | 		// metrics
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		apiRoute.Post("/tsdb/query", authorize(reqSignedIn, ac.EvalPermission(ActionDatasourcesQuery)), routing.Wrap(hs.QueryMetrics)) | 
					
						
							| 
									
										
										
										
											2017-09-13 20:53:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-01 07:22:00 +08:00
										 |  |  | 		// DataSource w/ expressions
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		apiRoute.Post("/ds/query", authorize(reqSignedIn, ac.EvalPermission(ActionDatasourcesQuery)), routing.Wrap(hs.QueryMetricsV2)) | 
					
						
							| 
									
										
										
										
											2019-11-01 07:22:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/alerts", func(alertsRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			alertsRoute.Post("/test", routing.Wrap(hs.AlertTest)) | 
					
						
							|  |  |  | 			alertsRoute.Post("/:alertId/pause", reqEditorRole, routing.Wrap(PauseAlert)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			alertsRoute.Get("/:alertId", ValidateOrgAlert, routing.Wrap(GetAlert)) | 
					
						
							|  |  |  | 			alertsRoute.Get("/", routing.Wrap(GetAlerts)) | 
					
						
							|  |  |  | 			alertsRoute.Get("/states-for-dashboard", routing.Wrap(GetAlertStatesForDashboard)) | 
					
						
							| 
									
										
										
										
											2016-04-26 23:36:50 +08:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 19:58:39 +08:00
										 |  |  | 		apiRoute.Get("/alert-notifiers", reqEditorRole, routing.Wrap( | 
					
						
							| 
									
										
										
										
											2021-11-25 03:56:07 +08:00
										 |  |  | 			GetAlertNotifiers(hs.Cfg.UnifiedAlerting.IsEnabled())), | 
					
						
							| 
									
										
										
										
											2021-05-04 19:58:39 +08:00
										 |  |  | 		) | 
					
						
							| 
									
										
										
										
											2016-07-14 19:32:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/alert-notifications", func(alertNotifications routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			alertNotifications.Get("/", routing.Wrap(GetAlertNotifications)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			alertNotifications.Post("/test", routing.Wrap(NotificationTest)) | 
					
						
							|  |  |  | 			alertNotifications.Post("/", routing.Wrap(CreateAlertNotification)) | 
					
						
							|  |  |  | 			alertNotifications.Put("/:notificationId", routing.Wrap(hs.UpdateAlertNotification)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			alertNotifications.Get("/:notificationId", routing.Wrap(GetAlertNotificationByID)) | 
					
						
							|  |  |  | 			alertNotifications.Delete("/:notificationId", routing.Wrap(DeleteAlertNotification)) | 
					
						
							|  |  |  | 			alertNotifications.Get("/uid/:uid", routing.Wrap(GetAlertNotificationByUID)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			alertNotifications.Put("/uid/:uid", routing.Wrap(hs.UpdateAlertNotificationByUID)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			alertNotifications.Delete("/uid/:uid", routing.Wrap(DeleteAlertNotificationByUID)) | 
					
						
							| 
									
										
										
										
											2016-10-19 14:01:14 +08:00
										 |  |  | 		}, reqEditorRole) | 
					
						
							| 
									
										
										
										
											2016-07-14 19:32:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-13 02:03:48 +08:00
										 |  |  | 		// alert notifications without requirement of user to be org editor
 | 
					
						
							|  |  |  | 		apiRoute.Group("/alert-notifications", func(orgRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			orgRoute.Get("/lookup", routing.Wrap(GetAlertNotificationLookup)) | 
					
						
							| 
									
										
										
										
											2019-08-13 02:03:48 +08:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 		apiRoute.Get("/annotations", routing.Wrap(GetAnnotations)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		apiRoute.Post("/annotations/mass-delete", reqOrgAdmin, routing.Wrap(DeleteAnnotations)) | 
					
						
							| 
									
										
										
										
											2017-04-12 21:46:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 		apiRoute.Group("/annotations", func(annotationsRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			annotationsRoute.Post("/", routing.Wrap(PostAnnotation)) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 			annotationsRoute.Delete("/:annotationId", routing.Wrap(DeleteAnnotationByID)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			annotationsRoute.Put("/:annotationId", routing.Wrap(UpdateAnnotation)) | 
					
						
							|  |  |  | 			annotationsRoute.Patch("/:annotationId", routing.Wrap(PatchAnnotation)) | 
					
						
							|  |  |  | 			annotationsRoute.Post("/graphite", reqEditorRole, routing.Wrap(PostGraphiteAnnotation)) | 
					
						
							| 
									
										
										
										
											2021-06-30 19:42:54 +08:00
										 |  |  | 			annotationsRoute.Get("/tags", routing.Wrap(GetAnnotationTags)) | 
					
						
							| 
									
										
										
										
											2017-12-21 07:52:21 +08:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2016-09-08 17:25:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		apiRoute.Post("/frontend-metrics", routing.Wrap(hs.PostFrontendMetrics)) | 
					
						
							| 
									
										
										
										
											2021-04-02 02:04:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 23:44:55 +08:00
										 |  |  | 		apiRoute.Group("/live", func(liveRoute routing.RouteRegister) { | 
					
						
							|  |  |  | 			// the channel path is in the name
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 			liveRoute.Post("/publish", routing.Wrap(hs.Live.HandleHTTPPublish)) | 
					
						
							| 
									
										
										
										
											2021-04-06 00:04:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-10 00:19:29 +08:00
										 |  |  | 			// POST influx line protocol.
 | 
					
						
							| 
									
										
										
										
											2021-05-04 23:44:55 +08:00
										 |  |  | 			liveRoute.Post("/push/:streamId", hs.LivePushGateway.Handle) | 
					
						
							| 
									
										
										
										
											2021-04-06 00:04:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 23:44:55 +08:00
										 |  |  | 			// List available streams and fields
 | 
					
						
							|  |  |  | 			liveRoute.Get("/list", routing.Wrap(hs.Live.HandleListHTTP)) | 
					
						
							| 
									
										
										
										
											2021-04-24 03:55:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 23:44:55 +08:00
										 |  |  | 			// Some channels may have info
 | 
					
						
							|  |  |  | 			liveRoute.Get("/info/*", routing.Wrap(hs.Live.HandleInfoHTTP)) | 
					
						
							| 
									
										
										
										
											2021-09-10 00:19:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if hs.Cfg.FeatureToggles["live-pipeline"] { | 
					
						
							|  |  |  | 				// POST Live data to be processed according to channel rules.
 | 
					
						
							| 
									
										
										
										
											2021-11-15 17:43:18 +08:00
										 |  |  | 				liveRoute.Post("/pipeline/push/*", hs.LivePushGateway.HandlePipelinePush) | 
					
						
							| 
									
										
										
										
											2021-10-01 01:28:06 +08:00
										 |  |  | 				liveRoute.Post("/pipeline-convert-test", routing.Wrap(hs.Live.HandlePipelineConvertTestHTTP), reqOrgAdmin) | 
					
						
							| 
									
										
										
										
											2021-11-05 17:13:40 +08:00
										 |  |  | 				liveRoute.Get("/pipeline-entities", routing.Wrap(hs.Live.HandlePipelineEntitiesListHTTP), reqOrgAdmin) | 
					
						
							|  |  |  | 				liveRoute.Get("/channel-rules", routing.Wrap(hs.Live.HandleChannelRulesListHTTP), reqOrgAdmin) | 
					
						
							| 
									
										
										
										
											2021-10-01 00:29:32 +08:00
										 |  |  | 				liveRoute.Post("/channel-rules", routing.Wrap(hs.Live.HandleChannelRulesPostHTTP), reqOrgAdmin) | 
					
						
							|  |  |  | 				liveRoute.Put("/channel-rules", routing.Wrap(hs.Live.HandleChannelRulesPutHTTP), reqOrgAdmin) | 
					
						
							|  |  |  | 				liveRoute.Delete("/channel-rules", routing.Wrap(hs.Live.HandleChannelRulesDeleteHTTP), reqOrgAdmin) | 
					
						
							| 
									
										
										
										
											2021-11-10 00:12:10 +08:00
										 |  |  | 				liveRoute.Get("/write-configs", routing.Wrap(hs.Live.HandleWriteConfigsListHTTP), reqOrgAdmin) | 
					
						
							|  |  |  | 				liveRoute.Post("/write-configs", routing.Wrap(hs.Live.HandleWriteConfigsPostHTTP), reqOrgAdmin) | 
					
						
							|  |  |  | 				liveRoute.Put("/write-configs", routing.Wrap(hs.Live.HandleWriteConfigsPutHTTP), reqOrgAdmin) | 
					
						
							|  |  |  | 				liveRoute.Delete("/write-configs", routing.Wrap(hs.Live.HandleWriteConfigsDeleteHTTP), reqOrgAdmin) | 
					
						
							| 
									
										
										
										
											2021-09-10 00:19:29 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-05-04 23:44:55 +08:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2021-03-30 18:23:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-14 18:48:48 +08:00
										 |  |  | 		// short urls
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		apiRoute.Post("/short-urls", routing.Wrap(hs.createShortURL)) | 
					
						
							| 
									
										
										
										
											2015-01-15 19:16:54 +08:00
										 |  |  | 	}, reqSignedIn) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// admin api
 | 
					
						
							| 
									
										
										
										
											2018-06-25 22:36:47 +08:00
										 |  |  | 	r.Group("/api/admin", func(adminRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 		adminRoute.Get("/settings", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionSettingsRead)), routing.Wrap(hs.AdminGetSettings)) | 
					
						
							|  |  |  | 		adminRoute.Get("/stats", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionServerStatsRead)), routing.Wrap(AdminGetStats)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		adminRoute.Post("/pause-all-alerts", reqGrafanaAdmin, routing.Wrap(PauseAllAlerts)) | 
					
						
							| 
									
										
										
										
											2021-04-22 18:19:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 		adminRoute.Post("/provisioning/dashboards/reload", authorize(reqGrafanaAdmin, ac.EvalPermission(ActionProvisioningReload, ScopeProvisionersDashboards)), routing.Wrap(hs.AdminProvisioningReloadDashboards)) | 
					
						
							|  |  |  | 		adminRoute.Post("/provisioning/plugins/reload", authorize(reqGrafanaAdmin, ac.EvalPermission(ActionProvisioningReload, ScopeProvisionersPlugins)), routing.Wrap(hs.AdminProvisioningReloadPlugins)) | 
					
						
							|  |  |  | 		adminRoute.Post("/provisioning/datasources/reload", authorize(reqGrafanaAdmin, ac.EvalPermission(ActionProvisioningReload, ScopeProvisionersDatasources)), routing.Wrap(hs.AdminProvisioningReloadDatasources)) | 
					
						
							|  |  |  | 		adminRoute.Post("/provisioning/notifications/reload", authorize(reqGrafanaAdmin, ac.EvalPermission(ActionProvisioningReload, ScopeProvisionersNotifications)), routing.Wrap(hs.AdminProvisioningReloadNotifications)) | 
					
						
							| 
									
										
										
										
											2021-08-04 20:44:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 		adminRoute.Post("/ldap/reload", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionLDAPConfigReload)), routing.Wrap(hs.ReloadLDAPCfg)) | 
					
						
							|  |  |  | 		adminRoute.Post("/ldap/sync/:id", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionLDAPUsersSync)), routing.Wrap(hs.PostSyncUserWithLDAP)) | 
					
						
							|  |  |  | 		adminRoute.Get("/ldap/:username", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionLDAPUsersRead)), routing.Wrap(hs.GetUserFromLDAP)) | 
					
						
							|  |  |  | 		adminRoute.Get("/ldap/status", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionLDAPStatusRead)), routing.Wrap(hs.GetLDAPStatus)) | 
					
						
							| 
									
										
										
										
											2021-04-22 18:19:41 +08:00
										 |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2014-12-16 04:25:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-14 22:31:27 +08:00
										 |  |  | 	// Administering users
 | 
					
						
							|  |  |  | 	r.Group("/api/admin/users", func(adminUserRoute routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-10-07 17:54:43 +08:00
										 |  |  | 		userIDScope := ac.Scope("global", "users", "id", ac.Parameter(":id")) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		adminUserRoute.Post("/", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersCreate)), routing.Wrap(hs.AdminCreateUser)) | 
					
						
							|  |  |  | 		adminUserRoute.Put("/:id/password", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersPasswordUpdate, userIDScope)), routing.Wrap(AdminUpdateUserPassword)) | 
					
						
							|  |  |  | 		adminUserRoute.Put("/:id/permissions", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersPermissionsUpdate, userIDScope)), routing.Wrap(hs.AdminUpdateUserPermissions)) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 		adminUserRoute.Delete("/:id", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersDelete, userIDScope)), routing.Wrap(AdminDeleteUser)) | 
					
						
							|  |  |  | 		adminUserRoute.Post("/:id/disable", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersDisable, userIDScope)), routing.Wrap(hs.AdminDisableUser)) | 
					
						
							|  |  |  | 		adminUserRoute.Post("/:id/enable", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersEnable, userIDScope)), routing.Wrap(AdminEnableUser)) | 
					
						
							|  |  |  | 		adminUserRoute.Get("/:id/quotas", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersQuotasList, userIDScope)), routing.Wrap(GetUserQuotas)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		adminUserRoute.Put("/:id/quotas/:target", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersQuotasUpdate, userIDScope)), routing.Wrap(UpdateUserQuota)) | 
					
						
							| 
									
										
										
										
											2021-08-24 17:36:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		adminUserRoute.Post("/:id/logout", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersLogout, userIDScope)), routing.Wrap(hs.AdminLogoutUser)) | 
					
						
							|  |  |  | 		adminUserRoute.Get("/:id/auth-tokens", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersAuthTokenList, userIDScope)), routing.Wrap(hs.AdminGetUserAuthTokens)) | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		adminUserRoute.Post("/:id/revoke-auth-token", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersAuthTokenUpdate, userIDScope)), routing.Wrap(hs.AdminRevokeUserAuthToken)) | 
					
						
							| 
									
										
										
										
											2021-04-14 22:31:27 +08:00
										 |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-16 04:25:02 +08:00
										 |  |  | 	// rendering
 | 
					
						
							| 
									
										
										
										
											2018-05-24 21:26:27 +08:00
										 |  |  | 	r.Get("/render/*", reqSignedIn, hs.RenderToPng) | 
					
						
							| 
									
										
										
										
											2015-01-06 16:11:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-09 04:42:33 +08:00
										 |  |  | 	// grafana.net proxy
 | 
					
						
							| 
									
										
										
										
											2021-11-12 18:07:12 +08:00
										 |  |  | 	r.Any("/api/gnet/*", reqSignedIn, hs.ProxyGnetRequest) | 
					
						
							| 
									
										
										
										
											2016-04-09 04:42:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-21 06:51:22 +08:00
										 |  |  | 	// Gravatar service.
 | 
					
						
							| 
									
										
										
										
											2021-03-10 19:41:29 +08:00
										 |  |  | 	avatarCacheServer := avatar.NewCacheServer(hs.Cfg) | 
					
						
							| 
									
										
										
										
											2017-11-17 20:13:58 +08:00
										 |  |  | 	r.Get("/avatar/:hash", avatarCacheServer.Handler) | 
					
						
							| 
									
										
										
										
											2016-02-21 06:51:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-02 21:15:46 +08:00
										 |  |  | 	// Snapshots
 | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	r.Post("/api/snapshots/", reqSnapshotPublicModeOrSignedIn, CreateDashboardSnapshot) | 
					
						
							| 
									
										
										
										
											2019-09-02 21:15:46 +08:00
										 |  |  | 	r.Get("/api/snapshot/shared-options/", reqSignedIn, GetSharingOptions) | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	r.Get("/api/snapshots/:key", routing.Wrap(GetDashboardSnapshot)) | 
					
						
							|  |  |  | 	r.Get("/api/snapshots-delete/:deleteKey", reqSnapshotPublicModeOrSignedIn, routing.Wrap(DeleteDashboardSnapshotByDeleteKey)) | 
					
						
							|  |  |  | 	r.Delete("/api/snapshots/:key", reqEditorRole, routing.Wrap(DeleteDashboardSnapshot)) | 
					
						
							| 
									
										
										
										
											2020-11-12 19:29:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Frontend logs
 | 
					
						
							| 
									
										
										
										
											2021-11-01 17:53:33 +08:00
										 |  |  | 	sourceMapStore := frontendlogging.NewSourceMapStore(hs.Cfg, hs.pluginStaticRouteResolver, frontendlogging.ReadSourceMapFromFS) | 
					
						
							| 
									
										
										
										
											2021-03-18 20:53:01 +08:00
										 |  |  | 	r.Post("/log", middleware.RateLimit(hs.Cfg.Sentry.EndpointRPS, hs.Cfg.Sentry.EndpointBurst, time.Now), | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 		routing.Wrap(NewFrontendLogMessageHandler(sourceMapStore))) | 
					
						
							| 
									
										
										
										
											2014-12-16 04:25:02 +08:00
										 |  |  | } |