photoprism/internal/config/config_tls.go

83 lines
2 KiB
Go
Raw Normal View History

package config
import (
"path/filepath"
"github.com/photoprism/photoprism/pkg/clean"
"github.com/photoprism/photoprism/pkg/fs"
)
const (
PrivateKeyExt = ".key"
PublicCertExt = ".crt"
)
// CertificatesPath returns the path to the TLS certificates and keys.
func (c *Config) CertificatesPath() string {
return filepath.Join(c.ConfigPath(), "certificates")
}
// TLSEmail returns the email address to enable automatic HTTPS via Let's Encrypt
func (c *Config) TLSEmail() string {
return clean.Email(c.options.TLSEmail)
}
// TLSCert returns the public certificate required to enable TLS.
func (c *Config) TLSCert() string {
certName := c.options.TLSCert
if certName == "" {
certName = c.SiteDomain() + PublicCertExt
} else if fs.FileExistsNotEmpty(certName) {
return certName
}
// Try to find server certificate.
if fileName := filepath.Join(c.CertificatesPath(), certName); fs.FileExistsNotEmpty(fileName) {
return fileName
} else if fileName = filepath.Join("/etc/ssl/certs", certName); fs.FileExistsNotEmpty(fileName) {
return fileName
}
return ""
}
// TLSKey returns the private key required to enable TLS.
func (c *Config) TLSKey() string {
keyName := c.options.TLSKey
if keyName == "" {
keyName = c.SiteDomain() + PrivateKeyExt
} else if fs.FileExistsNotEmpty(keyName) {
return keyName
}
// Try to find private key.
if fileName := filepath.Join(c.CertificatesPath(), keyName); fs.FileExistsNotEmpty(fileName) {
return fileName
} else if fileName = filepath.Join("/etc/ssl/private", keyName); fs.FileExistsNotEmpty(fileName) {
return fileName
}
return ""
}
// TLS returns the HTTPS certificate and private key file name.
func (c *Config) TLS() (publicCert, privateKey string) {
if c.DisableTLS() {
return "", ""
}
return c.TLSCert(), c.TLSKey()
}
// DisableTLS checks if HTTPS should be disabled.
func (c *Config) DisableTLS() bool {
if c.options.DisableTLS {
return true
} else if !c.SiteHttps() {
return true
}
return c.TLSCert() == "" || c.TLSKey() == ""
}