2020-04-05 11:50:50 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-04-05 11:50:50 +05:30
|
|
|
|
2016-11-04 04:15:16 +05:30
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2022-10-17 04:59:26 +05:30
|
|
|
system_model "code.gitea.io/gitea/models/system"
|
2021-11-24 15:19:20 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 15:03:00 +05:30
|
|
|
"code.gitea.io/gitea/modules/git"
|
2016-11-04 04:15:16 +05:30
|
|
|
)
|
|
|
|
|
2016-11-21 15:33:37 +05:30
|
|
|
// SetEditorconfigIfExists set editor config as render variable
|
2016-11-05 21:28:53 +05:30
|
|
|
func SetEditorconfigIfExists(ctx *context.Context) {
|
2019-11-15 16:23:20 +05:30
|
|
|
if ctx.Repo.Repository.IsEmpty {
|
|
|
|
ctx.Data["Editorconfig"] = nil
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-07 01:31:20 +05:30
|
|
|
ec, _, err := ctx.Repo.GetEditorconfig()
|
2016-11-04 04:15:16 +05:30
|
|
|
|
|
|
|
if err != nil && !git.IsErrNotExist(err) {
|
|
|
|
description := fmt.Sprintf("Error while getting .editorconfig file: %v", err)
|
2022-10-17 04:59:26 +05:30
|
|
|
if err := system_model.CreateRepositoryNotice(description); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("ErrCreatingReporitoryNotice", err)
|
2016-11-04 04:15:16 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Editorconfig"] = ec
|
|
|
|
}
|
2016-11-13 08:24:04 +05:30
|
|
|
|
2016-11-21 15:33:37 +05:30
|
|
|
// SetDiffViewStyle set diff style as render variable
|
2016-11-13 08:24:04 +05:30
|
|
|
func SetDiffViewStyle(ctx *context.Context) {
|
2021-08-11 06:01:13 +05:30
|
|
|
queryStyle := ctx.FormString("style")
|
2016-11-19 21:23:34 +05:30
|
|
|
|
2016-11-19 17:13:10 +05:30
|
|
|
if !ctx.IsSigned {
|
2016-11-19 21:23:34 +05:30
|
|
|
ctx.Data["IsSplitStyle"] = queryStyle == "split"
|
2016-11-19 17:13:10 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-13 08:24:04 +05:30
|
|
|
var (
|
2022-03-22 12:33:22 +05:30
|
|
|
userStyle = ctx.Doer.DiffViewStyle
|
2016-11-19 21:23:34 +05:30
|
|
|
style string
|
2016-11-13 08:24:04 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
if queryStyle == "unified" || queryStyle == "split" {
|
|
|
|
style = queryStyle
|
|
|
|
} else if userStyle == "unified" || userStyle == "split" {
|
|
|
|
style = userStyle
|
|
|
|
} else {
|
|
|
|
style = "unified"
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["IsSplitStyle"] = style == "split"
|
2022-03-22 12:33:22 +05:30
|
|
|
if err := user_model.UpdateUserDiffViewStyle(ctx.Doer, style); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("ErrUpdateDiffViewStyle", err)
|
2016-11-13 08:24:04 +05:30
|
|
|
}
|
|
|
|
}
|
2018-08-14 23:19:33 +05:30
|
|
|
|
|
|
|
// SetWhitespaceBehavior set whitespace behavior as render variable
|
|
|
|
func SetWhitespaceBehavior(ctx *context.Context) {
|
2022-02-08 11:45:04 +05:30
|
|
|
const defaultWhitespaceBehavior = "show-all"
|
2021-08-11 06:01:13 +05:30
|
|
|
whitespaceBehavior := ctx.FormString("whitespace")
|
2018-08-14 23:19:33 +05:30
|
|
|
switch whitespaceBehavior {
|
2022-02-08 11:45:04 +05:30
|
|
|
case "", "ignore-all", "ignore-eol", "ignore-change":
|
|
|
|
break
|
2018-08-14 23:19:33 +05:30
|
|
|
default:
|
2022-02-08 11:45:04 +05:30
|
|
|
whitespaceBehavior = defaultWhitespaceBehavior
|
|
|
|
}
|
|
|
|
if ctx.IsSigned {
|
2022-03-22 12:33:22 +05:30
|
|
|
userWhitespaceBehavior, err := user_model.GetUserSetting(ctx.Doer.ID, user_model.SettingsKeyDiffWhitespaceBehavior, defaultWhitespaceBehavior)
|
2022-02-08 11:45:04 +05:30
|
|
|
if err == nil {
|
|
|
|
if whitespaceBehavior == "" {
|
|
|
|
whitespaceBehavior = userWhitespaceBehavior
|
|
|
|
} else if whitespaceBehavior != userWhitespaceBehavior {
|
2022-03-22 12:33:22 +05:30
|
|
|
_ = user_model.SetUserSetting(ctx.Doer.ID, user_model.SettingsKeyDiffWhitespaceBehavior, whitespaceBehavior)
|
2022-02-08 11:45:04 +05:30
|
|
|
}
|
|
|
|
} // 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 23:19:33 +05:30
|
|
|
}
|
|
|
|
}
|