From fd273b05b9513e4ac1b0d7b743acc3c3d36c905c Mon Sep 17 00:00:00 2001 From: Alexander Neumann <62751754+rtpt-alexanderneumann@users.noreply.github.com> Date: Sat, 26 Feb 2022 00:26:43 +0100 Subject: [PATCH] Correctly link URLs to users/repos with dashes, dots or underscores (#18890) * Add tests for references with dashes This commit adds tests for full URLs referencing repos names and user names containing a dash. * Extend regex to match URLs to repos/users with dashes --- modules/markup/html.go | 2 +- modules/markup/html_test.go | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/modules/markup/html.go b/modules/markup/html.go index df2a159230..758746ef87 100644 --- a/modules/markup/html.go +++ b/modules/markup/html.go @@ -99,7 +99,7 @@ var issueFullPatternOnce sync.Once func getIssueFullPattern() *regexp.Regexp { issueFullPatternOnce.Do(func() { issueFullPattern = regexp.MustCompile(regexp.QuoteMeta(setting.AppURL) + - `\w+/\w+/(?:issues|pulls)/((?:\w{1,10}-)?[1-9][0-9]*)([\?|#](\S+)?)?\b`) + `[\w_.-]+/[\w_.-]+/(?:issues|pulls)/((?:\w{1,10}-)?[1-9][0-9]*)([\?|#](\S+)?)?\b`) }) return issueFullPattern } diff --git a/modules/markup/html_test.go b/modules/markup/html_test.go index 29bf6c8fcb..f6aabc6272 100644 --- a/modules/markup/html_test.go +++ b/modules/markup/html_test.go @@ -97,6 +97,15 @@ func TestRender_CrossReferences(t *testing.T) { test( "/home/gitea/go-gitea/gitea#12345", `

/home/gitea/go-gitea/gitea#12345

`) + test( + util.URLJoin(TestAppURL, "gogitea", "gitea", "issues", "12345"), + `

gogitea/gitea#12345

`) + test( + util.URLJoin(TestAppURL, "go-gitea", "gitea", "issues", "12345"), + `

go-gitea/gitea#12345

`) + test( + util.URLJoin(TestAppURL, "gogitea", "some-repo-name", "issues", "12345"), + `

gogitea/some-repo-name#12345

`) } func TestMisc_IsSameDomain(t *testing.T) {