2020-04-05 00:20:50 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-04-05 00:20:50 -06:00
|
|
|
|
2016-11-03 16:45:16 -06:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2023-06-21 10:08:12 -06:00
|
|
|
"strconv"
|
2016-11-03 16:45:16 -06:00
|
|
|
|
2022-10-16 17:29:26 -06:00
|
|
|
system_model "code.gitea.io/gitea/models/system"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2019-03-27 03:33:00 -06:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2024-02-04 06:29:09 -07:00
|
|
|
"code.gitea.io/gitea/modules/optional"
|
2024-02-27 00:12:22 -07:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2024-02-04 06:29:09 -07:00
|
|
|
user_service "code.gitea.io/gitea/services/user"
|
2016-11-03 16:45:16 -06:00
|
|
|
)
|
|
|
|
|
2016-11-21 03:03:37 -07:00
|
|
|
// SetEditorconfigIfExists set editor config as render variable
|
2016-11-05 09:58:53 -06:00
|
|
|
func SetEditorconfigIfExists(ctx *context.Context) {
|
2019-11-15 03:53:20 -07:00
|
|
|
if ctx.Repo.Repository.IsEmpty {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-06 14:01:20 -06:00
|
|
|
ec, _, err := ctx.Repo.GetEditorconfig()
|
2016-11-03 16:45:16 -06:00
|
|
|
|
|
|
|
if err != nil && !git.IsErrNotExist(err) {
|
|
|
|
description := fmt.Sprintf("Error while getting .editorconfig file: %v", err)
|
2022-10-16 17:29:26 -06:00
|
|
|
if err := system_model.CreateRepositoryNotice(description); err != nil {
|
2018-01-10 14:34:17 -07:00
|
|
|
ctx.ServerError("ErrCreatingReporitoryNotice", err)
|
2016-11-03 16:45:16 -06:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Editorconfig"] = ec
|
|
|
|
}
|
2016-11-12 19:54:04 -07:00
|
|
|
|
2016-11-21 03:03:37 -07:00
|
|
|
// SetDiffViewStyle set diff style as render variable
|
2016-11-12 19:54:04 -07:00
|
|
|
func SetDiffViewStyle(ctx *context.Context) {
|
2021-08-10 18:31:13 -06:00
|
|
|
queryStyle := ctx.FormString("style")
|
2016-11-19 08:53:34 -07:00
|
|
|
|
2016-11-19 04:43:10 -07:00
|
|
|
if !ctx.IsSigned {
|
2016-11-19 08:53:34 -07:00
|
|
|
ctx.Data["IsSplitStyle"] = queryStyle == "split"
|
2016-11-19 04:43:10 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-12 19:54:04 -07:00
|
|
|
var (
|
2022-03-22 01:03:22 -06:00
|
|
|
userStyle = ctx.Doer.DiffViewStyle
|
2016-11-19 08:53:34 -07:00
|
|
|
style string
|
2016-11-12 19:54:04 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
if queryStyle == "unified" || queryStyle == "split" {
|
|
|
|
style = queryStyle
|
|
|
|
} else if userStyle == "unified" || userStyle == "split" {
|
|
|
|
style = userStyle
|
|
|
|
} else {
|
|
|
|
style = "unified"
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["IsSplitStyle"] = style == "split"
|
2024-02-04 06:29:09 -07:00
|
|
|
|
|
|
|
opts := &user_service.UpdateOptions{
|
|
|
|
DiffViewStyle: optional.Some(style),
|
|
|
|
}
|
|
|
|
if err := user_service.UpdateUser(ctx, ctx.Doer, opts); err != nil {
|
|
|
|
ctx.ServerError("UpdateUser", err)
|
2016-11-12 19:54:04 -07:00
|
|
|
}
|
|
|
|
}
|
2018-08-14 11:49:33 -06:00
|
|
|
|
|
|
|
// SetWhitespaceBehavior set whitespace behavior as render variable
|
|
|
|
func SetWhitespaceBehavior(ctx *context.Context) {
|
2022-02-07 23:15:04 -07:00
|
|
|
const defaultWhitespaceBehavior = "show-all"
|
2021-08-10 18:31:13 -06:00
|
|
|
whitespaceBehavior := ctx.FormString("whitespace")
|
2018-08-14 11:49:33 -06:00
|
|
|
switch whitespaceBehavior {
|
2022-02-07 23:15:04 -07:00
|
|
|
case "", "ignore-all", "ignore-eol", "ignore-change":
|
|
|
|
break
|
2018-08-14 11:49:33 -06:00
|
|
|
default:
|
2022-02-07 23:15:04 -07:00
|
|
|
whitespaceBehavior = defaultWhitespaceBehavior
|
|
|
|
}
|
|
|
|
if ctx.IsSigned {
|
2023-09-15 00:13:19 -06:00
|
|
|
userWhitespaceBehavior, err := user_model.GetUserSetting(ctx, ctx.Doer.ID, user_model.SettingsKeyDiffWhitespaceBehavior, defaultWhitespaceBehavior)
|
2022-02-07 23:15:04 -07:00
|
|
|
if err == nil {
|
|
|
|
if whitespaceBehavior == "" {
|
|
|
|
whitespaceBehavior = userWhitespaceBehavior
|
|
|
|
} else if whitespaceBehavior != userWhitespaceBehavior {
|
2023-09-15 00:13:19 -06:00
|
|
|
_ = user_model.SetUserSetting(ctx, ctx.Doer.ID, user_model.SettingsKeyDiffWhitespaceBehavior, whitespaceBehavior)
|
2022-02-07 23:15:04 -07:00
|
|
|
}
|
|
|
|
} // else: we can ignore the error safely
|
|
|
|
}
|
|
|
|
|
|
|
|
// these behaviors are for gitdiff.GetWhitespaceFlag
|
|
|
|
if whitespaceBehavior == "" {
|
|
|
|
ctx.Data["WhitespaceBehavior"] = defaultWhitespaceBehavior
|
|
|
|
} else {
|
|
|
|
ctx.Data["WhitespaceBehavior"] = whitespaceBehavior
|
2018-08-14 11:49:33 -06:00
|
|
|
}
|
|
|
|
}
|
2023-06-21 10:08:12 -06:00
|
|
|
|
|
|
|
// SetShowOutdatedComments set the show outdated comments option as context variable
|
|
|
|
func SetShowOutdatedComments(ctx *context.Context) {
|
|
|
|
showOutdatedCommentsValue := ctx.FormString("show-outdated")
|
|
|
|
if showOutdatedCommentsValue != "true" && showOutdatedCommentsValue != "false" {
|
|
|
|
// invalid or no value for this form string -> use default or stored user setting
|
2024-02-07 18:50:48 -07:00
|
|
|
showOutdatedCommentsValue = "true"
|
2023-06-21 10:08:12 -06:00
|
|
|
if ctx.IsSigned {
|
2024-02-07 18:50:48 -07:00
|
|
|
showOutdatedCommentsValue, _ = user_model.GetUserSetting(ctx, ctx.Doer.ID, user_model.SettingsKeyShowOutdatedComments, showOutdatedCommentsValue)
|
2023-06-21 10:08:12 -06:00
|
|
|
}
|
2024-02-07 18:50:48 -07:00
|
|
|
} else if ctx.IsSigned {
|
2023-06-21 10:08:12 -06:00
|
|
|
// valid value -> update user setting if user is logged in
|
2024-02-07 18:50:48 -07:00
|
|
|
_ = user_model.SetUserSetting(ctx, ctx.Doer.ID, user_model.SettingsKeyShowOutdatedComments, showOutdatedCommentsValue)
|
2023-06-21 10:08:12 -06:00
|
|
|
}
|
2024-02-07 18:50:48 -07:00
|
|
|
ctx.Data["ShowOutdatedComments"], _ = strconv.ParseBool(showOutdatedCommentsValue)
|
2023-06-21 10:08:12 -06:00
|
|
|
}
|