04609d536d
Short name was changed from -a to --pw after the --auth flag was added.
186 lines
6.2 KiB
Go
186 lines
6.2 KiB
Go
package config
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
"unicode/utf8"
|
|
|
|
"github.com/olekukonko/tablewriter"
|
|
)
|
|
|
|
// Table returns global config values as a table for reporting.
|
|
func (c *Config) Table() (rows [][]string, cols []string) {
|
|
cols = []string{"Value", "Name"}
|
|
|
|
rows = [][]string{
|
|
{"admin-password", strings.Repeat("*", utf8.RuneCountInString(c.AdminPassword()))},
|
|
{"log-level", c.LogLevel().String()},
|
|
{"debug", fmt.Sprintf("%t", c.Debug())},
|
|
{"trace", fmt.Sprintf("%t", c.Trace())},
|
|
{"auth", fmt.Sprintf("%t", c.Auth())},
|
|
{"public", fmt.Sprintf("%t", c.Public())},
|
|
{"read-only", fmt.Sprintf("%t", c.ReadOnly())},
|
|
{"experimental", fmt.Sprintf("%t", c.Experimental())},
|
|
|
|
// Config.
|
|
{"config-file", c.ConfigFile()},
|
|
{"config-path", c.ConfigPath()},
|
|
{"settings-file", c.SettingsFile()},
|
|
|
|
// Originals.
|
|
{"originals-path", c.OriginalsPath()},
|
|
{"originals-limit", fmt.Sprintf("%d", c.OriginalsLimit())},
|
|
{"resolution-limit", fmt.Sprintf("%d", c.ResolutionLimit())},
|
|
|
|
// Other paths.
|
|
{"storage-path", c.StoragePath()},
|
|
{"sidecar-path", c.SidecarPath()},
|
|
{"cache-path", c.CachePath()},
|
|
{"albums-path", c.AlbumsPath()},
|
|
{"backup-path", c.BackupPath()},
|
|
{"import-path", c.ImportPath()},
|
|
{"assets-path", c.AssetsPath()},
|
|
{"static-path", c.StaticPath()},
|
|
{"build-path", c.BuildPath()},
|
|
{"img-path", c.ImgPath()},
|
|
{"templates-path", c.TemplatesPath()},
|
|
{"temp-path", c.TempPath()},
|
|
|
|
// Workers.
|
|
{"workers", fmt.Sprintf("%d", c.Workers())},
|
|
{"wakeup-interval", c.WakeupInterval().String()},
|
|
{"auto-index", fmt.Sprintf("%d", c.AutoIndex()/time.Second)},
|
|
{"auto-import", fmt.Sprintf("%d", c.AutoImport()/time.Second)},
|
|
|
|
// Feature Flags.
|
|
{"disable-backups", fmt.Sprintf("%t", c.DisableBackups())},
|
|
{"disable-settings", fmt.Sprintf("%t", c.DisableSettings())},
|
|
{"disable-places", fmt.Sprintf("%t", c.DisablePlaces())},
|
|
{"disable-tensorflow", fmt.Sprintf("%t", c.DisableTensorFlow())},
|
|
{"disable-faces", fmt.Sprintf("%t", c.DisableFaces())},
|
|
{"disable-classification", fmt.Sprintf("%t", c.DisableClassification())},
|
|
{"disable-ffmpeg", fmt.Sprintf("%t", c.DisableFFmpeg())},
|
|
{"disable-exiftool", fmt.Sprintf("%t", c.DisableExifTool())},
|
|
{"disable-heifconvert", fmt.Sprintf("%t", c.DisableHeifConvert())},
|
|
{"disable-darktable", fmt.Sprintf("%t", c.DisableDarktable())},
|
|
{"disable-rawtherapee", fmt.Sprintf("%t", c.DisableRawtherapee())},
|
|
{"disable-sips", fmt.Sprintf("%t", c.DisableSips())},
|
|
{"disable-raw", fmt.Sprintf("%t", c.DisableRaw())},
|
|
|
|
// Format Flags.
|
|
{"raw-presets", fmt.Sprintf("%t", c.RawPresets())},
|
|
{"exif-bruteforce", fmt.Sprintf("%t", c.ExifBruteForce())},
|
|
|
|
// TensorFlow.
|
|
{"detect-nsfw", fmt.Sprintf("%t", c.DetectNSFW())},
|
|
{"upload-nsfw", fmt.Sprintf("%t", c.UploadNSFW())},
|
|
{"tensorflow-version", c.TensorFlowVersion()},
|
|
{"tensorflow-model-path", c.TensorFlowModelPath()},
|
|
|
|
// UI Defaults.
|
|
{"default-locale", c.DefaultLocale()},
|
|
|
|
// Progressive Web App.
|
|
{"app-icon", c.AppIcon()},
|
|
{"app-name", c.AppName()},
|
|
{"app-mode", c.AppMode()},
|
|
|
|
// Site Infos.
|
|
{"cdn-url", c.CdnUrl("/")},
|
|
{"site-url", c.SiteUrl()},
|
|
{"site-author", c.SiteAuthor()},
|
|
{"site-title", c.SiteTitle()},
|
|
{"site-caption", c.SiteCaption()},
|
|
{"site-description", c.SiteDescription()},
|
|
{"site-preview", c.SitePreview()},
|
|
|
|
// Legal info.
|
|
{"imprint", c.Imprint()},
|
|
{"imprint-url", c.ImprintUrl()},
|
|
|
|
// URIs.
|
|
{"content-uri", c.ContentUri()},
|
|
{"static-uri", c.StaticUri()},
|
|
{"api-uri", c.ApiUri()},
|
|
{"base-uri", c.BaseUri("/")},
|
|
|
|
// Web Server.
|
|
{"http-host", c.HttpHost()},
|
|
{"http-port", fmt.Sprintf("%d", c.HttpPort())},
|
|
{"http-mode", c.HttpMode()},
|
|
|
|
// Database.
|
|
{"database-driver", c.DatabaseDriver()},
|
|
{"database-server", c.DatabaseServer()},
|
|
{"database-host", c.DatabaseHost()},
|
|
{"database-port", c.DatabasePortString()},
|
|
{"database-name", c.DatabaseName()},
|
|
{"database-user", c.DatabaseUser()},
|
|
{"database-password", strings.Repeat("*", utf8.RuneCountInString(c.DatabasePassword()))},
|
|
{"database-conns", fmt.Sprintf("%d", c.DatabaseConns())},
|
|
{"database-conns-idle", fmt.Sprintf("%d", c.DatabaseConnsIdle())},
|
|
|
|
// External Tools.
|
|
{"darktable-bin", c.DarktableBin()},
|
|
{"darktable-cache-path", c.DarktableCachePath()},
|
|
{"darktable-config-path", c.DarktableConfigPath()},
|
|
{"darktable-blacklist", c.DarktableBlacklist()},
|
|
{"rawtherapee-bin", c.RawtherapeeBin()},
|
|
{"rawtherapee-blacklist", c.RawtherapeeBlacklist()},
|
|
{"sips-bin", c.SipsBin()},
|
|
{"heifconvert-bin", c.HeifConvertBin()},
|
|
{"ffmpeg-bin", c.FFmpegBin()},
|
|
{"ffmpeg-encoder", c.FFmpegEncoder().String()},
|
|
{"ffmpeg-bitrate", fmt.Sprintf("%d", c.FFmpegBitrate())},
|
|
{"exiftool-bin", c.ExifToolBin()},
|
|
|
|
// Thumbnails.
|
|
{"download-token", c.DownloadToken()},
|
|
{"preview-token", c.PreviewToken()},
|
|
{"thumb-color", c.ThumbColor()},
|
|
{"thumb-filter", string(c.ThumbFilter())},
|
|
{"thumb-size", fmt.Sprintf("%d", c.ThumbSizePrecached())},
|
|
{"thumb-size-uncached", fmt.Sprintf("%d", c.ThumbSizeUncached())},
|
|
{"thumb-uncached", fmt.Sprintf("%t", c.ThumbUncached())},
|
|
{"thumb-path", c.ThumbPath()},
|
|
{"jpeg-quality", fmt.Sprintf("%d", c.JpegQuality())},
|
|
{"jpeg-size", fmt.Sprintf("%d", c.JpegSize())},
|
|
|
|
// Facial Recognition.
|
|
{"face-size", fmt.Sprintf("%d", c.FaceSize())},
|
|
{"face-score", fmt.Sprintf("%f", c.FaceScore())},
|
|
{"face-overlap", fmt.Sprintf("%d", c.FaceOverlap())},
|
|
{"face-cluster-size", fmt.Sprintf("%d", c.FaceClusterSize())},
|
|
{"face-cluster-score", fmt.Sprintf("%d", c.FaceClusterScore())},
|
|
{"face-cluster-core", fmt.Sprintf("%d", c.FaceClusterCore())},
|
|
{"face-cluster-dist", fmt.Sprintf("%f", c.FaceClusterDist())},
|
|
{"face-match-dist", fmt.Sprintf("%f", c.FaceMatchDist())},
|
|
|
|
// Daemon Mode.
|
|
{"pid-filename", c.PIDFilename()},
|
|
{"log-filename", c.LogFilename()},
|
|
}
|
|
|
|
return rows, cols
|
|
}
|
|
|
|
// MarkdownTable returns global config values as a markdown formatted table.
|
|
func (c *Config) MarkdownTable(autoWrap bool) string {
|
|
buf := &bytes.Buffer{}
|
|
|
|
rows, cols := c.Table()
|
|
|
|
table := tablewriter.NewWriter(buf)
|
|
|
|
table.SetAutoWrapText(autoWrap)
|
|
table.SetAutoFormatHeaders(false)
|
|
table.SetHeader(cols)
|
|
table.SetBorders(tablewriter.Border{Left: true, Top: false, Right: true, Bottom: false})
|
|
table.SetCenterSeparator("|")
|
|
table.AppendBulk(rows)
|
|
table.Render()
|
|
|
|
return buf.String()
|
|
}
|