2022-04-15 09:42:07 +02:00
|
|
|
package clean
|
2021-12-15 12:24:05 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Name sanitizes and capitalizes names.
|
|
|
|
func Name(name string) string {
|
2021-12-16 15:26:54 +01:00
|
|
|
if name == "" || reject(name, txt.ClipDefault) {
|
2021-12-15 12:24:05 +01:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove double quotes and other special characters.
|
|
|
|
name = strings.Map(func(r rune) rune {
|
|
|
|
switch r {
|
2022-04-13 01:59:32 +02:00
|
|
|
case '"', '`', '~', '\\', '/', '*', '%', '_', '&', '|', '+', '=', '$', '@', '!', '?', ':', ';', '<', '>', '{', '}':
|
2021-12-15 12:24:05 +01:00
|
|
|
return -1
|
|
|
|
}
|
|
|
|
return r
|
|
|
|
}, name)
|
|
|
|
|
|
|
|
name = strings.TrimSpace(name)
|
|
|
|
|
|
|
|
if name == "" {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shorten and capitalize.
|
|
|
|
return txt.Clip(txt.Title(name), txt.ClipDefault)
|
|
|
|
}
|