43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package config
|
|
|
|
// DisableBackups tests if photo and album metadata backups should be disabled.
|
|
func (c *Config) DisableBackups() bool {
|
|
if !c.SidecarWritable() {
|
|
return true
|
|
}
|
|
|
|
return c.options.DisableBackups
|
|
}
|
|
|
|
// DisableWebDAV tests if the built-in WebDAV server should be disabled.
|
|
func (c *Config) DisableWebDAV() bool {
|
|
if c.ReadOnly() || c.Demo() {
|
|
return true
|
|
}
|
|
|
|
return c.options.DisableWebDAV
|
|
}
|
|
|
|
// DisableSettings tests if users should not be allowed to change settings.
|
|
func (c *Config) DisableSettings() bool {
|
|
return c.options.DisableSettings
|
|
}
|
|
|
|
// DisablePlaces tests if geocoding and maps should be disabled.
|
|
func (c *Config) DisablePlaces() bool {
|
|
return c.options.DisablePlaces
|
|
}
|
|
|
|
// DisableExifTool tests if ExifTool JSON files should not be created for improved metadata extraction.
|
|
func (c *Config) DisableExifTool() bool {
|
|
if !c.SidecarWritable() || c.ExifToolBin() == "" {
|
|
return true
|
|
}
|
|
|
|
return c.options.DisableExifTool
|
|
}
|
|
|
|
// DisableTensorFlow tests if TensorFlow should not be used for image classification (or anything else).
|
|
func (c *Config) DisableTensorFlow() bool {
|
|
return c.options.DisableTensorFlow
|
|
}
|