diff options
author | zeripath <art27@cantab.net> | 2021-07-25 03:59:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 03:59:27 +0100 |
commit | fd15fd4c67b22189a18765f888bb3f19e241acbe (patch) | |
tree | 56fd40a181097b3741de636179bb370c2a3ce448 /modules/util | |
parent | 4f23624b1674d87142c12ad8a868630c0d2e297f (diff) | |
download | gitea-fd15fd4c67b22189a18765f888bb3f19e241acbe.tar.gz gitea-fd15fd4c67b22189a18765f888bb3f19e241acbe.zip |
Handle too long PR titles correctly (#16517)
The CompareAndPullRequestPost handler for POST to /compare
incorrectly handles returning errors to the user. For a start
it does not set the necessary markers to switch SimpleMDE
but it also does not immediately return to the form.
This PR fixes this by setting the appropriate values, fixing
the templates and preventing the suggestion of a too long
title.
Fix #16507
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'modules/util')
-rw-r--r-- | modules/util/truncate.go | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/modules/util/truncate.go b/modules/util/truncate.go new file mode 100644 index 0000000000..8d0f630973 --- /dev/null +++ b/modules/util/truncate.go @@ -0,0 +1,35 @@ +// Copyright 2021 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. + +package util + +import "unicode/utf8" + +// SplitStringAtByteN splits a string at byte n accounting for rune boundaries. (Combining characters are not accounted for.) +func SplitStringAtByteN(input string, n int) (left, right string) { + if len(input) <= n { + left = input + return + } + + if !utf8.ValidString(input) { + left = input[:n-3] + "..." + right = "..." + input[n-3:] + return + } + + // in UTF8 "…" is 3 bytes so doesn't really gain us anything... + end := 0 + for end <= n-3 { + _, size := utf8.DecodeRuneInString(input[end:]) + if end+size > n-3 { + break + } + end += size + } + + left = input[:end] + "…" + right = "…" + input[end:] + return +} |