summaryrefslogtreecommitdiffstats
path: root/modules/git
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2022-11-23 00:52:57 +0000
committerGitHub <noreply@github.com>2022-11-23 08:52:57 +0800
commit4d42cbbcc2acbc81102a1abbcc6eec67b6802832 (patch)
tree67c00328dad99e20fb2ac181657271402d7427dd /modules/git
parentee21d5453f335e2530ba947e1896353d663525ad (diff)
downloadgitea-4d42cbbcc2acbc81102a1abbcc6eec67b6802832.tar.gz
gitea-4d42cbbcc2acbc81102a1abbcc6eec67b6802832.zip
Handle empty author names (#21902)
Although git does expect that author names should be of the form: `NAME <EMAIL>` some users have been able to create commits with: `<EMAIL>` Fix #21900 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'modules/git')
-rw-r--r--modules/git/signature_gogit.go5
-rw-r--r--modules/git/signature_nogogit.go5
2 files changed, 8 insertions, 2 deletions
diff --git a/modules/git/signature_gogit.go b/modules/git/signature_gogit.go
index 6f1c98420d..5ab38cd852 100644
--- a/modules/git/signature_gogit.go
+++ b/modules/git/signature_gogit.go
@@ -10,6 +10,7 @@ package git
import (
"bytes"
"strconv"
+ "strings"
"time"
"github.com/go-git/go-git/v5/plumbing/object"
@@ -30,7 +31,9 @@ type Signature = object.Signature
func newSignatureFromCommitline(line []byte) (_ *Signature, err error) {
sig := new(Signature)
emailStart := bytes.IndexByte(line, '<')
- sig.Name = string(line[:emailStart-1])
+ if emailStart > 0 { // Empty name has already occurred, even if it shouldn't
+ sig.Name = strings.TrimSpace(string(line[:emailStart-1]))
+ }
emailEnd := bytes.IndexByte(line, '>')
sig.Email = string(line[emailStart+1 : emailEnd])
diff --git a/modules/git/signature_nogogit.go b/modules/git/signature_nogogit.go
index 07a3b79f1e..3fa5c8da3e 100644
--- a/modules/git/signature_nogogit.go
+++ b/modules/git/signature_nogogit.go
@@ -11,6 +11,7 @@ import (
"bytes"
"fmt"
"strconv"
+ "strings"
"time"
)
@@ -51,7 +52,9 @@ func newSignatureFromCommitline(line []byte) (sig *Signature, err error) {
return
}
- sig.Name = string(line[:emailStart-1])
+ if emailStart > 0 { // Empty name has already occurred, even if it shouldn't
+ sig.Name = strings.TrimSpace(string(line[:emailStart-1]))
+ }
sig.Email = string(line[emailStart+1 : emailEnd])
hasTime := emailEnd+2 < len(line)