92e6c4fe1e
Extends DownloadSettings with 4 additional options: - Name: File name pattern for downloaded files (existed) - Disabled: Disables downloads - Originals: Only download files stored in "originals" folder - MediaRaw: Include RAW image files - MediaSidecar: Include metadata sidecar files (JSON, XMP, YAML)
18 lines
310 B
Go
18 lines
310 B
Go
package clean
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
)
|
|
|
|
// Username returns the normalized username (lowercase, whitespace trimmed).
|
|
func Username(s string) string {
|
|
s = strings.TrimSpace(s)
|
|
|
|
if s == "" || reject(s, txt.ClipUsername) {
|
|
return ""
|
|
}
|
|
|
|
return strings.ToLower(s)
|
|
}
|