2022-07-27 08:54:37 -05:00
|
|
|
// Package api Grafana HTTP API.
|
|
|
|
//
|
|
|
|
// The Grafana backend exposes an HTTP API, the same API is used by the frontend to do
|
|
|
|
// everything from saving dashboards, creating users and updating data sources.
|
|
|
|
//
|
2022-09-12 02:40:35 -05:00
|
|
|
// Schemes: http, https
|
|
|
|
// BasePath: /api
|
|
|
|
// Version: 0.0.1
|
|
|
|
// Contact: Grafana Labs<hello@grafana.com> https://grafana.com
|
2022-07-27 08:54:37 -05:00
|
|
|
//
|
2022-09-12 02:40:35 -05:00
|
|
|
// Consumes:
|
|
|
|
// - application/json
|
2022-07-27 08:54:37 -05:00
|
|
|
//
|
2022-09-12 02:40:35 -05:00
|
|
|
// Produces:
|
|
|
|
// - application/json
|
2022-07-27 08:54:37 -05:00
|
|
|
//
|
2022-09-12 02:40:35 -05:00
|
|
|
// Security:
|
|
|
|
// - basic:
|
|
|
|
// - api_key:
|
2022-07-27 08:54:37 -05:00
|
|
|
//
|
2022-09-12 02:40:35 -05:00
|
|
|
// SecurityDefinitions:
|
|
|
|
// basic:
|
|
|
|
// type: basic
|
|
|
|
// api_key:
|
|
|
|
// type: apiKey
|
|
|
|
// name: Authorization
|
|
|
|
// in: header
|
2022-07-27 08:54:37 -05:00
|
|
|
//
|
|
|
|
// swagger:meta
|
2014-12-15 14:25:02 -06:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2018-06-25 09:36:47 -05:00
|
|
|
"github.com/grafana/grafana/pkg/api/routing"
|
2020-12-15 02:32:06 -06:00
|
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
2015-02-05 03:37:13 -06:00
|
|
|
"github.com/grafana/grafana/pkg/middleware"
|
2022-07-08 06:24:09 -05:00
|
|
|
"github.com/grafana/grafana/pkg/plugins"
|
2021-08-24 04:36:28 -05:00
|
|
|
ac "github.com/grafana/grafana/pkg/services/accesscontrol"
|
2022-11-14 13:08:10 -06:00
|
|
|
"github.com/grafana/grafana/pkg/services/apikey"
|
|
|
|
"github.com/grafana/grafana/pkg/services/auth"
|
2023-01-27 01:50:36 -06:00
|
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
2022-08-26 05:27:28 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/correlations"
|
2022-03-09 10:57:50 -06:00
|
|
|
"github.com/grafana/grafana/pkg/services/dashboards"
|
|
|
|
"github.com/grafana/grafana/pkg/services/datasources"
|
2022-01-26 11:44:20 -06:00
|
|
|
"github.com/grafana/grafana/pkg/services/featuremgmt"
|
2022-11-14 13:08:10 -06:00
|
|
|
"github.com/grafana/grafana/pkg/services/org"
|
2022-07-06 18:51:44 -05:00
|
|
|
publicdashboardsapi "github.com/grafana/grafana/pkg/services/publicdashboards/api"
|
2022-04-14 06:40:15 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/serviceaccounts"
|
2022-11-14 13:08:10 -06:00
|
|
|
"github.com/grafana/grafana/pkg/services/user"
|
2022-07-12 02:01:31 -05:00
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
2022-04-06 11:24:33 -05:00
|
|
|
"github.com/grafana/grafana/pkg/web"
|
2014-12-15 14:25:02 -06:00
|
|
|
)
|
|
|
|
|
2020-12-15 02:32:06 -06:00
|
|
|
var plog = log.New("api")
|
|
|
|
|
2020-10-28 03:36:57 -05:00
|
|
|
// registerRoutes registers all API HTTP routes.
|
2018-03-22 16:13:46 -05:00
|
|
|
func (hs *HTTPServer) registerRoutes() {
|
2021-03-16 10:46:34 -05:00
|
|
|
reqNoAuth := middleware.NoAuth()
|
2018-10-11 05:36:04 -05:00
|
|
|
reqSignedIn := middleware.ReqSignedIn
|
2021-06-14 11:02:05 -05:00
|
|
|
reqNotSignedIn := middleware.ReqNotSignedIn
|
2021-02-27 11:04:28 -06:00
|
|
|
reqSignedInNoAnonymous := middleware.ReqSignedInNoAnonymous
|
2018-10-11 05:36:04 -05:00
|
|
|
reqGrafanaAdmin := middleware.ReqGrafanaAdmin
|
|
|
|
reqEditorRole := middleware.ReqEditorRole
|
|
|
|
reqOrgAdmin := middleware.ReqOrgAdmin
|
2022-09-20 11:58:04 -05:00
|
|
|
reqOrgAdminDashOrFolderAdminOrTeamAdmin := middleware.OrgAdminDashOrFolderAdminOrTeamAdmin(hs.SQLStore, hs.DashboardService, hs.teamService)
|
2022-02-09 06:44:38 -06:00
|
|
|
reqCanAccessTeams := middleware.AdminOrEditorAndFeatureEnabled(hs.Cfg.EditorsCanAdmin)
|
2020-12-11 04:44:44 -06:00
|
|
|
reqSnapshotPublicModeOrSignedIn := middleware.SnapshotPublicModeOrSignedIn(hs.Cfg)
|
2020-12-15 12:09:04 -06:00
|
|
|
redirectFromLegacyPanelEditURL := middleware.RedirectFromLegacyPanelEditURL(hs.Cfg)
|
2022-04-28 03:46:18 -05:00
|
|
|
authorize := ac.Middleware(hs.AccessControl)
|
2022-09-09 02:07:45 -05:00
|
|
|
authorizeInOrg := ac.AuthorizeInOrgMiddleware(hs.AccessControl, hs.accesscontrolService, hs.userService)
|
2019-02-11 14:12:01 -06:00
|
|
|
quota := middleware.Quota(hs.QuotaService)
|
2014-12-15 14:25:02 -06:00
|
|
|
|
2018-04-27 06:41:58 -05:00
|
|
|
r := hs.RouteRegister
|
2016-08-29 07:45:28 -05:00
|
|
|
|
2015-01-14 07:25:12 -06:00
|
|
|
// not logged in views
|
2019-01-15 08:15:52 -06:00
|
|
|
r.Get("/logout", hs.Logout)
|
2022-11-14 13:08:10 -06:00
|
|
|
r.Post("/login", quota(string(auth.QuotaTargetSrv)), routing.Wrap(hs.LoginPost))
|
|
|
|
r.Get("/login/:name", quota(string(auth.QuotaTargetSrv)), hs.OAuthLogin)
|
2018-10-09 10:47:43 -05:00
|
|
|
r.Get("/login", hs.LoginView)
|
|
|
|
r.Get("/invite/:code", hs.Index)
|
2014-12-15 14:25:02 -06:00
|
|
|
|
2015-01-14 07:25:12 -06:00
|
|
|
// authed views
|
2020-11-10 16:36:35 -06:00
|
|
|
r.Get("/", reqSignedIn, hs.Index)
|
2021-02-27 11:04:28 -06:00
|
|
|
r.Get("/profile/", reqSignedInNoAnonymous, hs.Index)
|
|
|
|
r.Get("/profile/password", reqSignedInNoAnonymous, hs.Index)
|
2020-11-10 16:36:35 -06:00
|
|
|
r.Get("/.well-known/change-password", redirectToChangePassword)
|
2021-02-27 11:04:28 -06:00
|
|
|
r.Get("/profile/switch-org/:id", reqSignedInNoAnonymous, hs.ChangeActiveOrgAndRedirectToHome)
|
2022-09-22 15:04:48 -05:00
|
|
|
r.Get("/org/", authorize(reqOrgAdmin, ac.OrgPreferencesAccessEvaluator), hs.Index)
|
|
|
|
r.Get("/org/new", authorizeInOrg(reqGrafanaAdmin, ac.UseGlobalOrg, ac.OrgsCreateAccessEvaluator), hs.Index)
|
2022-03-16 09:11:03 -05:00
|
|
|
r.Get("/datasources/", authorize(reqOrgAdmin, datasources.ConfigurationPageAccess), hs.Index)
|
|
|
|
r.Get("/datasources/new", authorize(reqOrgAdmin, datasources.NewPageAccess), hs.Index)
|
2022-09-09 08:50:56 -05:00
|
|
|
r.Get("/datasources/edit/*", authorize(reqOrgAdmin, datasources.EditPageAccess), hs.Index)
|
2022-08-26 05:27:28 -05:00
|
|
|
r.Get("/datasources/correlations", authorize(reqOrgAdmin, correlations.ConfigurationPageAccess), hs.Index)
|
2022-01-13 07:40:32 -06:00
|
|
|
r.Get("/org/users", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersRead)), hs.Index)
|
2019-03-04 08:51:18 -06:00
|
|
|
r.Get("/org/users/new", reqOrgAdmin, hs.Index)
|
2022-07-27 11:37:27 -05:00
|
|
|
r.Get("/org/users/invite", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersAdd)), hs.Index)
|
2022-02-03 10:49:39 -06:00
|
|
|
r.Get("/org/teams", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsRead)), hs.Index)
|
2022-09-22 15:04:48 -05:00
|
|
|
r.Get("/org/teams/edit/*", authorize(reqCanAccessTeams, ac.TeamsEditAccessEvaluator), hs.Index)
|
2022-02-03 10:49:39 -06:00
|
|
|
r.Get("/org/teams/new", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsCreate)), hs.Index)
|
2022-04-14 06:40:15 -05:00
|
|
|
r.Get("/org/serviceaccounts", authorize(reqOrgAdmin, ac.EvalPermission(serviceaccounts.ActionRead)), hs.Index)
|
|
|
|
r.Get("/org/serviceaccounts/:serviceAccountId", authorize(reqOrgAdmin, ac.EvalPermission(serviceaccounts.ActionRead)), hs.Index)
|
|
|
|
r.Get("/org/apikeys/", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionAPIKeyRead)), hs.Index)
|
2018-10-09 10:47:43 -05:00
|
|
|
r.Get("/dashboard/import/", reqSignedIn, hs.Index)
|
|
|
|
r.Get("/configuration", reqGrafanaAdmin, hs.Index)
|
|
|
|
r.Get("/admin", reqGrafanaAdmin, hs.Index)
|
2021-08-24 04:36:28 -05:00
|
|
|
r.Get("/admin/settings", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionSettingsRead)), hs.Index)
|
2022-11-30 07:24:53 -06:00
|
|
|
// Show the combined users page for org admins if topnav is enabled
|
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagTopnav) {
|
|
|
|
r.Get("/admin/users", authorize(reqSignedIn, ac.EvalAny(ac.EvalPermission(ac.ActionOrgUsersRead), ac.EvalPermission(ac.ActionUsersRead, ac.ScopeGlobalUsersAll))), hs.Index)
|
|
|
|
} else {
|
|
|
|
r.Get("/admin/users", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, ac.ScopeGlobalUsersAll)), hs.Index)
|
|
|
|
}
|
2021-08-24 04:36:28 -05:00
|
|
|
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)
|
2022-09-22 15:04:48 -05:00
|
|
|
r.Get("/admin/orgs", authorizeInOrg(reqGrafanaAdmin, ac.UseGlobalOrg, ac.OrgsAccessEvaluator), hs.Index)
|
|
|
|
r.Get("/admin/orgs/edit/:id", authorizeInOrg(reqGrafanaAdmin, ac.UseGlobalOrg, ac.OrgsAccessEvaluator), hs.Index)
|
2021-08-24 04:36:28 -05: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)
|
2022-12-08 12:57:33 -06:00
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagStorage) {
|
|
|
|
r.Get("/admin/storage", reqSignedIn, hs.Index)
|
|
|
|
r.Get("/admin/storage/*", reqSignedIn, hs.Index)
|
|
|
|
}
|
2018-10-09 10:47:43 -05:00
|
|
|
r.Get("/styleguide", reqSignedIn, hs.Index)
|
|
|
|
|
2021-09-13 23:09:55 -05:00
|
|
|
r.Get("/live", reqGrafanaAdmin, hs.Index)
|
|
|
|
r.Get("/live/pipeline", reqGrafanaAdmin, hs.Index)
|
|
|
|
r.Get("/live/cloud", reqGrafanaAdmin, hs.Index)
|
|
|
|
|
2022-11-30 02:41:28 -06:00
|
|
|
r.Get("/plugins", middleware.CanAdminPlugins(hs.Cfg), hs.Index)
|
|
|
|
r.Get("/plugins/:id/", middleware.CanAdminPlugins(hs.Cfg), hs.Index)
|
|
|
|
r.Get("/plugins/:id/edit", middleware.CanAdminPlugins(hs.Cfg), hs.Index) // deprecated
|
|
|
|
r.Get("/plugins/:id/page/:page", middleware.CanAdminPlugins(hs.Cfg), hs.Index)
|
2023-01-06 02:11:27 -06:00
|
|
|
|
|
|
|
r.Get("/connections/your-connections/datasources", authorize(reqOrgAdmin, datasources.ConfigurationPageAccess), hs.Index)
|
|
|
|
r.Get("/connections/your-connections/datasources/new", authorize(reqOrgAdmin, datasources.NewPageAccess), hs.Index)
|
|
|
|
r.Get("/connections/your-connections/datasources/edit/*", authorize(reqOrgAdmin, datasources.EditPageAccess), hs.Index)
|
2023-01-18 08:34:23 -06:00
|
|
|
r.Get("/connections", authorize(reqOrgAdmin, datasources.ConfigurationPageAccess), hs.Index)
|
|
|
|
r.Get("/connections/connect-data", authorize(reqOrgAdmin, datasources.ConfigurationPageAccess), hs.Index)
|
|
|
|
r.Get("/connections/datasources/:id", middleware.CanAdminPlugins(hs.Cfg), hs.Index)
|
|
|
|
r.Get("/connections/datasources/:id/page/:page", middleware.CanAdminPlugins(hs.Cfg), hs.Index)
|
2023-01-06 02:11:27 -06:00
|
|
|
|
2022-07-08 06:24:09 -05:00
|
|
|
// App Root Page
|
2022-07-19 02:30:54 -05:00
|
|
|
appPluginIDScope := plugins.ScopeProvider.GetResourceScope(ac.Parameter(":id"))
|
2022-07-08 06:24:09 -05:00
|
|
|
r.Get("/a/:id/*", authorize(reqSignedIn, ac.EvalPermission(plugins.ActionAppAccess, appPluginIDScope)), hs.Index)
|
|
|
|
r.Get("/a/:id", authorize(reqSignedIn, ac.EvalPermission(plugins.ActionAppAccess, appPluginIDScope)), hs.Index)
|
2018-10-09 10:47:43 -05:00
|
|
|
|
2020-06-17 05:51:41 -05:00
|
|
|
r.Get("/d/:uid/:slug", reqSignedIn, redirectFromLegacyPanelEditURL, hs.Index)
|
|
|
|
r.Get("/d/:uid", reqSignedIn, redirectFromLegacyPanelEditURL, hs.Index)
|
2018-10-09 10:47:43 -05:00
|
|
|
r.Get("/dashboard/script/*", reqSignedIn, hs.Index)
|
2020-11-10 16:36:35 -06:00
|
|
|
r.Get("/dashboard/new", reqSignedIn, hs.Index)
|
2018-10-09 10:47:43 -05:00
|
|
|
r.Get("/dashboard-solo/snapshot/*", hs.Index)
|
|
|
|
r.Get("/d-solo/:uid/:slug", reqSignedIn, hs.Index)
|
2019-10-14 11:21:44 -05:00
|
|
|
r.Get("/d-solo/:uid", reqSignedIn, hs.Index)
|
2018-10-09 10:47:43 -05: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 05:48:48 -05:00
|
|
|
r.Get("/goto/:uid", reqSignedIn, hs.redirectFromShortURL, hs.Index)
|
2018-10-09 10:47:43 -05:00
|
|
|
|
2022-07-14 17:36:17 -05:00
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagDashboardsFromStorage) {
|
|
|
|
r.Get("/g/*", reqSignedIn, hs.Index)
|
|
|
|
}
|
|
|
|
|
2022-07-06 18:51:44 -05:00
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagPublicDashboards) {
|
2022-10-13 00:36:05 -05:00
|
|
|
// list public dashboards
|
|
|
|
r.Get("/public-dashboards/list", reqSignedIn, hs.Index)
|
|
|
|
|
|
|
|
// anonymous view public dashboard
|
2022-10-06 15:35:19 -05:00
|
|
|
r.Get("/public-dashboards/:accessToken",
|
|
|
|
publicdashboardsapi.SetPublicDashboardFlag,
|
|
|
|
publicdashboardsapi.SetPublicDashboardOrgIdOnContext(hs.PublicDashboardsApi.PublicDashboardService),
|
|
|
|
publicdashboardsapi.CountPublicDashboardRequest(),
|
|
|
|
hs.Index,
|
|
|
|
)
|
2022-07-06 18:51:44 -05:00
|
|
|
}
|
|
|
|
|
2023-01-27 01:50:36 -06:00
|
|
|
r.Get("/explore", authorize(func(c *contextmodel.ReqContext) {
|
|
|
|
if f, ok := reqSignedIn.(func(c *contextmodel.ReqContext)); ok {
|
2021-07-02 07:43:12 -05:00
|
|
|
f(c)
|
|
|
|
}
|
|
|
|
middleware.EnsureEditorOrViewerCanEdit(c)
|
2021-08-24 04:36:28 -05:00
|
|
|
}, ac.EvalPermission(ac.ActionDatasourcesExplore)), hs.Index)
|
2018-10-09 10:47:43 -05:00
|
|
|
|
|
|
|
r.Get("/playlists/", reqSignedIn, hs.Index)
|
|
|
|
r.Get("/playlists/*", reqSignedIn, hs.Index)
|
2021-05-17 03:15:17 -05:00
|
|
|
r.Get("/alerting/", reqSignedIn, hs.Index)
|
|
|
|
r.Get("/alerting/*", reqSignedIn, hs.Index)
|
2022-09-26 10:27:26 -05:00
|
|
|
r.Get("/library-panels/", reqSignedIn, hs.Index)
|
2022-09-28 01:29:35 -05:00
|
|
|
r.Get("/monitoring/", reqSignedIn, hs.Index)
|
|
|
|
r.Get("/monitoring/*", reqSignedIn, hs.Index)
|
|
|
|
r.Get("/alerts-and-incidents", reqSignedIn, hs.Index)
|
|
|
|
r.Get("/alerts-and-incidents/*", reqSignedIn, hs.Index)
|
2015-12-22 04:07:15 -06:00
|
|
|
|
2015-01-14 07:25:12 -06:00
|
|
|
// sign up
|
2020-09-07 10:24:46 -05:00
|
|
|
r.Get("/verify", hs.Index)
|
2018-10-09 10:47:43 -05:00
|
|
|
r.Get("/signup", hs.Index)
|
2021-01-15 07:43:20 -06:00
|
|
|
r.Get("/api/user/signup/options", routing.Wrap(GetSignUpOptions))
|
2022-11-14 13:08:10 -06:00
|
|
|
r.Post("/api/user/signup", quota(user.QuotaTargetSrv), quota(org.QuotaTargetSrv), routing.Wrap(hs.SignUp))
|
2021-11-29 03:18:01 -06:00
|
|
|
r.Post("/api/user/signup/step2", routing.Wrap(hs.SignUpStep2))
|
2014-12-15 14:25:02 -06:00
|
|
|
|
2015-07-20 08:52:49 -05:00
|
|
|
// invited
|
2022-01-31 10:24:52 -06:00
|
|
|
r.Get("/api/user/invite/:code", routing.Wrap(hs.GetInviteInfoByCode))
|
2021-11-29 03:18:01 -06:00
|
|
|
r.Post("/api/user/invite/complete", routing.Wrap(hs.CompleteInvite))
|
2015-07-20 08:52:49 -05:00
|
|
|
|
2015-06-08 03:57:01 -05:00
|
|
|
// reset password
|
2021-06-14 11:02:05 -05:00
|
|
|
r.Get("/user/password/send-reset-email", reqNotSignedIn, hs.Index)
|
2018-10-09 10:47:43 -05:00
|
|
|
r.Get("/user/password/reset", hs.Index)
|
2015-06-08 03:57:01 -05:00
|
|
|
|
2022-02-03 03:33:46 -06:00
|
|
|
r.Post("/api/user/password/send-reset-email", routing.Wrap(hs.SendResetPasswordEmail))
|
|
|
|
r.Post("/api/user/password/reset", routing.Wrap(hs.ResetPassword))
|
2014-12-15 14:25:02 -06:00
|
|
|
|
2015-03-21 07:53:16 -05:00
|
|
|
// dashboard snapshots
|
2021-03-16 10:46:34 -05:00
|
|
|
r.Get("/dashboard/snapshot/*", reqNoAuth, hs.Index)
|
2018-10-09 10:47:43 -05:00
|
|
|
r.Get("/dashboard/snapshots/", reqSignedIn, hs.Index)
|
2015-03-26 14:34:58 -05:00
|
|
|
|
2019-02-04 10:37:07 -06:00
|
|
|
// api renew session based on cookie
|
2022-11-14 13:08:10 -06:00
|
|
|
r.Get("/api/login/ping", quota(string(auth.QuotaTargetSrv)), routing.Wrap(hs.LoginAPIPing))
|
2015-04-07 02:25:00 -05:00
|
|
|
|
2021-04-21 08:17:23 -05:00
|
|
|
// expose plugin file system assets
|
2021-09-08 01:49:05 -05:00
|
|
|
r.Get("/public/plugins/:pluginId/*", hs.getPluginAssets)
|
2021-04-21 08:17:23 -05:00
|
|
|
|
2022-02-08 06:38:43 -06:00
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagSwaggerUi) {
|
|
|
|
r.Get("/swagger-ui", swaggerUI)
|
2022-08-04 11:51:12 -05:00
|
|
|
r.Get("/openapi3", openapi3)
|
2022-02-08 06:38:43 -06:00
|
|
|
}
|
|
|
|
|
2015-01-14 07:25:12 -06:00
|
|
|
// authed api
|
2018-06-25 09:36:47 -05:00
|
|
|
r.Group("/api", func(apiRoute routing.RouteRegister) {
|
2015-05-19 04:47:14 -05:00
|
|
|
// user (signed in)
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/user", func(userRoute routing.RouteRegister) {
|
2022-01-05 02:59:17 -06:00
|
|
|
userRoute.Get("/", routing.Wrap(hs.GetSignedInUser))
|
2022-01-26 13:24:05 -06:00
|
|
|
userRoute.Put("/", routing.Wrap(hs.UpdateSignedInUser))
|
|
|
|
userRoute.Post("/using/:id", routing.Wrap(hs.UserSetUsingOrg))
|
|
|
|
userRoute.Get("/orgs", routing.Wrap(hs.GetSignedInUserOrgList))
|
|
|
|
userRoute.Get("/teams", routing.Wrap(hs.GetSignedInUserTeamList))
|
2021-01-15 07:43:20 -06:00
|
|
|
|
2023-01-25 08:58:54 -06:00
|
|
|
userRoute.Get("/stars", routing.Wrap(hs.starApi.GetStars))
|
2022-10-05 15:32:49 -05:00
|
|
|
// Deprecated: use /stars/dashboard/uid/:uid API instead.
|
2023-01-25 08:58:54 -06:00
|
|
|
// nolint:staticcheck
|
|
|
|
userRoute.Post("/stars/dashboard/:id", routing.Wrap(hs.starApi.StarDashboard))
|
2022-10-05 15:32:49 -05:00
|
|
|
// Deprecated: use /stars/dashboard/uid/:uid API instead.
|
2023-01-25 08:58:54 -06:00
|
|
|
// nolint:staticcheck
|
|
|
|
userRoute.Delete("/stars/dashboard/:id", routing.Wrap(hs.starApi.UnstarDashboard))
|
2021-01-15 07:43:20 -06:00
|
|
|
|
2023-01-25 08:58:54 -06:00
|
|
|
userRoute.Post("/stars/dashboard/uid/:uid", routing.Wrap(hs.starApi.StarDashboardByUID))
|
|
|
|
userRoute.Delete("/stars/dashboard/uid/:uid", routing.Wrap(hs.starApi.UnstarDashboardByUID))
|
2022-10-05 15:32:49 -05:00
|
|
|
|
2022-01-26 13:24:05 -06:00
|
|
|
userRoute.Put("/password", routing.Wrap(hs.ChangeUserPassword))
|
2022-02-03 02:20:20 -06:00
|
|
|
userRoute.Get("/quotas", routing.Wrap(hs.GetUserQuotas))
|
2022-01-26 13:24:05 -06:00
|
|
|
userRoute.Put("/helpflags/:id", routing.Wrap(hs.SetHelpFlag))
|
2016-11-09 03:41:39 -06:00
|
|
|
// For dev purpose
|
2022-01-26 13:24:05 -06:00
|
|
|
userRoute.Get("/helpflags/clear", routing.Wrap(hs.ClearHelpFlags))
|
2016-04-02 15:54:06 -05:00
|
|
|
|
2021-11-02 07:41:45 -05:00
|
|
|
userRoute.Get("/preferences", routing.Wrap(hs.GetUserPreferences))
|
2021-11-29 03:18:01 -06:00
|
|
|
userRoute.Put("/preferences", routing.Wrap(hs.UpdateUserPreferences))
|
2022-03-17 07:07:20 -05:00
|
|
|
userRoute.Patch("/preferences", routing.Wrap(hs.PatchUserPreferences))
|
2019-03-08 08:15:38 -06:00
|
|
|
|
2021-01-15 07:43:20 -06:00
|
|
|
userRoute.Get("/auth-tokens", routing.Wrap(hs.GetUserAuthTokens))
|
2021-11-29 03:18:01 -06:00
|
|
|
userRoute.Post("/revoke-auth-token", routing.Wrap(hs.RevokeUserAuthToken))
|
2021-02-27 11:04:28 -06:00
|
|
|
}, reqSignedInNoAnonymous)
|
2015-01-19 11:01:04 -06:00
|
|
|
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/users", func(usersRoute routing.RouteRegister) {
|
2022-03-22 06:48:46 -05:00
|
|
|
userIDScope := ac.Scope("global.users", "id", ac.Parameter(":id"))
|
2022-05-13 02:26:34 -05:00
|
|
|
usersRoute.Get("/", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead)), routing.Wrap(hs.searchUsersService.SearchUsers))
|
|
|
|
usersRoute.Get("/search", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead)), routing.Wrap(hs.searchUsersService.SearchUsersWithPaging))
|
2022-01-05 02:59:17 -06:00
|
|
|
usersRoute.Get("/:id", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, userIDScope)), routing.Wrap(hs.GetUserByID))
|
2022-06-02 07:14:48 -05:00
|
|
|
usersRoute.Get("/:id/teams", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, userIDScope)), routing.Wrap(hs.GetUserTeams))
|
2022-01-26 13:24:05 -06:00
|
|
|
usersRoute.Get("/:id/orgs", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, userIDScope)), routing.Wrap(hs.GetUserOrgList))
|
2017-01-30 23:25:55 -06:00
|
|
|
// query parameters /users/lookup?loginOrEmail=admin@example.com
|
2022-01-26 13:24:05 -06:00
|
|
|
usersRoute.Get("/lookup", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersRead, ac.ScopeGlobalUsersAll)), routing.Wrap(hs.GetUserByLoginOrEmail))
|
|
|
|
usersRoute.Put("/:id", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersWrite, userIDScope)), routing.Wrap(hs.UpdateUser))
|
|
|
|
usersRoute.Post("/:id/using/:orgId", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersWrite, userIDScope)), routing.Wrap(hs.UpdateUserActiveOrg))
|
2021-04-14 09:31:27 -05:00
|
|
|
})
|
2015-05-18 10:28:15 -05:00
|
|
|
|
2017-12-08 09:25:45 -06:00
|
|
|
// team (admin permission required)
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/teams", func(teamsRoute routing.RouteRegister) {
|
2022-01-26 08:48:41 -06:00
|
|
|
teamsRoute.Post("/", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsCreate)), routing.Wrap(hs.CreateTeam))
|
2022-01-27 09:16:44 -06:00
|
|
|
teamsRoute.Put("/:teamId", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsWrite, ac.ScopeTeamsID)), routing.Wrap(hs.UpdateTeam))
|
|
|
|
teamsRoute.Delete("/:teamId", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsDelete, ac.ScopeTeamsID)), routing.Wrap(hs.DeleteTeamByID))
|
2022-01-26 08:48:41 -06:00
|
|
|
teamsRoute.Get("/:teamId/members", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsPermissionsRead, ac.ScopeTeamsID)), routing.Wrap(hs.GetTeamMembers))
|
|
|
|
teamsRoute.Post("/:teamId/members", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsPermissionsWrite, ac.ScopeTeamsID)), routing.Wrap(hs.AddTeamMember))
|
|
|
|
teamsRoute.Put("/:teamId/members/:userId", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsPermissionsWrite, ac.ScopeTeamsID)), routing.Wrap(hs.UpdateTeamMember))
|
|
|
|
teamsRoute.Delete("/:teamId/members/:userId", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsPermissionsWrite, ac.ScopeTeamsID)), routing.Wrap(hs.RemoveTeamMember))
|
2022-01-28 05:17:54 -06:00
|
|
|
teamsRoute.Get("/:teamId/preferences", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsRead, ac.ScopeTeamsID)), routing.Wrap(hs.GetTeamPreferences))
|
|
|
|
teamsRoute.Put("/:teamId/preferences", authorize(reqCanAccessTeams, ac.EvalPermission(ac.ActionTeamsWrite, ac.ScopeTeamsID)), routing.Wrap(hs.UpdateTeamPreferences))
|
2022-01-10 11:05:53 -06:00
|
|
|
})
|
2017-04-09 18:24:16 -05:00
|
|
|
|
2018-04-06 07:08:23 -05:00
|
|
|
// team without requirement of user to be org admin
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/teams", func(teamsRoute routing.RouteRegister) {
|
2022-02-09 09:17:31 -06:00
|
|
|
teamsRoute.Get("/:teamId", authorize(reqSignedIn, ac.EvalPermission(ac.ActionTeamsRead, ac.ScopeTeamsID)), routing.Wrap(hs.GetTeamByID))
|
|
|
|
teamsRoute.Get("/search", authorize(reqSignedIn, ac.EvalPermission(ac.ActionTeamsRead)), routing.Wrap(hs.SearchTeams))
|
2018-04-06 07:08:23 -05:00
|
|
|
})
|
|
|
|
|
2015-09-10 12:18:36 -05:00
|
|
|
// org information available to all users.
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/org", func(orgRoute routing.RouteRegister) {
|
2022-09-22 15:04:48 -05:00
|
|
|
orgRoute.Get("/", authorize(reqSignedIn, ac.EvalPermission(ac.ActionOrgsRead)), routing.Wrap(hs.GetCurrentOrg))
|
|
|
|
orgRoute.Get("/quotas", authorize(reqSignedIn, ac.EvalPermission(ac.ActionOrgsQuotasRead)), routing.Wrap(hs.GetCurrentOrgQuotas))
|
2015-09-10 12:18:36 -05:00
|
|
|
})
|
|
|
|
|
2022-03-17 12:19:23 -05:00
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagStorage) {
|
2022-10-04 11:40:15 -05:00
|
|
|
// Will eventually be replaced with the 'object' route
|
2022-07-29 01:26:44 -05:00
|
|
|
apiRoute.Group("/storage", hs.StorageService.RegisterHTTPRoutes)
|
2022-11-30 16:52:15 -06:00
|
|
|
}
|
2022-10-04 11:40:15 -05:00
|
|
|
|
2022-11-30 16:52:15 -06:00
|
|
|
// Allow HTTP access to the entity storage feature (dev only for now)
|
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagEntityStore) {
|
|
|
|
apiRoute.Group("/entity", hs.httpEntityStore.RegisterHTTPRoutes)
|
2022-03-17 12:19:23 -05:00
|
|
|
}
|
|
|
|
|
2022-09-22 18:02:09 -05:00
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagPanelTitleSearch) {
|
|
|
|
apiRoute.Group("/search-v2", hs.SearchV2HTTPService.RegisterHTTPRoutes)
|
|
|
|
}
|
|
|
|
|
2022-10-07 13:31:45 -05:00
|
|
|
if hs.QueryLibraryHTTPService != nil && !hs.QueryLibraryHTTPService.IsDisabled() {
|
|
|
|
apiRoute.Group("/query-library", hs.QueryLibraryHTTPService.RegisterHTTPRoutes)
|
|
|
|
}
|
|
|
|
|
2015-09-10 12:18:36 -05:00
|
|
|
// current org
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/org", func(orgRoute routing.RouteRegister) {
|
2021-10-07 04:54:43 -05:00
|
|
|
userIDScope := ac.Scope("users", "id", ac.Parameter(":userId"))
|
2022-09-22 15:04:48 -05:00
|
|
|
orgRoute.Put("/", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgsWrite)), routing.Wrap(hs.UpdateCurrentOrg))
|
|
|
|
orgRoute.Put("/address", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgsWrite)), routing.Wrap(hs.UpdateCurrentOrgAddress))
|
2022-01-13 07:40:32 -06:00
|
|
|
orgRoute.Get("/users", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersRead)), routing.Wrap(hs.GetOrgUsersForCurrentOrg))
|
|
|
|
orgRoute.Get("/users/search", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersRead)), routing.Wrap(hs.SearchOrgUsersWithPaging))
|
2022-11-14 13:08:10 -06:00
|
|
|
orgRoute.Post("/users", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersAdd, ac.ScopeUsersAll)), quota(user.QuotaTargetSrv), quota(org.QuotaTargetSrv), routing.Wrap(hs.AddOrgUserToCurrentOrg))
|
2022-06-02 07:14:48 -05:00
|
|
|
orgRoute.Patch("/users/:userId", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersWrite, userIDScope)), routing.Wrap(hs.UpdateOrgUserForCurrentOrg))
|
2021-11-17 03:12:28 -06:00
|
|
|
orgRoute.Delete("/users/:userId", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersRemove, userIDScope)), routing.Wrap(hs.RemoveOrgUserForCurrentOrg))
|
2015-07-17 02:51:34 -05:00
|
|
|
|
|
|
|
// invites
|
2022-07-27 11:37:27 -05:00
|
|
|
orgRoute.Get("/invites", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersAdd)), routing.Wrap(hs.GetPendingOrgInvites))
|
2022-11-14 13:08:10 -06:00
|
|
|
orgRoute.Post("/invites", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersAdd)), quota(user.QuotaTargetSrv), quota(user.QuotaTargetSrv), routing.Wrap(hs.AddOrgInvite))
|
2022-07-27 11:37:27 -05:00
|
|
|
orgRoute.Patch("/invites/:code/revoke", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgUsersAdd)), routing.Wrap(hs.RevokeInvite))
|
2015-12-17 23:46:40 -06:00
|
|
|
|
2016-04-02 15:54:06 -05:00
|
|
|
// prefs
|
2022-09-22 15:04:48 -05:00
|
|
|
orgRoute.Get("/preferences", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgsPreferencesRead)), routing.Wrap(hs.GetOrgPreferences))
|
|
|
|
orgRoute.Put("/preferences", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgsPreferencesWrite)), routing.Wrap(hs.UpdateOrgPreferences))
|
|
|
|
orgRoute.Patch("/preferences", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionOrgsPreferencesWrite)), routing.Wrap(hs.PatchOrgPreferences))
|
2021-04-22 05:19:41 -05:00
|
|
|
})
|
2015-05-19 03:16:32 -05:00
|
|
|
|
2018-04-06 07:08:23 -05:00
|
|
|
// current org without requirement of user to be org admin
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/org", func(orgRoute routing.RouteRegister) {
|
2022-05-06 03:31:53 -05:00
|
|
|
lookupEvaluator := func() ac.Evaluator {
|
2022-05-25 13:40:41 -05:00
|
|
|
if hs.License.FeatureEnabled("accesscontrol.enforcement") {
|
2022-05-06 03:31:53 -05:00
|
|
|
return ac.EvalPermission(ac.ActionOrgUsersRead)
|
|
|
|
}
|
|
|
|
// For oss we allow users with access to update permissions on either folders, teams or dashboards to perform the lookup
|
|
|
|
return ac.EvalAny(
|
|
|
|
ac.EvalPermission(ac.ActionOrgUsersRead),
|
|
|
|
ac.EvalPermission(ac.ActionTeamsPermissionsWrite),
|
|
|
|
ac.EvalPermission(dashboards.ActionFoldersPermissionsWrite),
|
2022-05-25 13:40:41 -05:00
|
|
|
ac.EvalPermission(dashboards.ActionDashboardsPermissionsWrite),
|
2022-05-06 03:31:53 -05:00
|
|
|
)
|
|
|
|
}
|
2022-07-04 04:43:06 -05:00
|
|
|
orgRoute.Get("/users/lookup", authorize(reqOrgAdminDashOrFolderAdminOrTeamAdmin, lookupEvaluator()), routing.Wrap(hs.GetOrgUsersForCurrentOrgLookup))
|
2018-04-06 07:08:23 -05:00
|
|
|
})
|
|
|
|
|
2015-05-19 03:16:32 -05:00
|
|
|
// create new org
|
2022-11-14 13:08:10 -06:00
|
|
|
apiRoute.Post("/orgs", authorizeInOrg(reqSignedIn, ac.UseGlobalOrg, ac.EvalPermission(ac.ActionOrgsCreate)), quota(org.QuotaTargetSrv), routing.Wrap(hs.CreateOrg))
|
2015-05-19 03:16:32 -05:00
|
|
|
|
2015-05-19 04:47:14 -05:00
|
|
|
// search all orgs
|
2022-09-22 15:04:48 -05:00
|
|
|
apiRoute.Get("/orgs", authorizeInOrg(reqGrafanaAdmin, ac.UseGlobalOrg, ac.EvalPermission(ac.ActionOrgsRead)), routing.Wrap(hs.SearchOrgs))
|
2015-05-19 04:47:14 -05:00
|
|
|
|
2015-05-19 03:16:32 -05:00
|
|
|
// orgs (admin routes)
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/orgs/:orgId", func(orgsRoute routing.RouteRegister) {
|
2021-11-17 03:12:28 -06:00
|
|
|
userIDScope := ac.Scope("users", "id", ac.Parameter(":userId"))
|
2022-09-22 15:04:48 -05:00
|
|
|
orgsRoute.Get("/", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgsRead)), routing.Wrap(hs.GetOrgByID))
|
|
|
|
orgsRoute.Put("/", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgsWrite)), routing.Wrap(hs.UpdateOrg))
|
|
|
|
orgsRoute.Put("/address", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgsWrite)), routing.Wrap(hs.UpdateOrgAddress))
|
|
|
|
orgsRoute.Delete("/", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgsDelete)), routing.Wrap(hs.DeleteOrgByID))
|
2022-05-13 02:26:34 -05:00
|
|
|
orgsRoute.Get("/users", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgUsersRead)), routing.Wrap(hs.GetOrgUsers))
|
2023-01-09 02:54:33 -06:00
|
|
|
orgsRoute.Get("/users/search", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgUsersRead)), routing.Wrap(hs.SearchOrgUsers))
|
2022-04-28 03:46:18 -05:00
|
|
|
orgsRoute.Post("/users", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgUsersAdd, ac.ScopeUsersAll)), routing.Wrap(hs.AddOrgUser))
|
2022-06-02 07:14:48 -05:00
|
|
|
orgsRoute.Patch("/users/:userId", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgUsersWrite, userIDScope)), routing.Wrap(hs.UpdateOrgUser))
|
2022-04-28 03:46:18 -05:00
|
|
|
orgsRoute.Delete("/users/:userId", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgUsersRemove, userIDScope)), routing.Wrap(hs.RemoveOrgUser))
|
2022-09-22 15:04:48 -05:00
|
|
|
orgsRoute.Get("/quotas", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgsQuotasRead)), routing.Wrap(hs.GetOrgQuotas))
|
|
|
|
orgsRoute.Put("/quotas/:target", authorizeInOrg(reqGrafanaAdmin, ac.UseOrgFromContextParams, ac.EvalPermission(ac.ActionOrgsQuotasWrite)), routing.Wrap(hs.UpdateOrgQuota))
|
2021-04-22 05:19:41 -05:00
|
|
|
})
|
2015-01-26 13:26:17 -06:00
|
|
|
|
2016-01-12 15:50:56 -06:00
|
|
|
// orgs (admin routes)
|
2022-09-22 15:04:48 -05:00
|
|
|
apiRoute.Get("/orgs/name/:name/", authorizeInOrg(reqGrafanaAdmin, ac.UseGlobalOrg, ac.EvalPermission(ac.ActionOrgsRead)), routing.Wrap(hs.GetOrgByName))
|
2016-01-12 15:50:56 -06:00
|
|
|
|
2015-01-27 01:26:11 -06:00
|
|
|
// auth api keys
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/auth/keys", func(keysRoute routing.RouteRegister) {
|
2022-03-04 12:01:03 -06:00
|
|
|
apikeyIDScope := ac.Scope("apikeys", "id", ac.Parameter(":id"))
|
2022-04-29 08:30:24 -05:00
|
|
|
keysRoute.Get("/", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionAPIKeyRead)), routing.Wrap(hs.GetAPIKeys))
|
2022-11-14 13:08:10 -06:00
|
|
|
keysRoute.Post("/", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionAPIKeyCreate)), quota(string(apikey.QuotaTargetSrv)), routing.Wrap(hs.AddAPIKey))
|
2022-03-04 12:01:03 -06:00
|
|
|
keysRoute.Delete("/:id", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionAPIKeyDelete, apikeyIDScope)), routing.Wrap(hs.DeleteAPIKey))
|
2022-04-13 11:11:03 -05:00
|
|
|
})
|
2015-01-26 13:26:17 -06:00
|
|
|
|
2016-03-17 01:35:06 -05:00
|
|
|
// Preferences
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/preferences", func(prefRoute routing.RouteRegister) {
|
2022-02-03 02:20:20 -06:00
|
|
|
prefRoute.Post("/set-home-dash", routing.Wrap(hs.SetHomeDashboard))
|
2016-03-17 01:35:06 -05:00
|
|
|
})
|
2016-03-11 08:30:05 -06:00
|
|
|
|
2015-01-14 07:25:12 -06:00
|
|
|
// Data sources
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/datasources", func(datasourceRoute routing.RouteRegister) {
|
2022-06-09 06:56:24 -05:00
|
|
|
idScope := datasources.ScopeProvider.GetResourceScope(ac.Parameter(":id"))
|
|
|
|
uidScope := datasources.ScopeProvider.GetResourceScopeUID(ac.Parameter(":uid"))
|
|
|
|
nameScope := datasources.ScopeProvider.GetResourceScopeName(ac.Parameter(":name"))
|
2022-03-16 09:11:03 -05:00
|
|
|
datasourceRoute.Get("/", authorize(reqOrgAdmin, ac.EvalPermission(datasources.ActionRead)), routing.Wrap(hs.GetDataSources))
|
2022-11-14 13:08:10 -06:00
|
|
|
datasourceRoute.Post("/", authorize(reqOrgAdmin, ac.EvalPermission(datasources.ActionCreate)), quota(string(datasources.QuotaTargetSrv)), routing.Wrap(hs.AddDataSource))
|
2022-06-09 06:56:24 -05:00
|
|
|
datasourceRoute.Put("/:id", authorize(reqOrgAdmin, ac.EvalPermission(datasources.ActionWrite, idScope)), routing.Wrap(hs.UpdateDataSourceByID))
|
|
|
|
datasourceRoute.Put("/uid/:uid", authorize(reqOrgAdmin, ac.EvalPermission(datasources.ActionWrite, uidScope)), routing.Wrap(hs.UpdateDataSourceByUID))
|
|
|
|
datasourceRoute.Delete("/:id", authorize(reqOrgAdmin, ac.EvalPermission(datasources.ActionDelete, idScope)), routing.Wrap(hs.DeleteDataSourceById))
|
|
|
|
datasourceRoute.Delete("/uid/:uid", authorize(reqOrgAdmin, ac.EvalPermission(datasources.ActionDelete, uidScope)), routing.Wrap(hs.DeleteDataSourceByUID))
|
|
|
|
datasourceRoute.Delete("/name/:name", authorize(reqOrgAdmin, ac.EvalPermission(datasources.ActionDelete, nameScope)), routing.Wrap(hs.DeleteDataSourceByName))
|
|
|
|
datasourceRoute.Get("/:id", authorize(reqOrgAdmin, ac.EvalPermission(datasources.ActionRead, idScope)), routing.Wrap(hs.GetDataSourceById))
|
|
|
|
datasourceRoute.Get("/uid/:uid", authorize(reqOrgAdmin, ac.EvalPermission(datasources.ActionRead, uidScope)), routing.Wrap(hs.GetDataSourceByUID))
|
|
|
|
datasourceRoute.Get("/name/:name", authorize(reqOrgAdmin, ac.EvalPermission(datasources.ActionRead, nameScope)), routing.Wrap(hs.GetDataSourceByName))
|
|
|
|
datasourceRoute.Get("/id/:name", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionIDRead, nameScope)), routing.Wrap(hs.GetDataSourceIdByName))
|
2021-09-01 08:18:17 -05:00
|
|
|
})
|
2015-12-03 09:43:55 -06:00
|
|
|
|
2022-07-19 02:30:54 -05:00
|
|
|
pluginIDScope := plugins.ScopeProvider.GetResourceScope(ac.Parameter(":pluginId"))
|
2021-01-15 07:43:20 -06:00
|
|
|
apiRoute.Get("/plugins", routing.Wrap(hs.GetPluginList))
|
2022-07-08 06:24:09 -05:00
|
|
|
apiRoute.Get("/plugins/:pluginId/settings", routing.Wrap(hs.GetPluginSettingByID)) // RBAC check performed in handler for App Plugins
|
2021-03-08 00:02:49 -06:00
|
|
|
apiRoute.Get("/plugins/:pluginId/markdown/:name", routing.Wrap(hs.GetPluginMarkdown))
|
2021-01-15 07:43:20 -06:00
|
|
|
apiRoute.Get("/plugins/:pluginId/health", routing.Wrap(hs.CheckHealth))
|
2022-07-08 06:24:09 -05:00
|
|
|
apiRoute.Any("/plugins/:pluginId/resources", authorize(reqSignedIn, ac.EvalPermission(plugins.ActionAppAccess, pluginIDScope)), hs.CallResource)
|
|
|
|
apiRoute.Any("/plugins/:pluginId/resources/*", authorize(reqSignedIn, ac.EvalPermission(plugins.ActionAppAccess, pluginIDScope)), hs.CallResource)
|
2021-05-12 13:05:16 -05:00
|
|
|
apiRoute.Get("/plugins/errors", routing.Wrap(hs.GetPluginErrorsList))
|
2022-08-23 06:05:31 -05:00
|
|
|
apiRoute.Any("/plugin-proxy/:pluginId/*", authorize(reqSignedIn, ac.EvalPermission(plugins.ActionAppAccess, pluginIDScope)), hs.ProxyPluginRequest)
|
|
|
|
apiRoute.Any("/plugin-proxy/:pluginId", authorize(reqSignedIn, ac.EvalPermission(plugins.ActionAppAccess, pluginIDScope)), hs.ProxyPluginRequest)
|
2021-05-12 13:05:16 -05:00
|
|
|
|
2022-07-06 09:22:59 -05:00
|
|
|
if hs.Cfg.PluginAdminEnabled && !hs.Cfg.PluginAdminExternalManageEnabled {
|
2022-07-06 04:13:20 -05:00
|
|
|
apiRoute.Group("/plugins", func(pluginRoute routing.RouteRegister) {
|
2022-09-09 02:44:50 -05:00
|
|
|
pluginRoute.Post("/:pluginId/install", authorize(reqGrafanaAdmin, ac.EvalPermission(plugins.ActionInstall)), routing.Wrap(hs.InstallPlugin))
|
|
|
|
pluginRoute.Post("/:pluginId/uninstall", authorize(reqGrafanaAdmin, ac.EvalPermission(plugins.ActionInstall)), routing.Wrap(hs.UninstallPlugin))
|
|
|
|
})
|
2022-07-06 04:13:20 -05:00
|
|
|
}
|
2016-03-11 02:57:20 -06:00
|
|
|
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/plugins", func(pluginRoute routing.RouteRegister) {
|
2022-09-09 02:44:50 -05:00
|
|
|
pluginRoute.Get("/:pluginId/dashboards/", reqOrgAdmin, routing.Wrap(hs.GetPluginDashboards))
|
|
|
|
pluginRoute.Post("/:pluginId/settings", authorize(reqOrgAdmin, ac.EvalPermission(plugins.ActionWrite, pluginIDScope)), routing.Wrap(hs.UpdatePluginSetting))
|
|
|
|
pluginRoute.Get("/:pluginId/metrics", reqOrgAdmin, routing.Wrap(hs.CollectPluginMetrics))
|
|
|
|
})
|
2015-12-03 09:43:55 -06:00
|
|
|
|
2018-10-09 10:47:43 -05:00
|
|
|
apiRoute.Get("/frontend/settings/", hs.GetFrontendSettings)
|
2022-03-16 09:11:03 -05:00
|
|
|
apiRoute.Any("/datasources/proxy/:id/*", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), hs.ProxyDataSourceRequest)
|
2022-04-14 05:28:13 -05:00
|
|
|
apiRoute.Any("/datasources/proxy/uid/:uid/*", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), hs.ProxyDataSourceRequestWithUID)
|
2022-03-16 09:11:03 -05:00
|
|
|
apiRoute.Any("/datasources/proxy/:id", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), hs.ProxyDataSourceRequest)
|
2022-04-14 05:28:13 -05:00
|
|
|
apiRoute.Any("/datasources/proxy/uid/:uid", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), hs.ProxyDataSourceRequestWithUID)
|
2022-05-19 11:27:59 -05:00
|
|
|
// Deprecated: use /datasources/uid/:uid/resources API instead.
|
2022-03-16 09:11:03 -05:00
|
|
|
apiRoute.Any("/datasources/:id/resources", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), hs.CallDatasourceResource)
|
2022-05-19 11:27:59 -05:00
|
|
|
apiRoute.Any("/datasources/uid/:uid/resources", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), hs.CallDatasourceResourceWithUID)
|
|
|
|
// Deprecated: use /datasources/uid/:uid/resources/* API instead.
|
2022-03-16 09:11:03 -05:00
|
|
|
apiRoute.Any("/datasources/:id/resources/*", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), hs.CallDatasourceResource)
|
2022-05-19 11:27:59 -05:00
|
|
|
apiRoute.Any("/datasources/uid/:uid/resources/*", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), hs.CallDatasourceResourceWithUID)
|
|
|
|
// Deprecated: use /datasources/uid/:uid/health API instead.
|
2022-03-16 09:11:03 -05:00
|
|
|
apiRoute.Any("/datasources/:id/health", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), routing.Wrap(hs.CheckDatasourceHealth))
|
2022-05-19 11:27:59 -05:00
|
|
|
apiRoute.Any("/datasources/uid/:uid/health", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), routing.Wrap(hs.CheckDatasourceHealthWithUID))
|
2015-02-10 03:19:43 -06:00
|
|
|
|
2018-01-29 06:51:01 -06:00
|
|
|
// Folders
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/folders", func(folderRoute routing.RouteRegister) {
|
2022-03-30 08:14:26 -05:00
|
|
|
idScope := dashboards.ScopeFoldersProvider.GetResourceScope(ac.Parameter(":id"))
|
|
|
|
uidScope := dashboards.ScopeFoldersProvider.GetResourceScopeUID(ac.Parameter(":uid"))
|
2022-03-09 10:57:50 -06:00
|
|
|
folderRoute.Get("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionFoldersRead)), routing.Wrap(hs.GetFolders))
|
2022-03-30 08:14:26 -05:00
|
|
|
folderRoute.Get("/id/:id", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionFoldersRead, idScope)), routing.Wrap(hs.GetFolderByID))
|
2022-03-09 10:57:50 -06:00
|
|
|
folderRoute.Post("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionFoldersCreate)), routing.Wrap(hs.CreateFolder))
|
2018-02-20 08:25:16 -06:00
|
|
|
|
2018-06-25 09:36:47 -05:00
|
|
|
folderRoute.Group("/:uid", func(folderUidRoute routing.RouteRegister) {
|
2022-03-30 08:14:26 -05:00
|
|
|
folderUidRoute.Get("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionFoldersRead, uidScope)), routing.Wrap(hs.GetFolderByUID))
|
|
|
|
folderUidRoute.Put("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionFoldersWrite, uidScope)), routing.Wrap(hs.UpdateFolder))
|
2022-11-10 08:06:52 -06:00
|
|
|
folderUidRoute.Post("/move", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionFoldersWrite, uidScope)), routing.Wrap(hs.MoveFolder))
|
2022-03-30 08:14:26 -05:00
|
|
|
folderUidRoute.Delete("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionFoldersDelete, uidScope)), routing.Wrap(hs.DeleteFolder))
|
2018-02-20 08:25:16 -06:00
|
|
|
|
2018-06-25 09:36:47 -05:00
|
|
|
folderUidRoute.Group("/permissions", func(folderPermissionRoute routing.RouteRegister) {
|
2022-03-30 08:14:26 -05:00
|
|
|
folderPermissionRoute.Get("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionFoldersPermissionsRead, uidScope)), routing.Wrap(hs.GetFolderPermissionList))
|
|
|
|
folderPermissionRoute.Post("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionFoldersPermissionsWrite, uidScope)), routing.Wrap(hs.UpdateFolderPermissions))
|
2018-02-20 08:25:16 -06:00
|
|
|
})
|
|
|
|
})
|
2018-01-29 06:51:01 -06:00
|
|
|
})
|
|
|
|
|
2015-01-14 07:25:12 -06:00
|
|
|
// Dashboard
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/dashboards", func(dashboardRoute routing.RouteRegister) {
|
2022-05-04 09:12:09 -05:00
|
|
|
dashboardRoute.Get("/uid/:uid", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsRead)), routing.Wrap(hs.GetDashboard))
|
|
|
|
dashboardRoute.Delete("/uid/:uid", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsDelete)), routing.Wrap(hs.DeleteDashboardByUID))
|
2022-04-21 09:24:03 -05:00
|
|
|
dashboardRoute.Group("/uid/:uid", func(dashUidRoute routing.RouteRegister) {
|
2022-05-17 11:57:27 -05:00
|
|
|
dashUidRoute.Get("/versions", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsWrite)), routing.Wrap(hs.GetDashboardVersions))
|
|
|
|
dashUidRoute.Post("/restore", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsWrite)), routing.Wrap(hs.RestoreDashboardVersion))
|
2022-05-17 05:59:02 -05:00
|
|
|
dashUidRoute.Get("/versions/:id", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsWrite)), routing.Wrap(hs.GetDashboardVersion))
|
2022-04-21 09:24:03 -05:00
|
|
|
dashUidRoute.Group("/permissions", func(dashboardPermissionRoute routing.RouteRegister) {
|
2022-05-04 09:12:09 -05:00
|
|
|
dashboardPermissionRoute.Get("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsPermissionsRead)), routing.Wrap(hs.GetDashboardPermissionList))
|
|
|
|
dashboardPermissionRoute.Post("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsPermissionsWrite)), routing.Wrap(hs.UpdateDashboardPermissions))
|
2022-04-21 09:24:03 -05:00
|
|
|
})
|
|
|
|
})
|
2018-01-29 14:23:07 -06:00
|
|
|
|
2022-05-17 17:11:55 -05:00
|
|
|
dashboardRoute.Group("/uid/:uid", func(dashUidRoute routing.RouteRegister) {
|
|
|
|
if hs.ThumbService != nil {
|
|
|
|
dashUidRoute.Get("/img/:kind/:theme", hs.ThumbService.GetImage)
|
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagDashboardPreviewsAdmin) {
|
|
|
|
dashUidRoute.Post("/img/:kind/:theme", reqGrafanaAdmin, hs.ThumbService.SetImage)
|
|
|
|
dashUidRoute.Put("/img/:kind/:theme", reqGrafanaAdmin, hs.ThumbService.UpdateThumbnailState)
|
|
|
|
}
|
2022-02-17 02:34:07 -06:00
|
|
|
}
|
2022-05-17 17:11:55 -05:00
|
|
|
})
|
2021-12-23 11:43:53 -06:00
|
|
|
|
2022-05-04 09:12:09 -05:00
|
|
|
dashboardRoute.Post("/calculate-diff", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsWrite)), routing.Wrap(hs.CalculateDashboardDiff))
|
2022-10-14 08:51:05 -05:00
|
|
|
dashboardRoute.Post("/validate", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsWrite)), routing.Wrap(hs.ValidateDashboard))
|
2021-11-29 03:18:01 -06:00
|
|
|
dashboardRoute.Post("/trim", routing.Wrap(hs.TrimDashboard))
|
2017-06-07 04:50:09 -05:00
|
|
|
|
2022-05-04 09:12:09 -05:00
|
|
|
dashboardRoute.Post("/db", authorize(reqSignedIn, ac.EvalAny(ac.EvalPermission(dashboards.ActionDashboardsCreate), ac.EvalPermission(dashboards.ActionDashboardsWrite))), routing.Wrap(hs.PostDashboard))
|
2021-01-15 07:43:20 -06:00
|
|
|
dashboardRoute.Get("/home", routing.Wrap(hs.GetHomeDashboard))
|
2022-02-07 05:43:43 -06:00
|
|
|
dashboardRoute.Get("/tags", hs.GetDashboardTags)
|
2017-10-12 10:38:49 -05:00
|
|
|
|
2022-05-16 11:59:02 -05:00
|
|
|
// Deprecated: used to convert internal IDs to UIDs
|
|
|
|
dashboardRoute.Get("/ids/:ids", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsRead)), hs.GetDashboardUIDs)
|
|
|
|
|
2022-04-21 09:24:03 -05:00
|
|
|
// Deprecated: use /uid/:uid API instead.
|
2018-06-25 09:36:47 -05:00
|
|
|
dashboardRoute.Group("/id/:dashboardId", func(dashIdRoute routing.RouteRegister) {
|
2022-05-04 09:12:09 -05:00
|
|
|
dashIdRoute.Get("/versions", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsWrite)), routing.Wrap(hs.GetDashboardVersions))
|
|
|
|
dashIdRoute.Get("/versions/:id", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsWrite)), routing.Wrap(hs.GetDashboardVersion))
|
|
|
|
dashIdRoute.Post("/restore", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsWrite)), routing.Wrap(hs.RestoreDashboardVersion))
|
2017-10-12 10:38:49 -05:00
|
|
|
|
2018-06-25 09:36:47 -05:00
|
|
|
dashIdRoute.Group("/permissions", func(dashboardPermissionRoute routing.RouteRegister) {
|
2022-05-04 09:12:09 -05:00
|
|
|
dashboardPermissionRoute.Get("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsPermissionsRead)), routing.Wrap(hs.GetDashboardPermissionList))
|
|
|
|
dashboardPermissionRoute.Post("/", authorize(reqSignedIn, ac.EvalPermission(dashboards.ActionDashboardsPermissionsWrite)), routing.Wrap(hs.UpdateDashboardPermissions))
|
2017-10-12 10:38:49 -05:00
|
|
|
})
|
|
|
|
})
|
2015-01-14 07:25:12 -06:00
|
|
|
})
|
2015-01-26 13:26:17 -06:00
|
|
|
|
2016-01-19 07:05:24 -06:00
|
|
|
// Dashboard snapshots
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/dashboard/snapshots", func(dashboardRoute routing.RouteRegister) {
|
2022-02-08 10:57:59 -06:00
|
|
|
dashboardRoute.Get("/", routing.Wrap(hs.SearchDashboardSnapshots))
|
2016-01-19 07:05:24 -06:00
|
|
|
})
|
2016-01-19 03:37:36 -06:00
|
|
|
|
2015-12-22 04:07:15 -06:00
|
|
|
// Playlist
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/playlists", func(playlistRoute routing.RouteRegister) {
|
2022-01-27 03:33:02 -06:00
|
|
|
playlistRoute.Get("/", routing.Wrap(hs.SearchPlaylists))
|
2022-06-14 14:32:52 -05:00
|
|
|
playlistRoute.Get("/:uid", hs.ValidateOrgPlaylist, routing.Wrap(hs.GetPlaylist))
|
|
|
|
playlistRoute.Get("/:uid/items", hs.ValidateOrgPlaylist, routing.Wrap(hs.GetPlaylistItems))
|
|
|
|
playlistRoute.Get("/:uid/dashboards", hs.ValidateOrgPlaylist, routing.Wrap(hs.GetPlaylistDashboards))
|
|
|
|
playlistRoute.Delete("/:uid", reqEditorRole, hs.ValidateOrgPlaylist, routing.Wrap(hs.DeletePlaylist))
|
|
|
|
playlistRoute.Put("/:uid", reqEditorRole, hs.ValidateOrgPlaylist, routing.Wrap(hs.UpdatePlaylist))
|
2022-01-27 03:33:02 -06:00
|
|
|
playlistRoute.Post("/", reqEditorRole, routing.Wrap(hs.CreatePlaylist))
|
2015-12-22 04:07:15 -06:00
|
|
|
})
|
|
|
|
|
2015-01-14 07:25:12 -06:00
|
|
|
// Search
|
2021-01-15 07:43:20 -06:00
|
|
|
apiRoute.Get("/search/sorting", routing.Wrap(hs.ListSortOptions))
|
2022-02-03 11:46:38 -06:00
|
|
|
apiRoute.Get("/search/", routing.Wrap(hs.Search))
|
2015-01-26 13:26:17 -06:00
|
|
|
|
2015-01-14 07:25:12 -06:00
|
|
|
// metrics
|
2019-10-31 18:22:00 -05:00
|
|
|
// DataSource w/ expressions
|
2022-03-16 09:11:03 -05:00
|
|
|
apiRoute.Post("/ds/query", authorize(reqSignedIn, ac.EvalPermission(datasources.ActionQuery)), routing.Wrap(hs.QueryMetricsV2))
|
2019-10-31 18:22:00 -05:00
|
|
|
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/alerts", func(alertsRoute routing.RouteRegister) {
|
2021-11-29 03:18:01 -06:00
|
|
|
alertsRoute.Post("/test", routing.Wrap(hs.AlertTest))
|
2022-07-12 02:01:31 -05:00
|
|
|
alertsRoute.Post("/:alertId/pause", reqEditorRole, routing.Wrap(hs.PauseAlert(setting.AlertingEnabled)))
|
2022-02-04 06:41:15 -06:00
|
|
|
alertsRoute.Get("/:alertId", hs.ValidateOrgAlert, routing.Wrap(hs.GetAlert))
|
|
|
|
alertsRoute.Get("/", routing.Wrap(hs.GetAlerts))
|
|
|
|
alertsRoute.Get("/states-for-dashboard", routing.Wrap(hs.GetAlertStatesForDashboard))
|
2016-04-26 10:36:50 -05:00
|
|
|
})
|
|
|
|
|
2022-04-06 11:24:33 -05:00
|
|
|
var notifiersAuthHandler web.Handler
|
|
|
|
if hs.Cfg.UnifiedAlerting.IsEnabled() {
|
|
|
|
notifiersAuthHandler = reqSignedIn
|
|
|
|
} else {
|
|
|
|
notifiersAuthHandler = reqEditorRole
|
|
|
|
}
|
|
|
|
|
|
|
|
apiRoute.Get("/alert-notifiers", notifiersAuthHandler, routing.Wrap(
|
2022-02-04 06:41:15 -06:00
|
|
|
hs.GetAlertNotifiers(hs.Cfg.UnifiedAlerting.IsEnabled())),
|
2021-05-04 06:58:39 -05:00
|
|
|
)
|
2016-07-14 06:32:16 -05:00
|
|
|
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/alert-notifications", func(alertNotifications routing.RouteRegister) {
|
2022-02-04 06:41:15 -06:00
|
|
|
alertNotifications.Get("/", routing.Wrap(hs.GetAlertNotifications))
|
|
|
|
alertNotifications.Post("/test", routing.Wrap(hs.NotificationTest))
|
|
|
|
alertNotifications.Post("/", routing.Wrap(hs.CreateAlertNotification))
|
2021-11-29 03:18:01 -06:00
|
|
|
alertNotifications.Put("/:notificationId", routing.Wrap(hs.UpdateAlertNotification))
|
2022-02-04 06:41:15 -06:00
|
|
|
alertNotifications.Get("/:notificationId", routing.Wrap(hs.GetAlertNotificationByID))
|
|
|
|
alertNotifications.Delete("/:notificationId", routing.Wrap(hs.DeleteAlertNotification))
|
|
|
|
alertNotifications.Get("/uid/:uid", routing.Wrap(hs.GetAlertNotificationByUID))
|
2021-11-29 03:18:01 -06:00
|
|
|
alertNotifications.Put("/uid/:uid", routing.Wrap(hs.UpdateAlertNotificationByUID))
|
2022-02-04 06:41:15 -06:00
|
|
|
alertNotifications.Delete("/uid/:uid", routing.Wrap(hs.DeleteAlertNotificationByUID))
|
2016-10-19 01:01:14 -05:00
|
|
|
}, reqEditorRole)
|
2016-07-14 06:32:16 -05:00
|
|
|
|
2019-08-12 13:03:48 -05:00
|
|
|
// alert notifications without requirement of user to be org editor
|
|
|
|
apiRoute.Group("/alert-notifications", func(orgRoute routing.RouteRegister) {
|
2022-02-04 06:41:15 -06:00
|
|
|
orgRoute.Get("/lookup", routing.Wrap(hs.GetAlertNotificationLookup))
|
2019-08-12 13:03:48 -05:00
|
|
|
})
|
|
|
|
|
2022-04-11 07:18:38 -05:00
|
|
|
apiRoute.Get("/annotations", authorize(reqSignedIn, ac.EvalPermission(ac.ActionAnnotationsRead)), routing.Wrap(hs.GetAnnotations))
|
2022-03-23 16:39:00 -05:00
|
|
|
apiRoute.Post("/annotations/mass-delete", authorize(reqOrgAdmin, ac.EvalPermission(ac.ActionAnnotationsDelete)), routing.Wrap(hs.MassDeleteAnnotations))
|
2017-04-12 08:46:41 -05:00
|
|
|
|
2018-06-25 09:36:47 -05:00
|
|
|
apiRoute.Group("/annotations", func(annotationsRoute routing.RouteRegister) {
|
2022-03-21 12:28:39 -05:00
|
|
|
annotationsRoute.Post("/", authorize(reqSignedIn, ac.EvalPermission(ac.ActionAnnotationsCreate)), routing.Wrap(hs.PostAnnotation))
|
2022-05-16 10:16:36 -05:00
|
|
|
annotationsRoute.Get("/:annotationId", authorize(reqSignedIn, ac.EvalPermission(ac.ActionAnnotationsRead, ac.ScopeAnnotationsID)), routing.Wrap(hs.GetAnnotationByID))
|
2022-03-21 12:28:39 -05:00
|
|
|
annotationsRoute.Delete("/:annotationId", authorize(reqSignedIn, ac.EvalPermission(ac.ActionAnnotationsDelete, ac.ScopeAnnotationsID)), routing.Wrap(hs.DeleteAnnotationByID))
|
2022-03-18 11:33:21 -05:00
|
|
|
annotationsRoute.Put("/:annotationId", authorize(reqSignedIn, ac.EvalPermission(ac.ActionAnnotationsWrite, ac.ScopeAnnotationsID)), routing.Wrap(hs.UpdateAnnotation))
|
|
|
|
annotationsRoute.Patch("/:annotationId", authorize(reqSignedIn, ac.EvalPermission(ac.ActionAnnotationsWrite, ac.ScopeAnnotationsID)), routing.Wrap(hs.PatchAnnotation))
|
2022-03-21 12:28:39 -05:00
|
|
|
annotationsRoute.Post("/graphite", authorize(reqEditorRole, ac.EvalPermission(ac.ActionAnnotationsCreate, ac.ScopeAnnotationsTypeOrganization)), routing.Wrap(hs.PostGraphiteAnnotation))
|
2022-04-04 07:53:58 -05:00
|
|
|
annotationsRoute.Get("/tags", authorize(reqSignedIn, ac.EvalPermission(ac.ActionAnnotationsRead)), routing.Wrap(hs.GetAnnotationTags))
|
2017-12-20 17:52:21 -06:00
|
|
|
})
|
2016-09-08 04:25:45 -05:00
|
|
|
|
2021-11-29 03:18:01 -06:00
|
|
|
apiRoute.Post("/frontend-metrics", routing.Wrap(hs.PostFrontendMetrics))
|
2021-04-01 13:04:02 -05:00
|
|
|
|
2021-05-04 10:44:55 -05:00
|
|
|
apiRoute.Group("/live", func(liveRoute routing.RouteRegister) {
|
|
|
|
// the channel path is in the name
|
2021-11-29 03:18:01 -06:00
|
|
|
liveRoute.Post("/publish", routing.Wrap(hs.Live.HandleHTTPPublish))
|
2021-04-05 11:04:46 -05:00
|
|
|
|
2021-09-09 11:19:29 -05:00
|
|
|
// POST influx line protocol.
|
2021-05-04 10:44:55 -05:00
|
|
|
liveRoute.Post("/push/:streamId", hs.LivePushGateway.Handle)
|
2021-04-05 11:04:46 -05:00
|
|
|
|
2021-05-04 10:44:55 -05:00
|
|
|
// List available streams and fields
|
|
|
|
liveRoute.Get("/list", routing.Wrap(hs.Live.HandleListHTTP))
|
2021-04-23 14:55:31 -05:00
|
|
|
|
2021-05-04 10:44:55 -05:00
|
|
|
// Some channels may have info
|
|
|
|
liveRoute.Get("/info/*", routing.Wrap(hs.Live.HandleInfoHTTP))
|
2021-09-09 11:19:29 -05:00
|
|
|
|
2022-01-26 11:44:20 -06:00
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagLivePipeline) {
|
2021-09-09 11:19:29 -05:00
|
|
|
// POST Live data to be processed according to channel rules.
|
2021-11-15 03:43:18 -06:00
|
|
|
liveRoute.Post("/pipeline/push/*", hs.LivePushGateway.HandlePipelinePush)
|
2021-09-30 12:28:06 -05:00
|
|
|
liveRoute.Post("/pipeline-convert-test", routing.Wrap(hs.Live.HandlePipelineConvertTestHTTP), reqOrgAdmin)
|
2021-11-05 04:13:40 -05:00
|
|
|
liveRoute.Get("/pipeline-entities", routing.Wrap(hs.Live.HandlePipelineEntitiesListHTTP), reqOrgAdmin)
|
|
|
|
liveRoute.Get("/channel-rules", routing.Wrap(hs.Live.HandleChannelRulesListHTTP), reqOrgAdmin)
|
2021-09-30 11:29:32 -05: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-09 10:12:10 -06: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-09 11:19:29 -05:00
|
|
|
}
|
2021-05-04 10:44:55 -05:00
|
|
|
})
|
2021-03-30 05:23:29 -05:00
|
|
|
|
2020-10-14 05:48:48 -05:00
|
|
|
// short urls
|
2021-11-29 03:18:01 -06:00
|
|
|
apiRoute.Post("/short-urls", routing.Wrap(hs.createShortURL))
|
2022-02-22 01:47:42 -06:00
|
|
|
|
|
|
|
apiRoute.Group("/comments", func(commentRoute routing.RouteRegister) {
|
|
|
|
commentRoute.Post("/get", routing.Wrap(hs.commentsGet))
|
|
|
|
commentRoute.Post("/create", routing.Wrap(hs.commentsCreate))
|
|
|
|
})
|
2015-01-15 05:16:54 -06:00
|
|
|
}, reqSignedIn)
|
|
|
|
|
|
|
|
// admin api
|
2018-06-25 09:36:47 -05:00
|
|
|
r.Group("/api/admin", func(adminRoute routing.RouteRegister) {
|
2021-08-24 04:36:28 -05:00
|
|
|
adminRoute.Get("/settings", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionSettingsRead)), routing.Wrap(hs.AdminGetSettings))
|
2022-01-26 11:44:20 -06:00
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagShowFeatureFlagsInUI) {
|
|
|
|
adminRoute.Get("/settings/features", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionSettingsRead)), hs.Features.HandleGetSettings)
|
|
|
|
}
|
2022-02-04 10:53:58 -06:00
|
|
|
adminRoute.Get("/stats", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionServerStatsRead)), routing.Wrap(hs.AdminGetStats))
|
2022-07-12 02:01:31 -05:00
|
|
|
adminRoute.Post("/pause-all-alerts", reqGrafanaAdmin, routing.Wrap(hs.PauseAllAlerts(setting.AlertingEnabled)))
|
2021-04-22 05:19:41 -05:00
|
|
|
|
2022-02-17 02:34:07 -06:00
|
|
|
if hs.ThumbService != nil && hs.Features.IsEnabled(featuremgmt.FlagDashboardPreviewsAdmin) {
|
2022-01-10 10:21:35 -06:00
|
|
|
adminRoute.Post("/crawler/start", reqGrafanaAdmin, routing.Wrap(hs.ThumbService.StartCrawler))
|
|
|
|
adminRoute.Post("/crawler/stop", reqGrafanaAdmin, routing.Wrap(hs.ThumbService.StopCrawler))
|
|
|
|
adminRoute.Get("/crawler/status", reqGrafanaAdmin, routing.Wrap(hs.ThumbService.CrawlerStatus))
|
|
|
|
}
|
|
|
|
|
2022-04-25 18:59:18 -05:00
|
|
|
if hs.Features.IsEnabled(featuremgmt.FlagExport) {
|
|
|
|
adminRoute.Get("/export", reqGrafanaAdmin, routing.Wrap(hs.ExportService.HandleGetStatus))
|
|
|
|
adminRoute.Post("/export", reqGrafanaAdmin, routing.Wrap(hs.ExportService.HandleRequestExport))
|
2022-07-07 13:02:01 -05:00
|
|
|
adminRoute.Post("/export/stop", reqGrafanaAdmin, routing.Wrap(hs.ExportService.HandleRequestStop))
|
2022-07-13 14:36:14 -05:00
|
|
|
adminRoute.Get("/export/options", reqGrafanaAdmin, routing.Wrap(hs.ExportService.HandleGetOptions))
|
2022-04-25 18:59:18 -05:00
|
|
|
}
|
|
|
|
|
2022-05-23 06:13:55 -05:00
|
|
|
adminRoute.Post("/encryption/rotate-data-keys", reqGrafanaAdmin, routing.Wrap(hs.AdminRotateDataEncryptionKeys))
|
2022-07-18 01:57:58 -05:00
|
|
|
adminRoute.Post("/encryption/reencrypt-data-keys", reqGrafanaAdmin, routing.Wrap(hs.AdminReEncryptEncryptionKeys))
|
|
|
|
adminRoute.Post("/encryption/reencrypt-secrets", reqGrafanaAdmin, routing.Wrap(hs.AdminReEncryptSecrets))
|
|
|
|
adminRoute.Post("/encryption/rollback-secrets", reqGrafanaAdmin, routing.Wrap(hs.AdminRollbackSecrets))
|
2022-08-29 13:44:55 -05:00
|
|
|
adminRoute.Post("/encryption/migrate-secrets/to-plugin", reqGrafanaAdmin, routing.Wrap(hs.AdminMigrateSecretsToPlugin))
|
|
|
|
adminRoute.Post("/encryption/migrate-secrets/from-plugin", reqGrafanaAdmin, routing.Wrap(hs.AdminMigrateSecretsFromPlugin))
|
|
|
|
adminRoute.Post("/encryption/delete-secretsmanagerplugin-secrets", reqGrafanaAdmin, routing.Wrap(hs.AdminDeleteAllSecretsManagerPluginSecrets))
|
2022-05-23 06:13:55 -05:00
|
|
|
|
2021-08-24 04:36:28 -05: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))
|
2022-07-14 16:53:13 -05:00
|
|
|
adminRoute.Post("/provisioning/alerting/reload", authorize(reqGrafanaAdmin, ac.EvalPermission(ActionProvisioningReload, ScopeProvisionersAlertRules)), routing.Wrap(hs.AdminProvisioningReloadAlerting))
|
2021-08-04 07:44:37 -05:00
|
|
|
|
2021-08-24 04:36:28 -05: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))
|
2023-01-26 03:50:44 -06:00
|
|
|
}, reqSignedIn)
|
2014-12-15 14:25:02 -06:00
|
|
|
|
2021-04-14 09:31:27 -05:00
|
|
|
// Administering users
|
|
|
|
r.Group("/api/admin/users", func(adminUserRoute routing.RouteRegister) {
|
2022-03-22 06:48:46 -05:00
|
|
|
userIDScope := ac.Scope("global.users", "id", ac.Parameter(":id"))
|
2021-08-24 04:36:28 -05:00
|
|
|
|
2021-11-29 03:18:01 -06:00
|
|
|
adminUserRoute.Post("/", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersCreate)), routing.Wrap(hs.AdminCreateUser))
|
2022-02-04 12:45:42 -06:00
|
|
|
adminUserRoute.Put("/:id/password", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersPasswordUpdate, userIDScope)), routing.Wrap(hs.AdminUpdateUserPassword))
|
2021-11-29 03:18:01 -06:00
|
|
|
adminUserRoute.Put("/:id/permissions", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersPermissionsUpdate, userIDScope)), routing.Wrap(hs.AdminUpdateUserPermissions))
|
2022-02-04 12:45:42 -06:00
|
|
|
adminUserRoute.Delete("/:id", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersDelete, userIDScope)), routing.Wrap(hs.AdminDeleteUser))
|
2021-08-24 04:36:28 -05:00
|
|
|
adminUserRoute.Post("/:id/disable", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersDisable, userIDScope)), routing.Wrap(hs.AdminDisableUser))
|
2022-02-04 12:45:42 -06:00
|
|
|
adminUserRoute.Post("/:id/enable", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersEnable, userIDScope)), routing.Wrap(hs.AdminEnableUser))
|
2022-02-03 02:20:20 -06:00
|
|
|
adminUserRoute.Get("/:id/quotas", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersQuotasList, userIDScope)), routing.Wrap(hs.GetUserQuotas))
|
|
|
|
adminUserRoute.Put("/:id/quotas/:target", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersQuotasUpdate, userIDScope)), routing.Wrap(hs.UpdateUserQuota))
|
2021-08-24 04:36:28 -05: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 03:18:01 -06:00
|
|
|
adminUserRoute.Post("/:id/revoke-auth-token", authorize(reqGrafanaAdmin, ac.EvalPermission(ac.ActionUsersAuthTokenUpdate, userIDScope)), routing.Wrap(hs.AdminRevokeUserAuthToken))
|
2023-01-26 03:50:44 -06:00
|
|
|
}, reqSignedIn)
|
2021-04-14 09:31:27 -05:00
|
|
|
|
2014-12-15 14:25:02 -06:00
|
|
|
// rendering
|
2018-05-24 08:26:27 -05:00
|
|
|
r.Get("/render/*", reqSignedIn, hs.RenderToPng)
|
2015-01-06 02:11:00 -06:00
|
|
|
|
2016-04-08 15:42:33 -05:00
|
|
|
// grafana.net proxy
|
2021-11-12 04:07:12 -06:00
|
|
|
r.Any("/api/gnet/*", reqSignedIn, hs.ProxyGnetRequest)
|
2016-04-08 15:42:33 -05:00
|
|
|
|
2022-07-06 18:51:44 -05:00
|
|
|
// Gravatar service
|
2022-04-05 21:56:17 -05:00
|
|
|
r.Get("/avatar/:hash", hs.AvatarCacheServer.Handler)
|
2016-02-20 16:51:22 -06:00
|
|
|
|
2019-09-02 08:15:46 -05:00
|
|
|
// Snapshots
|
2022-02-08 10:57:59 -06:00
|
|
|
r.Post("/api/snapshots/", reqSnapshotPublicModeOrSignedIn, hs.CreateDashboardSnapshot)
|
2023-01-26 07:28:11 -06:00
|
|
|
r.Get("/api/snapshot/shared-options/", reqSignedIn, hs.GetSharingOptions)
|
2022-02-08 10:57:59 -06:00
|
|
|
r.Get("/api/snapshots/:key", routing.Wrap(hs.GetDashboardSnapshot))
|
|
|
|
r.Get("/api/snapshots-delete/:deleteKey", reqSnapshotPublicModeOrSignedIn, routing.Wrap(hs.DeleteDashboardSnapshotByDeleteKey))
|
2022-11-14 13:13:33 -06:00
|
|
|
r.Delete("/api/snapshots/:key", reqSignedIn, routing.Wrap(hs.DeleteDashboardSnapshot))
|
2014-12-15 14:25:02 -06:00
|
|
|
}
|