1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-02-05 21:50:12 +00:00

52 lines
1.9 KiB
Go
Raw Normal View History

package backlinks
import (
"git.sr.ht/~bouncepaw/mycomarkup/v5"
"git.sr.ht/~bouncepaw/mycomarkup/v5/links"
"git.sr.ht/~bouncepaw/mycomarkup/v5/mycocontext"
"git.sr.ht/~bouncepaw/mycomarkup/v5/tools"
"github.com/bouncepaw/mycorrhiza/hyphae"
2022-06-10 18:45:27 +03:00
"github.com/bouncepaw/mycorrhiza/mycoopts"
)
// UpdateBacklinksAfterEdit is a creation/editing hook for backlinks index
2022-02-19 11:26:38 +03:00
func UpdateBacklinksAfterEdit(h hyphae.Hypha, oldText string) {
2022-02-04 03:29:01 +05:00
oldLinks := extractHyphaLinksFromContent(h.CanonicalName(), oldText)
newLinks := extractHyphaLinks(h)
2022-02-04 03:29:01 +05:00
backlinkConveyor <- backlinkIndexEdit{h.CanonicalName(), oldLinks, newLinks}
}
// UpdateBacklinksAfterDelete is a deletion hook for backlinks index
2022-02-19 11:26:38 +03:00
func UpdateBacklinksAfterDelete(h hyphae.Hypha, oldText string) {
2022-02-04 03:29:01 +05:00
oldLinks := extractHyphaLinksFromContent(h.CanonicalName(), oldText)
backlinkConveyor <- backlinkIndexDeletion{h.CanonicalName(), oldLinks}
}
// UpdateBacklinksAfterRename is a renaming hook for backlinks index
2022-02-19 11:26:38 +03:00
func UpdateBacklinksAfterRename(h hyphae.Hypha, oldName string) {
actualLinks := extractHyphaLinks(h)
2022-02-04 03:29:01 +05:00
backlinkConveyor <- backlinkIndexRenaming{oldName, h.CanonicalName(), actualLinks}
}
// extractHyphaLinks extracts hypha links from a desired hypha
2022-02-19 11:26:38 +03:00
func extractHyphaLinks(h hyphae.Hypha) []string {
2022-02-04 03:29:01 +05:00
return extractHyphaLinksFromContent(h.CanonicalName(), fetchText(h))
}
// extractHyphaLinksFromContent extracts local hypha links from the provided text.
func extractHyphaLinksFromContent(hyphaName string, contents string) []string {
2022-06-10 18:45:27 +03:00
ctx, _ := mycocontext.ContextFromStringInput(contents, mycoopts.MarkupOptions(hyphaName))
linkVisitor, getLinks := tools.LinkVisitor(ctx)
// Ignore the result of BlockTree because we call it for linkVisitor.
_ = mycomarkup.BlockTree(ctx, linkVisitor)
foundLinks := getLinks()
var result []string
for _, link := range foundLinks {
switch link := link.(type) {
case *links.LocalLink:
result = append(result, link.Target(ctx))
}
}
return result
}