summaryrefslogtreecommitdiffstats
path: root/modules/markup/markdown/transform_link.go
blob: e6f38364125102f834a704a5d6e8b9f9d0c86b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package markdown

import (
	"bytes"
	"slices"

	"code.gitea.io/gitea/modules/markup"
	"code.gitea.io/gitea/modules/setting"
	giteautil "code.gitea.io/gitea/modules/util"

	"github.com/yuin/goldmark/ast"
)

func (g *ASTTransformer) transformLink(ctx *markup.RenderContext, v *ast.Link) {
	// Links need their href to munged to be a real value
	link := v.Destination

	// Do not process the link if it's not a link, starts with an hashtag
	// (indicating it's an anchor link), starts with `mailto:` or any of the
	// custom markdown URLs.
	processLink := len(link) > 0 && !markup.IsLink(link) &&
		link[0] != '#' && !bytes.HasPrefix(link, byteMailto) &&
		!slices.ContainsFunc(setting.Markdown.CustomURLSchemes, func(s string) bool {
			return bytes.HasPrefix(link, []byte(s+":"))
		})

	if processLink {
		var base string
		if ctx.IsWiki {
			base = ctx.Links.WikiLink()
		} else if ctx.Links.HasBranchInfo() {
			base = ctx.Links.SrcLink()
		} else {
			base = ctx.Links.Base
		}

		link = []byte(giteautil.URLJoin(base, string(link)))
	}
	if len(link) > 0 && link[0] == '#' {
		link = []byte("#user-content-" + string(link)[1:])
	}
	v.Destination = link
}