mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
a35749893b
Addition to #22256 The `convert` package relies heavily on different models which is [disallowed by our definition of modules](https://github.com/go-gitea/gitea/blob/main/CONTRIBUTING.md#design-guideline). This helps to prevent possible import cycles. Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
83 lines
2.0 KiB
Go
83 lines
2.0 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package user
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
"code.gitea.io/gitea/modules/context"
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
"code.gitea.io/gitea/modules/web"
|
|
"code.gitea.io/gitea/services/convert"
|
|
)
|
|
|
|
// GetUserSettings returns user settings
|
|
func GetUserSettings(ctx *context.APIContext) {
|
|
// swagger:operation GET /user/settings user getUserSettings
|
|
// ---
|
|
// summary: Get user settings
|
|
// produces:
|
|
// - application/json
|
|
// responses:
|
|
// "200":
|
|
// "$ref": "#/responses/UserSettings"
|
|
ctx.JSON(http.StatusOK, convert.User2UserSettings(ctx.Doer))
|
|
}
|
|
|
|
// UpdateUserSettings returns user settings
|
|
func UpdateUserSettings(ctx *context.APIContext) {
|
|
// swagger:operation PATCH /user/settings user updateUserSettings
|
|
// ---
|
|
// summary: Update user settings
|
|
// parameters:
|
|
// - name: body
|
|
// in: body
|
|
// schema:
|
|
// "$ref": "#/definitions/UserSettingsOptions"
|
|
// produces:
|
|
// - application/json
|
|
// responses:
|
|
// "200":
|
|
// "$ref": "#/responses/UserSettings"
|
|
|
|
form := web.GetForm(ctx).(*api.UserSettingsOptions)
|
|
|
|
if form.FullName != nil {
|
|
ctx.Doer.FullName = *form.FullName
|
|
}
|
|
if form.Description != nil {
|
|
ctx.Doer.Description = *form.Description
|
|
}
|
|
if form.Website != nil {
|
|
ctx.Doer.Website = *form.Website
|
|
}
|
|
if form.Location != nil {
|
|
ctx.Doer.Location = *form.Location
|
|
}
|
|
if form.Language != nil {
|
|
ctx.Doer.Language = *form.Language
|
|
}
|
|
if form.Theme != nil {
|
|
ctx.Doer.Theme = *form.Theme
|
|
}
|
|
if form.DiffViewStyle != nil {
|
|
ctx.Doer.DiffViewStyle = *form.DiffViewStyle
|
|
}
|
|
|
|
if form.HideEmail != nil {
|
|
ctx.Doer.KeepEmailPrivate = *form.HideEmail
|
|
}
|
|
if form.HideActivity != nil {
|
|
ctx.Doer.KeepActivityPrivate = *form.HideActivity
|
|
}
|
|
|
|
if err := user_model.UpdateUser(ctx, ctx.Doer, false); err != nil {
|
|
ctx.InternalServerError(err)
|
|
return
|
|
}
|
|
|
|
ctx.JSON(http.StatusOK, convert.User2UserSettings(ctx.Doer))
|
|
}
|