2020-04-05 11:50:50 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-11-04 04:15:16 +05:30
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"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
|
|
|
|
}
|
|
|
|
|
2016-11-04 04:15:16 +05:30
|
|
|
ec, err := ctx.Repo.GetEditorconfig()
|
|
|
|
|
|
|
|
if err != nil && !git.IsErrNotExist(err) {
|
|
|
|
description := fmt.Sprintf("Error while getting .editorconfig file: %v", err)
|
|
|
|
if err := models.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 (
|
2016-11-19 21:23:34 +05:30
|
|
|
userStyle = ctx.User.DiffViewStyle
|
|
|
|
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"
|
|
|
|
if err := ctx.User.UpdateDiffViewStyle(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) {
|
2021-08-11 06:01:13 +05:30
|
|
|
whitespaceBehavior := ctx.FormString("whitespace")
|
2018-08-14 23:19:33 +05:30
|
|
|
switch whitespaceBehavior {
|
|
|
|
case "ignore-all", "ignore-eol", "ignore-change":
|
|
|
|
ctx.Data["WhitespaceBehavior"] = whitespaceBehavior
|
|
|
|
default:
|
|
|
|
ctx.Data["WhitespaceBehavior"] = ""
|
|
|
|
}
|
|
|
|
}
|