2022-10-19 05:09:09 +02:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find and return public certificate.
|
|
|
|
if fileName := filepath.Join(c.CertificatesPath(), 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
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find and return private key.
|
|
|
|
if fileName := filepath.Join(c.CertificatesPath(), keyName); fs.FileExistsNotEmpty(fileName) {
|
|
|
|
return fileName
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// TLS returns the HTTPS certificate and private key file name.
|
|
|
|
func (c *Config) TLS() (publicCert, privateKey string) {
|
2022-10-19 20:26:36 +02:00
|
|
|
if c.DisableTLS() {
|
2022-10-19 05:09:09 +02:00
|
|
|
return "", ""
|
|
|
|
}
|
|
|
|
|
2022-10-19 20:26:36 +02:00
|
|
|
return c.TLSCert(), c.TLSKey()
|
2022-10-19 05:09:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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() == ""
|
|
|
|
}
|