Browse Source
заодно отрефакторил, вынес общий код в отдельный служебный слой. Чтобы избежать дублирования и переиспользовать код.pull/150/head
Artur Galyamov
2 years ago
5 changed files with 88 additions and 36 deletions
@ -0,0 +1,58 @@ |
|||||||
|
package trust_props |
||||||
|
|
||||||
|
import ( |
||||||
|
repo_model "code.gitea.io/gitea/models/repo" |
||||||
|
"code.gitea.io/gitea/modules/context" |
||||||
|
"code.gitea.io/gitea/modules/markup" |
||||||
|
"code.gitea.io/gitea/modules/markup/markdown" |
||||||
|
"reflect" |
||||||
|
"regexp" |
||||||
|
"strings" |
||||||
|
) |
||||||
|
|
||||||
|
func SaveRepoAndRenderContent(ctx *context.Context, colName string) (string, error) { |
||||||
|
repo := ctx.Repo.Repository |
||||||
|
toggledContent := ctx.FormString("content") |
||||||
|
|
||||||
|
content, err := markdown.RenderString(&markup.RenderContext{ |
||||||
|
URLPrefix: ctx.FormString("context"), // FIXME: <- IS THIS SAFE ?
|
||||||
|
Metas: ctx.Repo.Repository.ComposeMetas(), |
||||||
|
GitRepo: ctx.Repo.GitRepo, |
||||||
|
Ctx: ctx, |
||||||
|
}, toggledContent) |
||||||
|
if err != nil { |
||||||
|
return "", err |
||||||
|
} |
||||||
|
|
||||||
|
trimmedToggledContent, err := trimSearchLinks(toggledContent) |
||||||
|
if err != nil { |
||||||
|
return "", err |
||||||
|
} |
||||||
|
fieldName := upCase(colName) |
||||||
|
reflectedRepo := reflect.ValueOf(repo) |
||||||
|
reflectedRepo.Elem().FieldByName(fieldName).SetString(trimmedToggledContent) |
||||||
|
err = repo_model.UpdateRepositoryCols(repo, colName) |
||||||
|
if err != nil { |
||||||
|
return "", err |
||||||
|
} |
||||||
|
|
||||||
|
return content, nil |
||||||
|
} |
||||||
|
|
||||||
|
func trimSearchLinks(content string) (string, error) { |
||||||
|
regExp, err := regexp.Compile(`\s*\[найти\]\(.+\s*\)`) |
||||||
|
if err != nil { |
||||||
|
return "", err |
||||||
|
} |
||||||
|
trimmedSearchLink := regExp.ReplaceAllString(content, "") |
||||||
|
return trimmedSearchLink, nil |
||||||
|
} |
||||||
|
|
||||||
|
func upCase(str string) string { |
||||||
|
ch := rune(str[0]) |
||||||
|
ch -= 'a' - 'A' |
||||||
|
var upCasedSB strings.Builder |
||||||
|
upCasedSB.WriteRune(ch) |
||||||
|
upCasedSB.WriteString(str[1:]) |
||||||
|
return upCasedSB.String() |
||||||
|
} |
Loading…
Reference in new issue