605 lines
15 KiB
Go
605 lines
15 KiB
Go
package config
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"fmt"
|
|
"hash/crc32"
|
|
"net/url"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
_ "github.com/jinzhu/gorm/dialects/mysql"
|
|
_ "github.com/jinzhu/gorm/dialects/sqlite"
|
|
|
|
"github.com/dustin/go-humanize"
|
|
"github.com/klauspost/cpuid/v2"
|
|
"github.com/pbnjay/memory"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli"
|
|
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
"github.com/photoprism/photoprism/internal/face"
|
|
"github.com/photoprism/photoprism/internal/hub"
|
|
"github.com/photoprism/photoprism/internal/hub/places"
|
|
"github.com/photoprism/photoprism/internal/mutex"
|
|
"github.com/photoprism/photoprism/internal/thumb"
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
"github.com/photoprism/photoprism/pkg/rnd"
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
)
|
|
|
|
var log = event.Log
|
|
var once sync.Once
|
|
var LowMem = false
|
|
var TotalMem uint64
|
|
|
|
const MsgSponsor = "Help us make a difference and become a sponsor today!"
|
|
const SignUpURL = "https://docs.photoprism.app/funding/"
|
|
const MsgSignUp = "Visit " + SignUpURL + " to learn more."
|
|
const MsgSponsorCommand = "Since running this command puts additional load on our infrastructure," +
|
|
" we unfortunately can only offer it to sponsors."
|
|
|
|
const ApiUri = "/api/v1" // REST API
|
|
const StaticUri = "/static" // Static Content
|
|
|
|
const DefaultAutoIndexDelay = int(5 * 60) // 5 Minutes
|
|
const DefaultAutoImportDelay = int(3 * 60) // 3 Minutes
|
|
|
|
const DefaultWakeupIntervalSeconds = int(15 * 60) // 15 Minutes
|
|
|
|
// Megabyte in bytes.
|
|
const Megabyte = 1000 * 1000
|
|
|
|
// Gigabyte in bytes.
|
|
const Gigabyte = Megabyte * 1000
|
|
|
|
// MinMem is the minimum amount of system memory required.
|
|
const MinMem = Gigabyte
|
|
|
|
// RecommendedMem is the recommended amount of system memory.
|
|
const RecommendedMem = 5 * Gigabyte
|
|
|
|
// Config holds database, cache and all parameters of photoprism
|
|
type Config struct {
|
|
once sync.Once
|
|
db *gorm.DB
|
|
options *Options
|
|
settings *Settings
|
|
hub *hub.Config
|
|
token string
|
|
serial string
|
|
}
|
|
|
|
func init() {
|
|
TotalMem = memory.TotalMemory()
|
|
|
|
// Check available memory if not running in unsafe mode.
|
|
if os.Getenv("PHOTOPRISM_UNSAFE") == "" {
|
|
// Disable features with high memory requirements?
|
|
LowMem = TotalMem < MinMem
|
|
}
|
|
|
|
// Init public thumb sizes for use in client apps.
|
|
for i := len(thumb.DefaultSizes) - 1; i >= 0; i-- {
|
|
name := thumb.DefaultSizes[i]
|
|
t := thumb.Sizes[name]
|
|
|
|
if t.Public {
|
|
Thumbs = append(Thumbs, ThumbSize{Size: string(name), Use: t.Use, Width: t.Width, Height: t.Height})
|
|
}
|
|
}
|
|
}
|
|
|
|
func initLogger(debug bool) {
|
|
once.Do(func() {
|
|
log.SetFormatter(&logrus.TextFormatter{
|
|
DisableColors: false,
|
|
FullTimestamp: true,
|
|
})
|
|
|
|
if debug {
|
|
log.SetLevel(logrus.DebugLevel)
|
|
} else {
|
|
log.SetLevel(logrus.InfoLevel)
|
|
}
|
|
})
|
|
}
|
|
|
|
// NewConfig initialises a new configuration file
|
|
func NewConfig(ctx *cli.Context) *Config {
|
|
initLogger(ctx.GlobalBool("debug"))
|
|
|
|
c := &Config{
|
|
options: NewOptions(ctx),
|
|
token: rnd.Token(8),
|
|
}
|
|
|
|
if configFile := c.ConfigFile(); c.options.ConfigFile == "" && fs.FileExists(configFile) {
|
|
if err := c.options.Load(configFile); err != nil {
|
|
log.Warnf("config: %s", err)
|
|
} else {
|
|
log.Debugf("config: options loaded from %s", txt.Quote(configFile))
|
|
}
|
|
}
|
|
|
|
return c
|
|
}
|
|
|
|
// Options returns the raw config options.
|
|
func (c *Config) Options() *Options {
|
|
if c.options == nil {
|
|
log.Warnf("config: options should not be nil - bug?")
|
|
c.options = NewOptions(nil)
|
|
}
|
|
|
|
return c.options
|
|
}
|
|
|
|
// Propagate updates config options in other packages as needed.
|
|
func (c *Config) Propagate() {
|
|
log.SetLevel(c.LogLevel())
|
|
|
|
// Set thumbnail generation parameters.
|
|
thumb.SizePrecached = c.ThumbSizePrecached()
|
|
thumb.SizeUncached = c.ThumbSizeUncached()
|
|
thumb.Filter = c.ThumbFilter()
|
|
thumb.JpegQuality = c.JpegQuality()
|
|
|
|
// Set geocoding parameters.
|
|
places.UserAgent = c.UserAgent()
|
|
entity.GeoApi = c.GeoApi()
|
|
|
|
// Set facial recognition parameters.
|
|
face.ScoreThreshold = c.FaceScore()
|
|
face.OverlapThreshold = c.FaceOverlap()
|
|
face.ClusterScoreThreshold = c.FaceClusterScore()
|
|
face.ClusterSizeThreshold = c.FaceClusterSize()
|
|
face.ClusterCore = c.FaceClusterCore()
|
|
face.ClusterDist = c.FaceClusterDist()
|
|
face.MatchDist = c.FaceMatchDist()
|
|
|
|
c.Settings().Propagate()
|
|
c.Hub().Propagate()
|
|
}
|
|
|
|
// Init creates directories, parses additional config files, opens a database connection and initializes dependencies.
|
|
func (c *Config) Init() error {
|
|
if err := c.CreateDirectories(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := c.initStorage(); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Show funding info?
|
|
if !c.Sponsor() {
|
|
log.Info(MsgSponsor)
|
|
log.Info(MsgSignUp)
|
|
}
|
|
|
|
if insensitive, err := c.CaseInsensitive(); err != nil {
|
|
return err
|
|
} else if insensitive {
|
|
log.Infof("config: case-insensitive file system detected")
|
|
fs.IgnoreCase()
|
|
}
|
|
|
|
if cpuName := cpuid.CPU.BrandName; cpuName != "" {
|
|
log.Debugf("config: running on %s, %s memory detected", txt.Quote(cpuid.CPU.BrandName), humanize.Bytes(TotalMem))
|
|
}
|
|
|
|
// Check memory requirements.
|
|
if TotalMem < 128*Megabyte {
|
|
return fmt.Errorf("config: %s of memory detected, %d GB required", humanize.Bytes(TotalMem), MinMem/Gigabyte)
|
|
} else if LowMem {
|
|
log.Warnf(`config: less than %d GB of memory detected, please upgrade if server becomes unstable or unresponsive`, MinMem/Gigabyte)
|
|
}
|
|
|
|
// Show swap info.
|
|
if TotalMem < RecommendedMem {
|
|
log.Infof("config: make sure your server has enough swap configured to prevent restarts when there are memory usage spikes")
|
|
}
|
|
|
|
// Set User Agent for HTTP requests.
|
|
places.UserAgent = fmt.Sprintf("%s/%s", c.Name(), c.Version())
|
|
|
|
c.initSettings()
|
|
c.initHub()
|
|
|
|
c.Propagate()
|
|
|
|
return c.connectDb()
|
|
}
|
|
|
|
// initStorage initializes storage directories with a random serial.
|
|
func (c *Config) initStorage() error {
|
|
if c.serial != "" {
|
|
return nil
|
|
}
|
|
|
|
const serialName = "serial"
|
|
|
|
c.serial = rnd.PPID('z')
|
|
|
|
storageName := filepath.Join(c.StoragePath(), serialName)
|
|
backupName := filepath.Join(c.BackupPath(), serialName)
|
|
|
|
if data, err := os.ReadFile(storageName); err == nil {
|
|
c.serial = string(data)
|
|
} else if data, err := os.ReadFile(backupName); err == nil {
|
|
c.serial = string(data)
|
|
} else if err := os.WriteFile(storageName, []byte(c.serial), os.ModePerm); err != nil {
|
|
return fmt.Errorf("failed creating %s: %s", storageName, err)
|
|
} else if err := os.WriteFile(backupName, []byte(c.serial), os.ModePerm); err != nil {
|
|
return fmt.Errorf("failed creating %s: %s", backupName, err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Serial returns the random storage serial.
|
|
func (c *Config) Serial() string {
|
|
if err := c.initStorage(); err != nil {
|
|
log.Errorf("config: %s", err)
|
|
}
|
|
|
|
return c.serial
|
|
}
|
|
|
|
// SerialChecksum returns the CRC32 checksum of the storage serial.
|
|
func (c *Config) SerialChecksum() string {
|
|
var result []byte
|
|
|
|
hash := crc32.New(crc32.MakeTable(crc32.Castagnoli))
|
|
|
|
if _, err := hash.Write([]byte(c.Serial())); err != nil {
|
|
log.Warnf("config: %s", err)
|
|
}
|
|
|
|
return hex.EncodeToString(hash.Sum(result))
|
|
}
|
|
|
|
// Name returns the application name ("PhotoPrism").
|
|
func (c *Config) Name() string {
|
|
return c.options.Name
|
|
}
|
|
|
|
// Version returns the application version.
|
|
func (c *Config) Version() string {
|
|
return c.options.Version
|
|
}
|
|
|
|
// UserAgent returns a HTTP user agent string based on app name & version.
|
|
func (c *Config) UserAgent() string {
|
|
return fmt.Sprintf("%s/%s", c.Name(), c.Version())
|
|
}
|
|
|
|
// Copyright returns the application copyright.
|
|
func (c *Config) Copyright() string {
|
|
return c.options.Copyright
|
|
}
|
|
|
|
// BaseUri returns the site base URI for a given resource.
|
|
func (c *Config) BaseUri(res string) string {
|
|
if c.SiteUrl() == "" {
|
|
return res
|
|
}
|
|
|
|
u, err := url.Parse(c.SiteUrl())
|
|
|
|
if err != nil {
|
|
return res
|
|
}
|
|
|
|
return strings.TrimRight(u.Path, "/") + res
|
|
}
|
|
|
|
// ApiUri returns the api URI.
|
|
func (c *Config) ApiUri() string {
|
|
return c.BaseUri(ApiUri)
|
|
}
|
|
|
|
// CdnUrl returns the optional content delivery network URI without trailing slash.
|
|
func (c *Config) CdnUrl(res string) string {
|
|
return strings.TrimRight(c.options.CdnUrl, "/") + res
|
|
}
|
|
|
|
// ContentUri returns the content delivery URI.
|
|
func (c *Config) ContentUri() string {
|
|
return c.CdnUrl(c.ApiUri())
|
|
}
|
|
|
|
// StaticUri returns the static content URI.
|
|
func (c *Config) StaticUri() string {
|
|
return c.CdnUrl(c.BaseUri(StaticUri))
|
|
}
|
|
|
|
// SiteUrl returns the public server URL (default is "http://localhost:2342/").
|
|
func (c *Config) SiteUrl() string {
|
|
if c.options.SiteUrl == "" {
|
|
return "http://localhost:2342/"
|
|
}
|
|
|
|
return strings.TrimRight(c.options.SiteUrl, "/") + "/"
|
|
}
|
|
|
|
// SiteDomain returns the public server domain.
|
|
func (c *Config) SiteDomain() string {
|
|
if u, err := url.Parse(c.SiteUrl()); err != nil {
|
|
return "localhost"
|
|
} else {
|
|
return u.Hostname()
|
|
}
|
|
}
|
|
|
|
// SiteAuthor returns the site author / copyright.
|
|
func (c *Config) SiteAuthor() string {
|
|
return c.options.SiteAuthor
|
|
}
|
|
|
|
// SiteTitle returns the main site title (default is application name).
|
|
func (c *Config) SiteTitle() string {
|
|
if c.options.SiteTitle == "" {
|
|
return c.Name()
|
|
}
|
|
|
|
return c.options.SiteTitle
|
|
}
|
|
|
|
// SiteCaption returns a short site caption.
|
|
func (c *Config) SiteCaption() string {
|
|
return c.options.SiteCaption
|
|
}
|
|
|
|
// SiteDescription returns a long site description.
|
|
func (c *Config) SiteDescription() string {
|
|
return c.options.SiteDescription
|
|
}
|
|
|
|
// SitePreview returns the site preview image URL for sharing.
|
|
func (c *Config) SitePreview() string {
|
|
if c.options.SitePreview == "" {
|
|
return c.SiteUrl() + "static/img/preview.jpg"
|
|
}
|
|
|
|
if !strings.HasPrefix(c.options.SitePreview, "http") {
|
|
return c.SiteUrl() + c.options.SitePreview
|
|
}
|
|
|
|
return c.options.SitePreview
|
|
}
|
|
|
|
// Debug tests if debug mode is enabled.
|
|
func (c *Config) Debug() bool {
|
|
return c.options.Debug
|
|
}
|
|
|
|
// Test tests if test mode is enabled.
|
|
func (c *Config) Test() bool {
|
|
return c.options.Test
|
|
}
|
|
|
|
// Demo tests if demo mode is enabled.
|
|
func (c *Config) Demo() bool {
|
|
return c.options.Demo
|
|
}
|
|
|
|
// Sponsor reports if your continuous support helps to pay for development and operating expenses.
|
|
func (c *Config) Sponsor() bool {
|
|
return c.options.Sponsor || c.Test()
|
|
}
|
|
|
|
// Public tests if app runs in public mode and requires no authentication.
|
|
func (c *Config) Public() bool {
|
|
if c.Demo() {
|
|
return true
|
|
}
|
|
|
|
return c.options.Public
|
|
}
|
|
|
|
// SetPublic changes authentication while instance is running, for testing purposes only.
|
|
func (c *Config) SetPublic(p bool) {
|
|
if c.Debug() {
|
|
c.options.Public = p
|
|
}
|
|
}
|
|
|
|
// Experimental tests if experimental features should be enabled.
|
|
func (c *Config) Experimental() bool {
|
|
return c.options.Experimental
|
|
}
|
|
|
|
// ReadOnly tests if photo directories are write protected.
|
|
func (c *Config) ReadOnly() bool {
|
|
return c.options.ReadOnly
|
|
}
|
|
|
|
// DetectNSFW tests if NSFW photos should be detected and flagged.
|
|
func (c *Config) DetectNSFW() bool {
|
|
return c.options.DetectNSFW
|
|
}
|
|
|
|
// UploadNSFW tests if NSFW photos can be uploaded.
|
|
func (c *Config) UploadNSFW() bool {
|
|
return c.options.UploadNSFW
|
|
}
|
|
|
|
// AdminPassword returns the initial admin password.
|
|
func (c *Config) AdminPassword() string {
|
|
return c.options.AdminPassword
|
|
}
|
|
|
|
// LogLevel returns the Logrus log level.
|
|
func (c *Config) LogLevel() logrus.Level {
|
|
// Normalize string.
|
|
c.options.LogLevel = strings.ToLower(strings.TrimSpace(c.options.LogLevel))
|
|
|
|
if c.Debug() && c.options.LogLevel != logrus.TraceLevel.String() {
|
|
c.options.LogLevel = logrus.DebugLevel.String()
|
|
}
|
|
|
|
if logLevel, err := logrus.ParseLevel(c.options.LogLevel); err == nil {
|
|
return logLevel
|
|
} else {
|
|
return logrus.InfoLevel
|
|
}
|
|
}
|
|
|
|
// Shutdown services and workers.
|
|
func (c *Config) Shutdown() {
|
|
mutex.People.Cancel()
|
|
mutex.MainWorker.Cancel()
|
|
mutex.ShareWorker.Cancel()
|
|
mutex.SyncWorker.Cancel()
|
|
mutex.MetaWorker.Cancel()
|
|
mutex.FacesWorker.Cancel()
|
|
|
|
if err := c.CloseDb(); err != nil {
|
|
log.Errorf("could not close database connection: %s", err)
|
|
} else {
|
|
log.Info("closed database connection")
|
|
}
|
|
}
|
|
|
|
// Workers returns the number of workers e.g. for indexing files.
|
|
func (c *Config) Workers() int {
|
|
// Use one worker on systems with less than the recommended amount of memory.
|
|
if TotalMem < RecommendedMem {
|
|
return 1
|
|
}
|
|
|
|
// NumCPU returns the number of logical CPU cores.
|
|
cores := runtime.NumCPU()
|
|
|
|
// Limit to physical cores to avoid high load on HT capable CPUs.
|
|
if cores > cpuid.CPU.PhysicalCores {
|
|
cores = cpuid.CPU.PhysicalCores
|
|
}
|
|
|
|
// Limit number of workers when using SQLite3 to avoid database locking issues.
|
|
if c.DatabaseDriver() == SQLite3 && (cores >= 8 && c.options.Workers <= 0 || c.options.Workers > 4) {
|
|
return 4
|
|
}
|
|
|
|
// Return explicit value if set and not too large.
|
|
if c.options.Workers > runtime.NumCPU() {
|
|
return runtime.NumCPU()
|
|
} else if c.options.Workers > 0 {
|
|
return c.options.Workers
|
|
}
|
|
|
|
// Use half the available cores by default.
|
|
if cores > 1 {
|
|
return cores / 2
|
|
}
|
|
|
|
return 1
|
|
}
|
|
|
|
// WakeupInterval returns the metadata, share & sync background worker wakeup interval duration (1 - 604800 seconds).
|
|
func (c *Config) WakeupInterval() time.Duration {
|
|
if c.options.Unsafe && c.options.WakeupInterval < 0 {
|
|
// Background worker can be disabled in unsafe mode.
|
|
return time.Duration(0)
|
|
} else if c.options.WakeupInterval <= 0 || c.options.WakeupInterval > 604800 {
|
|
// Default if out of range.
|
|
return time.Duration(DefaultWakeupIntervalSeconds) * time.Second
|
|
}
|
|
|
|
return time.Duration(c.options.WakeupInterval) * time.Second
|
|
}
|
|
|
|
// AutoIndex returns the auto index delay duration.
|
|
func (c *Config) AutoIndex() time.Duration {
|
|
if c.options.AutoIndex < 0 {
|
|
return time.Duration(0)
|
|
} else if c.options.AutoIndex == 0 || c.options.AutoIndex > 604800 {
|
|
return time.Duration(DefaultAutoIndexDelay) * time.Second
|
|
}
|
|
|
|
return time.Duration(c.options.AutoIndex) * time.Second
|
|
}
|
|
|
|
// AutoImport returns the auto import delay duration.
|
|
func (c *Config) AutoImport() time.Duration {
|
|
if c.options.AutoImport < 0 || c.ReadOnly() {
|
|
return time.Duration(0)
|
|
} else if c.options.AutoImport == 0 || c.options.AutoImport > 604800 {
|
|
return time.Duration(DefaultAutoImportDelay) * time.Second
|
|
}
|
|
|
|
return time.Duration(c.options.AutoImport) * time.Second
|
|
}
|
|
|
|
// GeoApi returns the preferred geocoding api (none or places).
|
|
func (c *Config) GeoApi() string {
|
|
if c.options.DisablePlaces {
|
|
return ""
|
|
}
|
|
|
|
return "places"
|
|
}
|
|
|
|
// OriginalsLimit returns the file size limit for originals.
|
|
func (c *Config) OriginalsLimit() int64 {
|
|
if c.options.OriginalsLimit <= 0 || c.options.OriginalsLimit > 100000 {
|
|
return -1
|
|
}
|
|
|
|
// Megabyte.
|
|
return c.options.OriginalsLimit * 1024 * 1024
|
|
}
|
|
|
|
// UpdateHub updates backend api credentials for maps & places.
|
|
func (c *Config) UpdateHub() {
|
|
if err := c.hub.Refresh(); err != nil {
|
|
log.Debugf("config: %s", err)
|
|
} else if err := c.hub.Save(); err != nil {
|
|
log.Debugf("config: %s", err)
|
|
} else {
|
|
c.hub.Propagate()
|
|
}
|
|
}
|
|
|
|
// initHub initializes PhotoPrism hub config.
|
|
func (c *Config) initHub() {
|
|
c.hub = hub.NewConfig(c.Version(), c.HubConfigFile(), c.serial)
|
|
|
|
if err := c.hub.Load(); err == nil {
|
|
// Do nothing.
|
|
} else if err := c.hub.Refresh(); err != nil {
|
|
log.Debugf("config: %s", err)
|
|
} else if err := c.hub.Save(); err != nil {
|
|
log.Debugf("config: %s", err)
|
|
}
|
|
|
|
c.hub.Propagate()
|
|
|
|
ticker := time.NewTicker(time.Hour * 24)
|
|
|
|
go func() {
|
|
for {
|
|
select {
|
|
case <-ticker.C:
|
|
c.UpdateHub()
|
|
}
|
|
}
|
|
}()
|
|
}
|
|
|
|
// Hub returns the PhotoPrism hub config.
|
|
func (c *Config) Hub() *hub.Config {
|
|
if c.hub == nil {
|
|
c.initHub()
|
|
}
|
|
|
|
return c.hub
|
|
}
|