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 { if LowMem && !c.options.DisableTensorFlow { c.options.DisableTensorFlow = true log.Warnf("config: disabled image classification due to memory constraints") } return c.options.DisableTensorFlow } // DisableFFmpeg tests if FFmpeg is disabled for video transcoding. func (c *Config) DisableFFmpeg() bool { if LowMem && !c.options.DisableFFmpeg { c.options.DisableFFmpeg = true log.Warnf("config: disabled video transcoding due to memory constraints") } return c.options.DisableFFmpeg || c.FFmpegBin() == "" } // DisableDarktable tests if Darktable is disabled for RAW conversion. func (c *Config) DisableDarktable() bool { if LowMem && !c.options.DisableDarktable { c.options.DisableDarktable = true log.Warnf("config: disabled file conversion with Darktable due to memory constraints") } return c.options.DisableDarktable || c.DarktableBin() == "" } // DisableRawtherapee tests if Rawtherapee is disabled for RAW conversion. func (c *Config) DisableRawtherapee() bool { if LowMem && !c.options.DisableRawtherapee { c.options.DisableRawtherapee = true log.Warnf("config: disabled file conversion with RawTherapee due to memory constraints") } return c.options.DisableRawtherapee || c.RawtherapeeBin() == "" } // DisableSips tests if SIPS is disabled for RAW conversion. func (c *Config) DisableSips() bool { return c.options.DisableSips || c.SipsBin() == "" } // DisableHeifConvert tests if heif-convert is disabled for HEIF conversion. func (c *Config) DisableHeifConvert() bool { return c.options.DisableHeifConvert || c.HeifConvertBin() == "" }