mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
16 lines
527 B
Go
16 lines
527 B
Go
package config
|
|
|
|
// ExifBruteForce checks if a brute-force search should be performed when no Exif headers were found.
|
|
func (c *Config) ExifBruteForce() bool {
|
|
return c.options.ExifBruteForce || !c.ExifToolJson()
|
|
}
|
|
|
|
// ExifToolBin returns the exiftool executable file name.
|
|
func (c *Config) ExifToolBin() string {
|
|
return FindBin(c.options.ExifToolBin, "exiftool")
|
|
}
|
|
|
|
// ExifToolJson checks if creating JSON metadata sidecar files with Exiftool is enabled.
|
|
func (c *Config) ExifToolJson() bool {
|
|
return !c.DisableExifTool()
|
|
}
|