2016-03-06 05:47:39 -06:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2021-11-02 07:41:45 -05:00
|
|
|
"context"
|
2021-11-29 03:18:01 -06:00
|
|
|
"net/http"
|
2021-11-02 07:41:45 -05:00
|
|
|
|
2016-04-01 19:34:30 -05:00
|
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
2021-01-15 07:43:20 -06:00
|
|
|
"github.com/grafana/grafana/pkg/api/response"
|
2023-01-25 13:00:32 -06:00
|
|
|
"github.com/grafana/grafana/pkg/kinds/preferences"
|
2023-10-09 09:07:28 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/auth/identity"
|
2023-01-27 01:50:36 -06:00
|
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
2023-01-16 09:33:55 -06:00
|
|
|
"github.com/grafana/grafana/pkg/services/dashboards"
|
2022-04-21 08:03:17 -05:00
|
|
|
pref "github.com/grafana/grafana/pkg/services/preference"
|
2023-10-12 03:10:54 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/preference/prefapi"
|
2021-11-29 03:18:01 -06:00
|
|
|
"github.com/grafana/grafana/pkg/web"
|
2016-03-06 05:47:39 -06:00
|
|
|
)
|
|
|
|
|
2016-03-17 01:22:27 -05:00
|
|
|
// POST /api/preferences/set-home-dash
|
2023-01-27 01:50:36 -06:00
|
|
|
func (hs *HTTPServer) SetHomeDashboard(c *contextmodel.ReqContext) response.Response {
|
2022-04-21 08:03:17 -05:00
|
|
|
cmd := pref.SavePreferenceCommand{}
|
2021-11-29 03:18:01 -06:00
|
|
|
if err := web.Bind(c.Req, &cmd); err != nil {
|
|
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
|
|
}
|
2023-10-09 09:07:28 -05:00
|
|
|
|
|
|
|
userID, errID := identity.UserIdentifier(c.SignedInUser.GetNamespacedID())
|
|
|
|
if errID != nil {
|
|
|
|
return response.Error(http.StatusInternalServerError, "Failed to set home dashboard", errID)
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.UserID = userID
|
2023-10-06 04:34:36 -05:00
|
|
|
cmd.OrgID = c.SignedInUser.GetOrgID()
|
2016-03-17 01:22:27 -05:00
|
|
|
|
2022-04-29 07:37:33 -05:00
|
|
|
// the default value of HomeDashboardID is taken from input, when HomeDashboardID is set also,
|
|
|
|
// UID is used in preference to identify dashboard
|
|
|
|
dashboardID := cmd.HomeDashboardID
|
|
|
|
if cmd.HomeDashboardUID != nil {
|
2023-01-16 09:33:55 -06:00
|
|
|
query := dashboards.GetDashboardQuery{UID: *cmd.HomeDashboardUID}
|
|
|
|
if query.UID == "" {
|
2022-08-26 11:40:40 -05:00
|
|
|
dashboardID = 0 // clear the value
|
|
|
|
} else {
|
2023-01-25 03:36:26 -06:00
|
|
|
queryResult, err := hs.DashboardService.GetDashboard(c.Req.Context(), &query)
|
2022-08-26 11:40:40 -05:00
|
|
|
if err != nil {
|
2023-02-21 04:19:07 -06:00
|
|
|
return response.Error(http.StatusNotFound, "Dashboard not found", err)
|
2022-08-26 11:40:40 -05:00
|
|
|
}
|
2023-01-25 03:36:26 -06:00
|
|
|
dashboardID = queryResult.ID
|
2022-04-29 07:37:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.HomeDashboardID = dashboardID
|
|
|
|
|
2022-04-21 08:03:17 -05:00
|
|
|
if err := hs.preferenceService.Save(c.Req.Context(), &cmd); err != nil {
|
2023-02-21 04:19:07 -06:00
|
|
|
return response.ErrOrFallback(http.StatusInternalServerError, "Failed to set home dashboard", err)
|
2016-03-17 01:35:06 -05:00
|
|
|
}
|
2016-03-17 01:22:27 -05:00
|
|
|
|
2021-01-15 07:43:20 -06:00
|
|
|
return response.Success("Home dashboard set")
|
2016-03-17 01:22:27 -05:00
|
|
|
}
|
2016-04-01 19:34:30 -05:00
|
|
|
|
2022-07-27 08:54:37 -05:00
|
|
|
// swagger:route GET /user/preferences user_preferences getUserPreferences
|
|
|
|
//
|
|
|
|
// Get user preferences.
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: getPreferencesResponse
|
|
|
|
// 401: unauthorisedError
|
|
|
|
// 500: internalServerError
|
2023-01-27 01:50:36 -06:00
|
|
|
func (hs *HTTPServer) GetUserPreferences(c *contextmodel.ReqContext) response.Response {
|
2023-10-09 09:07:28 -05:00
|
|
|
userID, errID := identity.UserIdentifier(c.SignedInUser.GetNamespacedID())
|
|
|
|
if errID != nil {
|
|
|
|
return response.Error(http.StatusInternalServerError, "Failed to get user preferences", errID)
|
|
|
|
}
|
|
|
|
|
2023-10-12 03:10:54 -05:00
|
|
|
return prefapi.GetPreferencesFor(c.Req.Context(), hs.DashboardService, hs.preferenceService, c.SignedInUser.GetOrgID(), userID, 0)
|
2016-04-01 19:34:30 -05:00
|
|
|
}
|
|
|
|
|
2022-07-27 08:54:37 -05:00
|
|
|
// swagger:route PUT /user/preferences user_preferences updateUserPreferences
|
|
|
|
//
|
|
|
|
// Update user preferences.
|
|
|
|
//
|
|
|
|
// Omitting a key (`theme`, `homeDashboardId`, `timezone`) will cause the current value to be replaced with the system default value.
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: okResponse
|
|
|
|
// 400: badRequestError
|
|
|
|
// 401: unauthorisedError
|
|
|
|
// 500: internalServerError
|
2023-01-27 01:50:36 -06:00
|
|
|
func (hs *HTTPServer) UpdateUserPreferences(c *contextmodel.ReqContext) response.Response {
|
2021-11-29 03:18:01 -06:00
|
|
|
dtoCmd := dtos.UpdatePrefsCmd{}
|
|
|
|
if err := web.Bind(c.Req, &dtoCmd); err != nil {
|
|
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
|
|
}
|
2023-10-09 09:07:28 -05:00
|
|
|
|
|
|
|
userID, errID := identity.UserIdentifier(c.SignedInUser.GetNamespacedID())
|
|
|
|
if errID != nil {
|
|
|
|
return response.Error(http.StatusInternalServerError, "Failed to update user preferences", errID)
|
|
|
|
}
|
|
|
|
|
2023-10-12 03:10:54 -05:00
|
|
|
return prefapi.UpdatePreferencesFor(c.Req.Context(), hs.DashboardService,
|
|
|
|
hs.preferenceService, c.SignedInUser.GetOrgID(), userID, 0, &dtoCmd)
|
2016-04-02 15:54:06 -05:00
|
|
|
}
|
|
|
|
|
2022-07-27 08:54:37 -05:00
|
|
|
// swagger:route PATCH /user/preferences user_preferences patchUserPreferences
|
|
|
|
//
|
|
|
|
// Patch user preferences.
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: okResponse
|
|
|
|
// 400: badRequestError
|
|
|
|
// 401: unauthorisedError
|
|
|
|
// 500: internalServerError
|
2023-01-27 01:50:36 -06:00
|
|
|
func (hs *HTTPServer) PatchUserPreferences(c *contextmodel.ReqContext) response.Response {
|
2022-03-17 07:07:20 -05:00
|
|
|
dtoCmd := dtos.PatchPrefsCmd{}
|
|
|
|
if err := web.Bind(c.Req, &dtoCmd); err != nil {
|
|
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
|
|
}
|
2023-10-09 09:07:28 -05:00
|
|
|
|
|
|
|
userID, errID := identity.UserIdentifier(c.SignedInUser.GetNamespacedID())
|
|
|
|
if errID != nil {
|
|
|
|
return response.Error(http.StatusInternalServerError, "Failed to update user preferences", errID)
|
|
|
|
}
|
|
|
|
|
|
|
|
return hs.patchPreferencesFor(c.Req.Context(), c.SignedInUser.GetOrgID(), userID, 0, &dtoCmd)
|
2022-03-17 07:07:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (hs *HTTPServer) patchPreferencesFor(ctx context.Context, orgID, userID, teamId int64, dtoCmd *dtos.PatchPrefsCmd) response.Response {
|
2023-05-10 08:37:04 -05:00
|
|
|
if dtoCmd.Theme != nil && !pref.IsValidThemeID(*dtoCmd.Theme) {
|
2023-02-21 04:19:07 -06:00
|
|
|
return response.Error(http.StatusBadRequest, "Invalid theme", nil)
|
2022-03-17 07:07:20 -05:00
|
|
|
}
|
2022-04-29 07:37:33 -05:00
|
|
|
|
|
|
|
// convert dashboard UID to ID in order to store internally if it exists in the query, otherwise take the id from query
|
|
|
|
dashboardID := dtoCmd.HomeDashboardID
|
|
|
|
if dtoCmd.HomeDashboardUID != nil {
|
2023-01-16 09:33:55 -06:00
|
|
|
query := dashboards.GetDashboardQuery{UID: *dtoCmd.HomeDashboardUID, OrgID: orgID}
|
|
|
|
if query.UID == "" {
|
2022-08-26 11:40:40 -05:00
|
|
|
// clear the value
|
|
|
|
defaultDash := int64(0)
|
|
|
|
dashboardID = &defaultDash
|
|
|
|
} else {
|
2023-01-25 03:36:26 -06:00
|
|
|
queryResult, err := hs.DashboardService.GetDashboard(ctx, &query)
|
2022-08-26 11:40:40 -05:00
|
|
|
if err != nil {
|
2023-02-21 04:19:07 -06:00
|
|
|
return response.Error(http.StatusNotFound, "Dashboard not found", err)
|
2022-08-26 11:40:40 -05:00
|
|
|
}
|
2023-01-25 03:36:26 -06:00
|
|
|
dashboardID = &queryResult.ID
|
2022-04-29 07:37:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dtoCmd.HomeDashboardID = dashboardID
|
|
|
|
|
2022-04-21 08:03:17 -05:00
|
|
|
patchCmd := pref.PatchPreferenceCommand{
|
2023-02-21 04:19:07 -06:00
|
|
|
UserID: userID,
|
|
|
|
OrgID: orgID,
|
|
|
|
TeamID: teamId,
|
|
|
|
Theme: dtoCmd.Theme,
|
|
|
|
Timezone: dtoCmd.Timezone,
|
|
|
|
WeekStart: dtoCmd.WeekStart,
|
|
|
|
HomeDashboardID: dtoCmd.HomeDashboardID,
|
|
|
|
Language: dtoCmd.Language,
|
|
|
|
QueryHistory: dtoCmd.QueryHistory,
|
|
|
|
CookiePreferences: dtoCmd.Cookies,
|
2022-03-17 07:07:20 -05:00
|
|
|
}
|
|
|
|
|
2022-04-21 08:03:17 -05:00
|
|
|
if err := hs.preferenceService.Patch(ctx, &patchCmd); err != nil {
|
2023-02-21 04:19:07 -06:00
|
|
|
return response.ErrOrFallback(http.StatusInternalServerError, "Failed to save preferences", err)
|
2022-03-17 07:07:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return response.Success("Preferences updated")
|
|
|
|
}
|
|
|
|
|
2022-07-27 08:54:37 -05:00
|
|
|
// swagger:route GET /org/preferences org_preferences getOrgPreferences
|
|
|
|
//
|
|
|
|
// Get Current Org Prefs.
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: getPreferencesResponse
|
|
|
|
// 401: unauthorisedError
|
|
|
|
// 403: forbiddenError
|
|
|
|
// 500: internalServerError
|
2023-01-27 01:50:36 -06:00
|
|
|
func (hs *HTTPServer) GetOrgPreferences(c *contextmodel.ReqContext) response.Response {
|
2023-10-12 03:10:54 -05:00
|
|
|
return prefapi.GetPreferencesFor(c.Req.Context(), hs.DashboardService, hs.preferenceService, c.SignedInUser.GetOrgID(), 0, 0)
|
2016-04-02 15:54:06 -05:00
|
|
|
}
|
|
|
|
|
2022-07-27 08:54:37 -05:00
|
|
|
// swagger:route PUT /org/preferences org_preferences updateOrgPreferences
|
|
|
|
//
|
|
|
|
// Update Current Org Prefs.
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: okResponse
|
|
|
|
// 400: badRequestError
|
|
|
|
// 401: unauthorisedError
|
|
|
|
// 403: forbiddenError
|
|
|
|
// 500: internalServerError
|
2023-01-27 01:50:36 -06:00
|
|
|
func (hs *HTTPServer) UpdateOrgPreferences(c *contextmodel.ReqContext) response.Response {
|
2021-11-29 03:18:01 -06:00
|
|
|
dtoCmd := dtos.UpdatePrefsCmd{}
|
|
|
|
if err := web.Bind(c.Req, &dtoCmd); err != nil {
|
|
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
|
|
}
|
2022-04-29 07:37:33 -05:00
|
|
|
|
2023-10-12 03:10:54 -05:00
|
|
|
return prefapi.UpdatePreferencesFor(c.Req.Context(), hs.DashboardService, hs.preferenceService, c.SignedInUser.GetOrgID(), 0, 0, &dtoCmd)
|
2016-04-01 19:34:30 -05:00
|
|
|
}
|
2022-03-17 07:07:20 -05:00
|
|
|
|
2022-07-27 08:54:37 -05:00
|
|
|
// swagger:route PATCH /org/preferences org_preferences patchOrgPreferences
|
|
|
|
//
|
|
|
|
// Patch Current Org Prefs.
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: okResponse
|
|
|
|
// 400: badRequestError
|
|
|
|
// 401: unauthorisedError
|
|
|
|
// 403: forbiddenError
|
|
|
|
// 500: internalServerError
|
2023-01-27 01:50:36 -06:00
|
|
|
func (hs *HTTPServer) PatchOrgPreferences(c *contextmodel.ReqContext) response.Response {
|
2022-03-17 07:07:20 -05:00
|
|
|
dtoCmd := dtos.PatchPrefsCmd{}
|
|
|
|
if err := web.Bind(c.Req, &dtoCmd); err != nil {
|
|
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
|
|
}
|
2023-10-06 04:34:36 -05:00
|
|
|
return hs.patchPreferencesFor(c.Req.Context(), c.SignedInUser.GetOrgID(), 0, 0, &dtoCmd)
|
2022-03-17 07:07:20 -05:00
|
|
|
}
|
2022-07-27 08:54:37 -05:00
|
|
|
|
|
|
|
// swagger:parameters updateUserPreferences
|
|
|
|
type UpdateUserPreferencesParams struct {
|
|
|
|
// in:body
|
|
|
|
// required:true
|
|
|
|
Body dtos.UpdatePrefsCmd `json:"body"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// swagger:parameters updateOrgPreferences
|
|
|
|
type UpdateOrgPreferencesParams struct {
|
|
|
|
// in:body
|
|
|
|
// required:true
|
|
|
|
Body dtos.UpdatePrefsCmd `json:"body"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// swagger:response getPreferencesResponse
|
|
|
|
type GetPreferencesResponse struct {
|
|
|
|
// in:body
|
2023-04-27 15:32:38 -05:00
|
|
|
Body preferences.Spec `json:"body"`
|
2022-07-27 08:54:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// swagger:parameters patchUserPreferences
|
|
|
|
type PatchUserPreferencesParams struct {
|
|
|
|
// in:body
|
|
|
|
// required:true
|
|
|
|
Body dtos.PatchPrefsCmd `json:"body"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// swagger:parameters patchOrgPreferences
|
|
|
|
type PatchOrgPreferencesParams struct {
|
|
|
|
// in:body
|
|
|
|
// required:true
|
|
|
|
Body dtos.PatchPrefsCmd `json:"body"`
|
|
|
|
}
|