Add funcs PostTitle, GetSlug, GetSlugFromPost

This commit is contained in:
Matt Baer
2023-04-04 12:09:49 -04:00
parent b5516d22e1
commit 9e2b7620b1
2 changed files with 46 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ require (
github.com/microcosm-cc/bluemonday v1.0.5 github.com/microcosm-cc/bluemonday v1.0.5
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be // indirect github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/writeas/go-strip-markdown v2.0.1+incompatible github.com/writeas/go-strip-markdown/v2 v2.1.1
github.com/writeas/impart v1.1.1 github.com/writeas/impart v1.1.1
github.com/writeas/openssl-go v1.0.0 github.com/writeas/openssl-go v1.0.0
github.com/writeas/saturday v1.7.1 github.com/writeas/saturday v1.7.1
+45 -1
View File
@@ -2,7 +2,8 @@ package posts
import ( import (
"fmt" "fmt"
stripmd "github.com/writeas/go-strip-markdown" stripmd "github.com/writeas/go-strip-markdown/v2"
"github.com/writeas/slug"
"github.com/writeas/web-core/stringmanip" "github.com/writeas/web-core/stringmanip"
"regexp" "regexp"
"strings" "strings"
@@ -37,6 +38,20 @@ func ExtractTitle(content string) (title string, body string) {
return return
} }
func PostTitle(content, friendlyId string) string {
content = StripHTMLWithoutEscaping(content)
content = strings.TrimLeftFunc(stripmd.Strip(content), unicode.IsSpace)
eol := strings.IndexRune(content, '\n')
blankLine := strings.Index(content, "\n\n")
if blankLine != -1 && blankLine <= eol && blankLine <= assumedTitleLen {
return strings.TrimSpace(content[:blankLine])
} else if utf8.RuneCountInString(content) <= maxTitleLen {
return content
}
return friendlyId
}
func FriendlyPostTitle(content, friendlyId string) string { func FriendlyPostTitle(content, friendlyId string) string {
content = StripHTMLWithoutEscaping(content) content = StripHTMLWithoutEscaping(content)
@@ -163,3 +178,32 @@ func PostLede(t string, includePunc bool) string {
return t return t
} }
func GetSlug(title, lang string) string {
return GetSlugFromPost("", title, lang)
}
func GetSlugFromPost(title, body, lang string) string {
if title == "" {
// Remove Markdown, so e.g. link URLs and image alt text don't make it into the slug
body = strings.TrimSpace(stripmd.StripOptions(body, stripmd.Options{SkipImages: true}))
title = PostTitle(body, body)
}
title = PostLede(title, false)
// Truncate lede if needed
title, _ = TruncToWord(title, maxTitleLen)
var s string
if lang != "" && len(lang) == 2 {
s = slug.MakeLang(title, lang)
} else {
s = slug.Make(title)
}
// Transliteration may cause the slug to expand past the limit, so truncate again
s, _ = TruncToWord(s, maxTitleLen)
return strings.TrimFunc(s, func(r rune) bool {
// TruncToWord doesn't respect words in a slug, since spaces are replaced
// with hyphens. So remove any trailing hyphens.
return r == '-'
})
}