mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
2010fbe060
Fix #31395 This regression is introduced by #30273. To find out how GitHub handles this case, I did [some tests](https://github.com/go-gitea/gitea/issues/31395#issuecomment-2278929115). I use redirect in this PR instead of checking if the corresponding `.md` file exists when rendering the link because GitHub also uses redirect. With this PR, there is no need to resolve the raw wiki link when rendering a wiki page. If a wiki link points to a raw file, access will be redirected to the raw link.
30 lines
1.2 KiB
Go
30 lines
1.2 KiB
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package markup
|
|
|
|
import (
|
|
"code.gitea.io/gitea/modules/util"
|
|
)
|
|
|
|
func ResolveLink(ctx *RenderContext, link, userContentAnchorPrefix string) (result string, resolved bool) {
|
|
isAnchorFragment := link != "" && link[0] == '#'
|
|
if !isAnchorFragment && !IsFullURLString(link) {
|
|
linkBase := ctx.Links.Base
|
|
if ctx.IsWiki {
|
|
// no need to check if the link should be resolved as a wiki link or a wiki raw link
|
|
// just use wiki link here and it will be redirected to a wiki raw link if necessary
|
|
linkBase = ctx.Links.WikiLink()
|
|
} else if ctx.Links.BranchPath != "" || ctx.Links.TreePath != "" {
|
|
// if there is no BranchPath, then the link will be something like "/owner/repo/src/{the-file-path}"
|
|
// and then this link will be handled by the "legacy-ref" code and be redirected to the default branch like "/owner/repo/src/branch/main/{the-file-path}"
|
|
linkBase = ctx.Links.SrcLink()
|
|
}
|
|
link, resolved = util.URLJoin(linkBase, link), true
|
|
}
|
|
if isAnchorFragment && userContentAnchorPrefix != "" {
|
|
link, resolved = userContentAnchorPrefix+link[1:], true
|
|
}
|
|
return link, resolved
|
|
}
|