mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-11 16:24:11 +01:00
169 lines
3.3 KiB
Go
169 lines
3.3 KiB
Go
package clean
|
|
|
|
import (
|
|
"strings"
|
|
"unicode"
|
|
|
|
"github.com/photoprism/photoprism/pkg/txt/clip"
|
|
)
|
|
|
|
// Type omits invalid runes, ensures a maximum length of 64 characters, and returns the result.
|
|
func Type(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
return clip.Chars(ASCII(s), LengthType)
|
|
}
|
|
|
|
// TypeUnicode removes unsafe runes, collapses whitespace, and enforces the
|
|
// maximum type length while preserving non-ASCII characters when possible.
|
|
func TypeUnicode(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
buf := make([]rune, 0, len([]rune(s)))
|
|
lastWasSpace := false
|
|
|
|
for _, r := range s {
|
|
if len(buf) >= LengthType {
|
|
break
|
|
}
|
|
|
|
if unicode.IsSpace(r) {
|
|
if len(buf) == 0 || lastWasSpace {
|
|
continue
|
|
}
|
|
buf = append(buf, ' ')
|
|
lastWasSpace = true
|
|
continue
|
|
}
|
|
|
|
if r <= 31 {
|
|
continue
|
|
}
|
|
|
|
switch r {
|
|
case '`', '\\', '|', '"', '\'', '?', '*', '<', '>', '{', '}':
|
|
continue
|
|
}
|
|
|
|
buf = append(buf, r)
|
|
lastWasSpace = false
|
|
}
|
|
|
|
for len(buf) > 0 && unicode.IsSpace(buf[len(buf)-1]) {
|
|
buf = buf[:len(buf)-1]
|
|
}
|
|
|
|
return string(buf)
|
|
}
|
|
|
|
// TypeUnderscore replaces whitespace, dividers, quotes, brackets, and other special characters with an underscore.
|
|
func TypeUnderscore(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
s = strings.Map(func(r rune) rune {
|
|
if unicode.IsSpace(r) {
|
|
return '_'
|
|
}
|
|
|
|
switch r {
|
|
case '-', '`', '~', '\\', '|', '"', '\'', '?', '*', '<', '>', '{', '}':
|
|
return '_'
|
|
default:
|
|
return r
|
|
}
|
|
}, s)
|
|
|
|
return s
|
|
}
|
|
|
|
// TypeDash replaces whitespace, dividers, quotes, brackets, and other special characters with a dash.
|
|
func TypeDash(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
s = strings.Map(func(r rune) rune {
|
|
if unicode.IsSpace(r) {
|
|
return '-'
|
|
}
|
|
|
|
switch r {
|
|
case '_', '`', '~', '\\', '|', '"', '\'', '?', '*', '<', '>', '{', '}':
|
|
return '-'
|
|
default:
|
|
return r
|
|
}
|
|
}, s)
|
|
|
|
return s
|
|
}
|
|
|
|
// TypeLower converts a type string to lowercase, omits invalid runes, and shortens it if needed.
|
|
func TypeLower(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
return Type(strings.ToLower(s))
|
|
}
|
|
|
|
// TypeLowerUnderscore converts a string to a lowercase type string and replaces spaces with underscores.
|
|
func TypeLowerUnderscore(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
return TypeUnderscore(TypeLower(s))
|
|
}
|
|
|
|
// TypeLowerDash converts a string to a lowercase type string and replaces spaces with dashes.
|
|
func TypeLowerDash(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
return TypeDash(TypeLower(s))
|
|
}
|
|
|
|
// ShortType omits invalid runes, ensures a maximum length of 8 characters, and returns the result.
|
|
func ShortType(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
return clip.Chars(ASCII(s), LengthShortType)
|
|
}
|
|
|
|
// ShortTypeLower converts a short type string to lowercase, omits invalid runes, and shortens it if needed.
|
|
func ShortTypeLower(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
return ShortType(strings.ToLower(s))
|
|
}
|
|
|
|
// ShortTypeLowerUnderscore converts a string to a short lowercase type string and replaces spaces with underscores.
|
|
func ShortTypeLowerUnderscore(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
return TypeUnderscore(ShortTypeLower(s))
|
|
}
|
|
|
|
// ShortTypeLowerDash converts a string to a short lowercase type string and replaces spaces with dashes.
|
|
func ShortTypeLowerDash(s string) string {
|
|
if s == "" {
|
|
return s
|
|
}
|
|
|
|
return TypeDash(ShortTypeLower(s))
|
|
}
|