photoprism/pkg/projection/find.go
Michael Mayer 92e6c4fe1e Download: Add Disabled, Originals, MediaRaw & MediaSidecar Flags #2234
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)
2022-04-15 09:42:07 +02:00

21 lines
351 B
Go

package projection
import (
"github.com/photoprism/photoprism/pkg/clean"
)
// Find returns the project matching the name.
func Find(name string) Type {
if name == "" {
return Unknown
}
// Find known type based on the normalized name.
if result, found := Types[clean.TypeLower(name)]; found {
return result
}
// Default.
return Other
}