| 
									
										
										
										
											2016-03-06 19:47:39 +08:00
										 |  |  | package api | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-11-02 20:41:45 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2021-11-02 20:41:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/api/dtos" | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/api/response" | 
					
						
							| 
									
										
										
										
											2023-01-26 03:00:32 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/kinds/preferences" | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | 	contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model" | 
					
						
							| 
									
										
										
										
											2023-01-16 23:33:55 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/services/dashboards" | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	pref "github.com/grafana/grafana/pkg/services/preference" | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/web" | 
					
						
							| 
									
										
										
										
											2016-03-06 19:47:39 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-17 14:22:27 +08:00
										 |  |  | // POST /api/preferences/set-home-dash
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) SetHomeDashboard(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	cmd := pref.SavePreferenceCommand{} | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	if err := web.Bind(c.Req, &cmd); err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusBadRequest, "bad request data", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-08-11 19:28:55 +08:00
										 |  |  | 	cmd.UserID = c.UserID | 
					
						
							|  |  |  | 	cmd.OrgID = c.OrgID | 
					
						
							| 
									
										
										
										
											2016-03-17 14:22:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08: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 23:33:55 +08:00
										 |  |  | 		query := dashboards.GetDashboardQuery{UID: *cmd.HomeDashboardUID} | 
					
						
							|  |  |  | 		if query.UID == "" { | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			dashboardID = 0 // clear the value
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			queryResult, err := hs.DashboardService.GetDashboard(c.Req.Context(), &query) | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 				return response.Error(http.StatusNotFound, "Dashboard not found", err) | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			dashboardID = queryResult.ID | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd.HomeDashboardID = dashboardID | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	if err := hs.preferenceService.Save(c.Req.Context(), &cmd); err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 		return response.ErrOrFallback(http.StatusInternalServerError, "Failed to set home dashboard", err) | 
					
						
							| 
									
										
										
										
											2016-03-17 14:35:06 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-17 14:22:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.Success("Home dashboard set") | 
					
						
							| 
									
										
										
										
											2016-03-17 14:22:27 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08:00
										 |  |  | // swagger:route GET /user/preferences user_preferences getUserPreferences
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Get user preferences.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Responses:
 | 
					
						
							|  |  |  | // 200: getPreferencesResponse
 | 
					
						
							|  |  |  | // 401: unauthorisedError
 | 
					
						
							|  |  |  | // 500: internalServerError
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) GetUserPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2022-08-11 19:28:55 +08:00
										 |  |  | 	return hs.getPreferencesFor(c.Req.Context(), c.OrgID, c.UserID, 0) | 
					
						
							| 
									
										
										
										
											2016-04-03 04:54:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-02 20:41:45 +08:00
										 |  |  | func (hs *HTTPServer) getPreferencesFor(ctx context.Context, orgID, userID, teamID int64) response.Response { | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	prefsQuery := pref.GetPreferenceQuery{UserID: userID, OrgID: orgID, TeamID: teamID} | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	preference, err := hs.preferenceService.Get(ctx, &prefsQuery) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 		return response.Error(http.StatusInternalServerError, "Failed to get preferences", err) | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 	var dashboardUID string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// when homedashboardID is 0, that means it is the default home dashboard, no UID would be returned in the response
 | 
					
						
							|  |  |  | 	if preference.HomeDashboardID != 0 { | 
					
						
							| 
									
										
										
										
											2023-01-16 23:33:55 +08:00
										 |  |  | 		query := dashboards.GetDashboardQuery{ID: preference.HomeDashboardID, OrgID: orgID} | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 		queryResult, err := hs.DashboardService.GetDashboard(ctx, &query) | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 		if err == nil { | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			dashboardUID = queryResult.UID | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-28 04:32:38 +08:00
										 |  |  | 	dto := preferences.Spec{} | 
					
						
							| 
									
										
										
										
											2022-11-21 22:53:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-26 03:00:32 +08:00
										 |  |  | 	if preference.WeekStart != nil && *preference.WeekStart != "" { | 
					
						
							|  |  |  | 		dto.WeekStart = preference.WeekStart | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if preference.Theme != "" { | 
					
						
							|  |  |  | 		dto.Theme = &preference.Theme | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if dashboardUID != "" { | 
					
						
							|  |  |  | 		dto.HomeDashboardUID = &dashboardUID | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if preference.Timezone != "" { | 
					
						
							|  |  |  | 		dto.Timezone = &preference.Timezone | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	if preference.JSONData != nil { | 
					
						
							| 
									
										
										
										
											2023-01-26 03:00:32 +08:00
										 |  |  | 		if preference.JSONData.Language != "" { | 
					
						
							|  |  |  | 			dto.Language = &preference.JSONData.Language | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if preference.JSONData.QueryHistory.HomeTab != "" { | 
					
						
							|  |  |  | 			dto.QueryHistory = &preferences.QueryHistoryPreference{ | 
					
						
							|  |  |  | 				HomeTab: &preference.JSONData.QueryHistory.HomeTab, | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-15 20:01:58 +08:00
										 |  |  | 	return response.JSON(http.StatusOK, &dto) | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08: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 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) UpdateUserPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08:00
										 |  |  | 	dtoCmd := dtos.UpdatePrefsCmd{} | 
					
						
							|  |  |  | 	if err := web.Bind(c.Req, &dtoCmd); err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusBadRequest, "bad request data", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-08-11 19:28:55 +08:00
										 |  |  | 	return hs.updatePreferencesFor(c.Req.Context(), c.OrgID, c.UserID, 0, &dtoCmd) | 
					
						
							| 
									
										
										
										
											2016-04-03 04:54:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-02 20:41:45 +08:00
										 |  |  | func (hs *HTTPServer) updatePreferencesFor(ctx context.Context, orgID, userID, teamId int64, dtoCmd *dtos.UpdatePrefsCmd) response.Response { | 
					
						
							| 
									
										
										
										
											2023-05-17 01:38:51 +08:00
										 |  |  | 	if dtoCmd.Theme != "" && !pref.IsValidThemeID(dtoCmd.Theme) { | 
					
						
							| 
									
										
										
										
											2023-05-10 21:37:04 +08:00
										 |  |  | 		return response.Error(http.StatusBadRequest, "Invalid theme", nil) | 
					
						
							| 
									
										
										
										
											2021-08-24 14:41:15 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dashboardID := dtoCmd.HomeDashboardID | 
					
						
							|  |  |  | 	if dtoCmd.HomeDashboardUID != nil { | 
					
						
							| 
									
										
										
										
											2023-01-16 23:33:55 +08:00
										 |  |  | 		query := dashboards.GetDashboardQuery{UID: *dtoCmd.HomeDashboardUID, OrgID: orgID} | 
					
						
							|  |  |  | 		if query.UID == "" { | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			// clear the value
 | 
					
						
							|  |  |  | 			dashboardID = 0 | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			queryResult, err := hs.DashboardService.GetDashboard(ctx, &query) | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 				return response.Error(http.StatusNotFound, "Dashboard not found", err) | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			dashboardID = queryResult.ID | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	dtoCmd.HomeDashboardID = dashboardID | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	saveCmd := pref.SavePreferenceCommand{ | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 		UserID:            userID, | 
					
						
							|  |  |  | 		OrgID:             orgID, | 
					
						
							|  |  |  | 		TeamID:            teamId, | 
					
						
							|  |  |  | 		Theme:             dtoCmd.Theme, | 
					
						
							|  |  |  | 		Language:          dtoCmd.Language, | 
					
						
							|  |  |  | 		Timezone:          dtoCmd.Timezone, | 
					
						
							|  |  |  | 		WeekStart:         dtoCmd.WeekStart, | 
					
						
							|  |  |  | 		HomeDashboardID:   dtoCmd.HomeDashboardID, | 
					
						
							|  |  |  | 		QueryHistory:      dtoCmd.QueryHistory, | 
					
						
							|  |  |  | 		CookiePreferences: dtoCmd.Cookies, | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	if err := hs.preferenceService.Save(ctx, &saveCmd); err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 		return response.ErrOrFallback(http.StatusInternalServerError, "Failed to save preferences", err) | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-15 21:43:20 +08:00
										 |  |  | 	return response.Success("Preferences updated") | 
					
						
							| 
									
										
										
										
											2016-04-03 04:54:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08:00
										 |  |  | // swagger:route PATCH /user/preferences user_preferences patchUserPreferences
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Patch user preferences.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Responses:
 | 
					
						
							|  |  |  | // 200: okResponse
 | 
					
						
							|  |  |  | // 400: badRequestError
 | 
					
						
							|  |  |  | // 401: unauthorisedError
 | 
					
						
							|  |  |  | // 500: internalServerError
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) PatchUserPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 	dtoCmd := dtos.PatchPrefsCmd{} | 
					
						
							|  |  |  | 	if err := web.Bind(c.Req, &dtoCmd); err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusBadRequest, "bad request data", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-08-11 19:28:55 +08:00
										 |  |  | 	return hs.patchPreferencesFor(c.Req.Context(), c.OrgID, c.UserID, 0, &dtoCmd) | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (hs *HTTPServer) patchPreferencesFor(ctx context.Context, orgID, userID, teamId int64, dtoCmd *dtos.PatchPrefsCmd) response.Response { | 
					
						
							| 
									
										
										
										
											2023-05-10 21:37:04 +08:00
										 |  |  | 	if dtoCmd.Theme != nil && !pref.IsValidThemeID(*dtoCmd.Theme) { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 		return response.Error(http.StatusBadRequest, "Invalid theme", nil) | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08: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 23:33:55 +08:00
										 |  |  | 		query := dashboards.GetDashboardQuery{UID: *dtoCmd.HomeDashboardUID, OrgID: orgID} | 
					
						
							|  |  |  | 		if query.UID == "" { | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			// clear the value
 | 
					
						
							|  |  |  | 			defaultDash := int64(0) | 
					
						
							|  |  |  | 			dashboardID = &defaultDash | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			queryResult, err := hs.DashboardService.GetDashboard(ctx, &query) | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 				return response.Error(http.StatusNotFound, "Dashboard not found", err) | 
					
						
							| 
									
										
										
										
											2022-08-27 00:40:40 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-01-25 17:36:26 +08:00
										 |  |  | 			dashboardID = &queryResult.ID | 
					
						
							| 
									
										
										
										
											2022-04-29 20:37:33 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	dtoCmd.HomeDashboardID = dashboardID | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	patchCmd := pref.PatchPreferenceCommand{ | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08: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 20:07:20 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-21 21:03:17 +08:00
										 |  |  | 	if err := hs.preferenceService.Patch(ctx, &patchCmd); err != nil { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:19:07 +08:00
										 |  |  | 		return response.ErrOrFallback(http.StatusInternalServerError, "Failed to save preferences", err) | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return response.Success("Preferences updated") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08: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 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) GetOrgPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2022-08-11 19:28:55 +08:00
										 |  |  | 	return hs.getPreferencesFor(c.Req.Context(), c.OrgID, 0, 0) | 
					
						
							| 
									
										
										
										
											2016-04-03 04:54:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08: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 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) UpdateOrgPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2021-11-29 17:18:01 +08: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 20:37:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-11 19:28:55 +08:00
										 |  |  | 	return hs.updatePreferencesFor(c.Req.Context(), c.OrgID, 0, 0, &dtoCmd) | 
					
						
							| 
									
										
										
										
											2016-04-02 08:34:30 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08: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 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) PatchOrgPreferences(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | 	dtoCmd := dtos.PatchPrefsCmd{} | 
					
						
							|  |  |  | 	if err := web.Bind(c.Req, &dtoCmd); err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusBadRequest, "bad request data", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-08-11 19:28:55 +08:00
										 |  |  | 	return hs.patchPreferencesFor(c.Req.Context(), c.OrgID, 0, 0, &dtoCmd) | 
					
						
							| 
									
										
										
										
											2022-03-17 20:07:20 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08: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-28 04:32:38 +08:00
										 |  |  | 	Body preferences.Spec `json:"body"` | 
					
						
							| 
									
										
										
										
											2022-07-27 21:54:37 +08: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"` | 
					
						
							|  |  |  | } |