mugit/internal/mdx/relative_link.go(view raw)
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
package mdx
import (
"bytes"
"fmt"
"net/url"
"path"
"path/filepath"
"regexp"
"strings"
"github.com/yuin/goldmark"
"github.com/yuin/goldmark/ast"
"github.com/yuin/goldmark/parser"
"github.com/yuin/goldmark/renderer"
"github.com/yuin/goldmark/text"
"github.com/yuin/goldmark/util"
)
var (
repoNameKey = parser.NewContextKey()
baseDirKey = parser.NewContextKey()
)
func NewRelativeLinkCtx(repoName, readmePath string) parser.ParseOption {
ctx := parser.NewContext()
ctx.Set(repoNameKey, repoName)
ctx.Set(baseDirKey, filepath.Dir(readmePath))
return parser.WithContext(ctx)
}
var RelativeLink = &relativeLink{}
type relativeLink struct{}
func (e *relativeLink) Extend(m goldmark.Markdown) {
m.Parser().AddOptions(
parser.WithASTTransformers(util.Prioritized(&relinkTransformer{}, 100)),
)
m.Renderer().AddOptions(
renderer.WithNodeRenderers(util.Prioritized(&rawBlockRenderer{}, 100)),
)
}
type rawBlock struct {
ast.BaseBlock
data []byte
}
var rawBlockKind = ast.NewNodeKind("RawBlock")
func (r *rawBlock) Kind() ast.NodeKind { return rawBlockKind }
func (r *rawBlock) Dump(_ []byte, _ int) {}
type rawBlockRenderer struct{}
func (r *rawBlockRenderer) RegisterFuncs(reg renderer.NodeRendererFuncRegisterer) {
reg.Register(rawBlockKind, func(w util.BufWriter, _ []byte, node ast.Node, entering bool) (ast.WalkStatus, error) {
if entering {
w.Write(node.(*rawBlock).data)
}
return ast.WalkContinue, nil
})
}
type relinkTransformer struct{}
func (t *relinkTransformer) Transform(node *ast.Document, reader text.Reader, pc parser.Context) {
repoName, _ := pc.Get(repoNameKey).(string)
baseDir, _ := pc.Get(baseDirKey).(string)
_ = ast.Walk(node, func(n ast.Node, entering bool) (ast.WalkStatus, error) {
if !entering {
return ast.WalkContinue, nil
}
switch v := n.(type) {
case *ast.Image:
if rewritten := t.rewriteDest(v.Destination, repoName, baseDir); rewritten != nil {
v.Destination = rewritten
}
case *ast.Link:
if rewritten := t.rewriteDest(v.Destination, repoName, baseDir); rewritten != nil {
v.Destination = rewritten
}
case *ast.RawHTML:
var buf []byte
for i := 0; i < v.Segments.Len(); i++ {
buf = append(buf, reader.Value(v.Segments.At(i))...)
}
updated := t.rewriteSrc(buf, repoName, baseDir)
if !bytes.Equal(updated, buf) {
str := ast.NewString(updated)
str.SetRaw(true)
n.Parent().ReplaceChild(n.Parent(), n, str)
}
case *ast.HTMLBlock:
var buf []byte
for i := 0; i < v.Lines().Len(); i++ {
buf = append(buf, reader.Value(v.Lines().At(i))...)
}
updated := t.rewriteSrc(buf, repoName, baseDir)
if !bytes.Equal(updated, buf) {
n.Parent().ReplaceChild(n.Parent(), n, &rawBlock{data: updated})
}
}
return ast.WalkContinue, nil
})
}
func (t *relinkTransformer) rewriteDest(dest []byte, repoName, baseDir string) []byte {
urlStr := string(dest)
if strings.HasPrefix(urlStr, "http://") ||
strings.HasPrefix(urlStr, "https://") ||
strings.HasPrefix(urlStr, "//") ||
strings.HasPrefix(urlStr, "#") ||
strings.HasPrefix(urlStr, "mailto:") ||
strings.HasPrefix(urlStr, "data:") {
return nil
}
urlStr = strings.TrimPrefix(urlStr, "./")
var absPath string
if after, ok := strings.CutPrefix(urlStr, "/"); ok {
absPath = after
} else {
if baseDir == "" || baseDir == "." {
absPath = urlStr
} else {
absPath = path.Join(baseDir, urlStr)
}
}
absPath = strings.TrimPrefix(path.Clean(absPath), "/")
// FIXME: hardcoded ref and link
return fmt.Appendf(nil, "/%s/blob/HEAD/%s?raw=true", url.PathEscape(repoName), absPath)
}
var imgSrcRe = regexp.MustCompile(`src="([^"]*)"`)
func (t *relinkTransformer) rewriteSrc(buf []byte, repoName, baseDir string) []byte {
return imgSrcRe.ReplaceAllFunc(buf, func(match []byte) []byte {
src := imgSrcRe.FindSubmatch(match)[1]
rewritten := t.rewriteDest(src, repoName, baseDir)
if rewritten == nil {
return match
}
return append([]byte(`src="`), append(rewritten, '"')...)
})
}
|