mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 11:44:26 -06:00
a9faab6b09
* Add global week start option to shared preferences * Add default_week_start to configuration docs * Add week start option to dashboards * Add week start argument to tsdb time range parser * Fix strict check issues * Add tests for week start * Change wording on default_week_start documentation Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Update week_start column to be a nullable field Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com> * Update configuration to include browser option * Update WeekStartPicker container selector Co-authored-by: Hugo Häggmark <hugo.haggmark@grafana.com> * Add menuShouldPortal to WeekStartPicker to remove deprecation warning Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com> * Add inputId to WeekStartPicker * Use e2e selector on WeekStartPicker aria-label * Simplify WeekStartPicker onChange condition * Specify value type on WeekStartPicker weekStarts * Remove setWeekStart side effect from reducer * Fix updateLocale failing to reset week start * Store week start as string to handle empty values Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com> Co-authored-by: Hugo Häggmark <hugo.haggmark@grafana.com> Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com>
85 lines
2.5 KiB
Go
85 lines
2.5 KiB
Go
package api
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
)
|
|
|
|
const (
|
|
defaultTheme string = ""
|
|
darkTheme string = "dark"
|
|
lightTheme string = "light"
|
|
)
|
|
|
|
// POST /api/preferences/set-home-dash
|
|
func SetHomeDashboard(c *models.ReqContext, cmd models.SavePreferencesCommand) response.Response {
|
|
cmd.UserId = c.UserId
|
|
cmd.OrgId = c.OrgId
|
|
|
|
if err := bus.Dispatch(&cmd); err != nil {
|
|
return response.Error(500, "Failed to set home dashboard", err)
|
|
}
|
|
|
|
return response.Success("Home dashboard set")
|
|
}
|
|
|
|
// GET /api/user/preferences
|
|
func GetUserPreferences(c *models.ReqContext) response.Response {
|
|
return getPreferencesFor(c.OrgId, c.UserId, 0)
|
|
}
|
|
|
|
func getPreferencesFor(orgID, userID, teamID int64) response.Response {
|
|
prefsQuery := models.GetPreferencesQuery{UserId: userID, OrgId: orgID, TeamId: teamID}
|
|
|
|
if err := bus.Dispatch(&prefsQuery); err != nil {
|
|
return response.Error(500, "Failed to get preferences", err)
|
|
}
|
|
|
|
dto := dtos.Prefs{
|
|
Theme: prefsQuery.Result.Theme,
|
|
HomeDashboardID: prefsQuery.Result.HomeDashboardId,
|
|
Timezone: prefsQuery.Result.Timezone,
|
|
WeekStart: prefsQuery.Result.WeekStart,
|
|
}
|
|
|
|
return response.JSON(200, &dto)
|
|
}
|
|
|
|
// PUT /api/user/preferences
|
|
func UpdateUserPreferences(c *models.ReqContext, dtoCmd dtos.UpdatePrefsCmd) response.Response {
|
|
return updatePreferencesFor(c.OrgId, c.UserId, 0, &dtoCmd)
|
|
}
|
|
|
|
func updatePreferencesFor(orgID, userID, teamId int64, dtoCmd *dtos.UpdatePrefsCmd) response.Response {
|
|
if dtoCmd.Theme != lightTheme && dtoCmd.Theme != darkTheme && dtoCmd.Theme != defaultTheme {
|
|
return response.Error(400, "Invalid theme", nil)
|
|
}
|
|
saveCmd := models.SavePreferencesCommand{
|
|
UserId: userID,
|
|
OrgId: orgID,
|
|
TeamId: teamId,
|
|
Theme: dtoCmd.Theme,
|
|
Timezone: dtoCmd.Timezone,
|
|
WeekStart: dtoCmd.WeekStart,
|
|
HomeDashboardId: dtoCmd.HomeDashboardID,
|
|
}
|
|
|
|
if err := bus.Dispatch(&saveCmd); err != nil {
|
|
return response.Error(500, "Failed to save preferences", err)
|
|
}
|
|
|
|
return response.Success("Preferences updated")
|
|
}
|
|
|
|
// GET /api/org/preferences
|
|
func GetOrgPreferences(c *models.ReqContext) response.Response {
|
|
return getPreferencesFor(c.OrgId, 0, 0)
|
|
}
|
|
|
|
// PUT /api/org/preferences
|
|
func UpdateOrgPreferences(c *models.ReqContext, dtoCmd dtos.UpdatePrefsCmd) response.Response {
|
|
return updatePreferencesFor(c.OrgId, 0, 0, &dtoCmd)
|
|
}
|