aboutsummaryrefslogtreecommitdiffstats
path: root/services/mailer/mail.go
diff options
context:
space:
mode:
authorKN4CK3R <admin@oldschoolhack.me>2024-01-16 03:13:29 +0100
committerGitHub <noreply@github.com>2024-01-16 02:13:29 +0000
commit022552d5b6adc792d3cd16df7de6e52cb7b41a72 (patch)
tree4c709003d9d529475f563ff3997b7be874448052 /services/mailer/mail.go
parent376fa0d8c49ca8a290ebb328281a56af346f5785 (diff)
downloadgitea-022552d5b6adc792d3cd16df7de6e52cb7b41a72.tar.gz
gitea-022552d5b6adc792d3cd16df7de6e52cb7b41a72.zip
Rework markup link rendering (#26745) (#28803)
Backport #26745 Fixes #26548 This PR refactors the rendering of markup links. The old code uses `strings.Replace` to change some urls while the new code uses more context to decide which link should be generated. The added tests should ensure the same output for the old and new behaviour (besides the bug). We may need to refactor the rendering a bit more to make it clear how the different helper methods render the input string. There are lots of options (resolve links / images / mentions / git hashes / emojis / ...) but you don't really know what helper uses which options. For example, we currently support images in the user description which should not be allowed I think: <details> <summary>Profile</summary> https://try.gitea.io/KN4CK3R ![grafik](https://github.com/go-gitea/gitea/assets/1666336/109ae422-496d-4200-b52e-b3a528f553e5) </details>
Diffstat (limited to 'services/mailer/mail.go')
-rw-r--r--services/mailer/mail.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/services/mailer/mail.go b/services/mailer/mail.go
index 83f58bad0d..08b52687d1 100644
--- a/services/mailer/mail.go
+++ b/services/mailer/mail.go
@@ -220,9 +220,11 @@ func composeIssueCommentMessages(ctx *mailCommentContext, lang string, recipient
// This is the body of the new issue or comment, not the mail body
body, err := markdown.RenderString(&markup.RenderContext{
- Ctx: ctx,
- URLPrefix: ctx.Issue.Repo.HTMLURL(),
- Metas: ctx.Issue.Repo.ComposeMetas(),
+ Ctx: ctx,
+ Links: markup.Links{
+ Base: ctx.Issue.Repo.HTMLURL(),
+ },
+ Metas: ctx.Issue.Repo.ComposeMetas(),
}, ctx.Content)
if err != nil {
return nil, err