2019-10-07 16:19:01 +00:00
|
|
|
// Package httpd implements REST API and Web interface for SFTPGo.
|
|
|
|
// The OpenAPI 3 schema for the exposed API can be found inside the source tree:
|
2021-02-09 18:53:03 +00:00
|
|
|
// https://github.com/drakkan/sftpgo/blob/main/httpd/schema/openapi.yaml
|
2019-10-07 16:19:01 +00:00
|
|
|
package httpd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-05-11 04:54:06 +00:00
|
|
|
"net"
|
2019-10-07 16:19:01 +00:00
|
|
|
"net/http"
|
2021-01-17 21:29:08 +00:00
|
|
|
"net/url"
|
2021-04-09 20:02:48 +00:00
|
|
|
"path"
|
2019-10-07 16:19:01 +00:00
|
|
|
"path/filepath"
|
2020-12-29 18:02:56 +00:00
|
|
|
"runtime"
|
2021-01-17 21:29:08 +00:00
|
|
|
"strings"
|
2021-01-26 21:35:36 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
2019-10-07 16:19:01 +00:00
|
|
|
|
2021-03-01 18:28:11 +00:00
|
|
|
"github.com/go-chi/chi/v5"
|
2021-03-05 17:50:45 +00:00
|
|
|
"github.com/go-chi/jwtauth/v5"
|
2021-04-11 06:38:43 +00:00
|
|
|
"github.com/lestrrat-go/jwx/jwa"
|
2020-05-06 17:36:34 +00:00
|
|
|
|
2020-07-24 21:39:38 +00:00
|
|
|
"github.com/drakkan/sftpgo/common"
|
2020-12-08 10:18:34 +00:00
|
|
|
"github.com/drakkan/sftpgo/dataprovider"
|
|
|
|
"github.com/drakkan/sftpgo/ftpd"
|
2019-10-07 16:19:01 +00:00
|
|
|
"github.com/drakkan/sftpgo/logger"
|
2020-12-08 10:18:34 +00:00
|
|
|
"github.com/drakkan/sftpgo/sftpd"
|
2020-03-03 08:09:58 +00:00
|
|
|
"github.com/drakkan/sftpgo/utils"
|
2020-12-08 10:18:34 +00:00
|
|
|
"github.com/drakkan/sftpgo/webdavd"
|
2019-10-07 16:19:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-05-06 19:35:43 +00:00
|
|
|
logSender = "httpd"
|
|
|
|
tokenPath = "/api/v2/token"
|
|
|
|
logoutPath = "/api/v2/logout"
|
|
|
|
activeConnectionsPath = "/api/v2/connections"
|
|
|
|
quotaScanPath = "/api/v2/quota-scans"
|
|
|
|
quotaScanVFolderPath = "/api/v2/folder-quota-scans"
|
|
|
|
userPath = "/api/v2/users"
|
|
|
|
versionPath = "/api/v2/version"
|
|
|
|
folderPath = "/api/v2/folders"
|
|
|
|
serverStatusPath = "/api/v2/status"
|
|
|
|
dumpDataPath = "/api/v2/dumpdata"
|
|
|
|
loadDataPath = "/api/v2/loaddata"
|
|
|
|
updateUsedQuotaPath = "/api/v2/quota-update"
|
|
|
|
updateFolderUsedQuotaPath = "/api/v2/folder-quota-update"
|
|
|
|
defenderBanTime = "/api/v2/defender/bantime"
|
|
|
|
defenderUnban = "/api/v2/defender/unban"
|
|
|
|
defenderScore = "/api/v2/defender/score"
|
|
|
|
adminPath = "/api/v2/admins"
|
|
|
|
adminPwdPath = "/api/v2/changepwd/admin"
|
|
|
|
healthzPath = "/healthz"
|
|
|
|
webRootPathDefault = "/"
|
|
|
|
webBasePathDefault = "/web"
|
|
|
|
webBasePathAdminDefault = "/web/admin"
|
|
|
|
webBasePathClientDefault = "/web/client"
|
2021-05-14 17:21:15 +00:00
|
|
|
webAdminSetupPathDefault = "/web/admin/setup"
|
2021-05-06 19:35:43 +00:00
|
|
|
webLoginPathDefault = "/web/admin/login"
|
|
|
|
webLogoutPathDefault = "/web/admin/logout"
|
|
|
|
webUsersPathDefault = "/web/admin/users"
|
|
|
|
webUserPathDefault = "/web/admin/user"
|
|
|
|
webConnectionsPathDefault = "/web/admin/connections"
|
|
|
|
webFoldersPathDefault = "/web/admin/folders"
|
|
|
|
webFolderPathDefault = "/web/admin/folder"
|
|
|
|
webStatusPathDefault = "/web/admin/status"
|
|
|
|
webAdminsPathDefault = "/web/admin/managers"
|
|
|
|
webAdminPathDefault = "/web/admin/manager"
|
|
|
|
webMaintenancePathDefault = "/web/admin/maintenance"
|
|
|
|
webBackupPathDefault = "/web/admin/backup"
|
|
|
|
webRestorePathDefault = "/web/admin/restore"
|
|
|
|
webScanVFolderPathDefault = "/web/admin/folder-quota-scans"
|
|
|
|
webQuotaScanPathDefault = "/web/admin/quota-scans"
|
|
|
|
webChangeAdminPwdPathDefault = "/web/admin/changepwd"
|
|
|
|
webTemplateUserDefault = "/web/admin/template/user"
|
|
|
|
webTemplateFolderDefault = "/web/admin/template/folder"
|
|
|
|
webClientLoginPathDefault = "/web/client/login"
|
|
|
|
webClientFilesPathDefault = "/web/client/files"
|
|
|
|
webClientCredentialsPathDefault = "/web/client/credentials"
|
|
|
|
webChangeClientPwdPathDefault = "/web/client/changepwd"
|
|
|
|
webChangeClientKeysPathDefault = "/web/client/managekeys"
|
|
|
|
webClientLogoutPathDefault = "/web/client/logout"
|
|
|
|
webStaticFilesPathDefault = "/static"
|
2020-10-20 16:42:37 +00:00
|
|
|
// MaxRestoreSize defines the max size for the loaddata input file
|
2021-05-07 18:41:20 +00:00
|
|
|
MaxRestoreSize = 10485760 // 10 MB
|
|
|
|
maxRequestSize = 1048576 // 1MB
|
|
|
|
maxLoginPostSize = 262144 // 256 KB
|
|
|
|
osWindows = "windows"
|
2019-10-07 16:19:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2021-05-06 19:35:43 +00:00
|
|
|
backupsPath string
|
|
|
|
certMgr *common.CertManager
|
|
|
|
jwtTokensCleanupTicker *time.Ticker
|
|
|
|
jwtTokensCleanupDone chan bool
|
|
|
|
invalidatedJWTTokens sync.Map
|
|
|
|
csrfTokenAuth *jwtauth.JWTAuth
|
|
|
|
webRootPath string
|
|
|
|
webBasePath string
|
|
|
|
webBaseAdminPath string
|
|
|
|
webBaseClientPath string
|
2021-05-14 17:21:15 +00:00
|
|
|
webAdminSetupPath string
|
2021-05-06 19:35:43 +00:00
|
|
|
webLoginPath string
|
|
|
|
webLogoutPath string
|
|
|
|
webUsersPath string
|
|
|
|
webUserPath string
|
|
|
|
webConnectionsPath string
|
|
|
|
webFoldersPath string
|
|
|
|
webFolderPath string
|
|
|
|
webStatusPath string
|
|
|
|
webAdminsPath string
|
|
|
|
webAdminPath string
|
|
|
|
webMaintenancePath string
|
|
|
|
webBackupPath string
|
|
|
|
webRestorePath string
|
|
|
|
webScanVFolderPath string
|
|
|
|
webQuotaScanPath string
|
|
|
|
webChangeAdminPwdPath string
|
|
|
|
webTemplateUser string
|
|
|
|
webTemplateFolder string
|
|
|
|
webClientLoginPath string
|
|
|
|
webClientFilesPath string
|
|
|
|
webClientCredentialsPath string
|
|
|
|
webChangeClientPwdPath string
|
|
|
|
webChangeClientKeysPath string
|
|
|
|
webClientLogoutPath string
|
|
|
|
webStaticFilesPath string
|
2019-10-07 16:19:01 +00:00
|
|
|
)
|
|
|
|
|
2021-04-09 20:02:48 +00:00
|
|
|
func init() {
|
|
|
|
updateWebAdminURLs("")
|
2021-05-06 19:35:43 +00:00
|
|
|
updateWebClientURLs("")
|
2021-04-09 20:02:48 +00:00
|
|
|
}
|
|
|
|
|
2021-01-17 21:29:08 +00:00
|
|
|
// Binding defines the configuration for a network listener
|
|
|
|
type Binding struct {
|
|
|
|
// The address to listen on. A blank value means listen on all available network interfaces.
|
|
|
|
Address string `json:"address" mapstructure:"address"`
|
|
|
|
// The port used for serving requests
|
|
|
|
Port int `json:"port" mapstructure:"port"`
|
2021-01-19 17:59:41 +00:00
|
|
|
// Enable the built-in admin interface.
|
|
|
|
// You have to define TemplatesPath and StaticFilesPath for this to work
|
|
|
|
EnableWebAdmin bool `json:"enable_web_admin" mapstructure:"enable_web_admin"`
|
2021-05-06 19:35:43 +00:00
|
|
|
// Enable the built-in client interface.
|
|
|
|
// You have to define TemplatesPath and StaticFilesPath for this to work
|
|
|
|
EnableWebClient bool `json:"enable_web_client" mapstructure:"enable_web_client"`
|
2021-01-19 17:59:41 +00:00
|
|
|
// you also need to provide a certificate for enabling HTTPS
|
|
|
|
EnableHTTPS bool `json:"enable_https" mapstructure:"enable_https"`
|
|
|
|
// set to 1 to require client certificate authentication in addition to basic auth.
|
|
|
|
// You need to define at least a certificate authority for this to work
|
|
|
|
ClientAuthType int `json:"client_auth_type" mapstructure:"client_auth_type"`
|
2021-02-18 19:17:16 +00:00
|
|
|
// TLSCipherSuites is a list of supported cipher suites for TLS version 1.2.
|
|
|
|
// If CipherSuites is nil/empty, a default list of secure cipher suites
|
|
|
|
// is used, with a preference order based on hardware performance.
|
|
|
|
// Note that TLS 1.3 ciphersuites are not configurable.
|
|
|
|
// The supported ciphersuites names are defined here:
|
|
|
|
//
|
|
|
|
// https://github.com/golang/go/blob/master/src/crypto/tls/cipher_suites.go#L52
|
|
|
|
//
|
|
|
|
// any invalid name will be silently ignored.
|
|
|
|
// The order matters, the ciphers listed first will be the preferred ones.
|
|
|
|
TLSCipherSuites []string `json:"tls_cipher_suites" mapstructure:"tls_cipher_suites"`
|
2021-05-11 04:54:06 +00:00
|
|
|
// List of IP addresses and IP ranges allowed to set X-Forwarded-For, X-Real-IP,
|
|
|
|
// X-Forwarded-Proto headers.
|
|
|
|
ProxyAllowed []string `json:"proxy_allowed" mapstructure:"proxy_allowed"`
|
|
|
|
allowHeadersFrom []func(net.IP) bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Binding) parseAllowedProxy() error {
|
|
|
|
allowedFuncs, err := utils.ParseAllowedIPAndRanges(b.ProxyAllowed)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
b.allowHeadersFrom = allowedFuncs
|
|
|
|
return nil
|
2021-01-19 17:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetAddress returns the binding address
|
|
|
|
func (b *Binding) GetAddress() string {
|
|
|
|
return fmt.Sprintf("%s:%d", b.Address, b.Port)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsValid returns true if the binding is valid
|
|
|
|
func (b *Binding) IsValid() bool {
|
|
|
|
if b.Port > 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if filepath.IsAbs(b.Address) && runtime.GOOS != osWindows {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
2021-01-17 21:29:08 +00:00
|
|
|
}
|
|
|
|
|
2021-01-02 18:33:24 +00:00
|
|
|
type defenderStatus struct {
|
|
|
|
IsActive bool `json:"is_active"`
|
|
|
|
}
|
|
|
|
|
2020-12-08 10:18:34 +00:00
|
|
|
// ServicesStatus keep the state of the running services
|
|
|
|
type ServicesStatus struct {
|
|
|
|
SSH sftpd.ServiceStatus `json:"ssh"`
|
|
|
|
FTP ftpd.ServiceStatus `json:"ftp"`
|
|
|
|
WebDAV webdavd.ServiceStatus `json:"webdav"`
|
|
|
|
DataProvider dataprovider.ProviderStatus `json:"data_provider"`
|
2021-01-02 18:33:24 +00:00
|
|
|
Defender defenderStatus `json:"defender"`
|
2020-12-08 10:18:34 +00:00
|
|
|
}
|
|
|
|
|
2019-10-07 16:19:01 +00:00
|
|
|
// Conf httpd daemon configuration
|
|
|
|
type Conf struct {
|
2021-01-19 17:59:41 +00:00
|
|
|
// Addresses and ports to bind to
|
|
|
|
Bindings []Binding `json:"bindings" mapstructure:"bindings"`
|
|
|
|
// Deprecated: please use Bindings
|
2019-10-07 16:19:01 +00:00
|
|
|
BindPort int `json:"bind_port" mapstructure:"bind_port"`
|
2021-01-19 17:59:41 +00:00
|
|
|
// Deprecated: please use Bindings
|
2019-10-07 16:19:01 +00:00
|
|
|
BindAddress string `json:"bind_address" mapstructure:"bind_address"`
|
|
|
|
// Path to the HTML web templates. This can be an absolute path or a path relative to the config dir
|
|
|
|
TemplatesPath string `json:"templates_path" mapstructure:"templates_path"`
|
2020-06-18 21:53:38 +00:00
|
|
|
// Path to the static files for the web interface. This can be an absolute path or a path relative to the config dir.
|
|
|
|
// If both TemplatesPath and StaticFilesPath are empty the built-in web interface will be disabled
|
2019-10-07 16:19:01 +00:00
|
|
|
StaticFilesPath string `json:"static_files_path" mapstructure:"static_files_path"`
|
2019-12-27 22:12:44 +00:00
|
|
|
// Path to the backup directory. This can be an absolute path or a path relative to the config dir
|
|
|
|
BackupsPath string `json:"backups_path" mapstructure:"backups_path"`
|
2021-05-06 19:35:43 +00:00
|
|
|
// Defines a base URL for the web admin and client interfaces. If empty web admin and client resources will
|
|
|
|
// be available at the root ("/") URI. If defined it must be an absolute URI or it will be ignored.
|
|
|
|
WebRoot string `json:"web_root" mapstructure:"web_root"`
|
2020-02-03 23:08:00 +00:00
|
|
|
// If files containing a certificate and matching private key for the server are provided the server will expect
|
2020-02-04 22:21:33 +00:00
|
|
|
// HTTPS connections.
|
|
|
|
// Certificate and key files can be reloaded on demand sending a "SIGHUP" signal on Unix based systems and a
|
|
|
|
// "paramchange" request to the running service on Windows.
|
2020-02-03 23:08:00 +00:00
|
|
|
CertificateFile string `json:"certificate_file" mapstructure:"certificate_file"`
|
|
|
|
CertificateKeyFile string `json:"certificate_key_file" mapstructure:"certificate_key_file"`
|
2021-01-19 17:59:41 +00:00
|
|
|
// CACertificates defines the set of root certificate authorities to be used to verify client certificates.
|
|
|
|
CACertificates []string `json:"ca_certificates" mapstructure:"ca_certificates"`
|
|
|
|
// CARevocationLists defines a set a revocation lists, one for each root CA, to be used to check
|
|
|
|
// if a client certificate has been revoked
|
|
|
|
CARevocationLists []string `json:"ca_revocation_lists" mapstructure:"ca_revocation_lists"`
|
2019-12-27 22:12:44 +00:00
|
|
|
}
|
|
|
|
|
2019-10-07 16:19:01 +00:00
|
|
|
type apiResponse struct {
|
2020-09-08 07:45:21 +00:00
|
|
|
Error string `json:"error,omitempty"`
|
|
|
|
Message string `json:"message"`
|
2019-10-07 16:19:01 +00:00
|
|
|
}
|
|
|
|
|
2021-01-19 17:59:41 +00:00
|
|
|
// ShouldBind returns true if there is at least a valid binding
|
|
|
|
func (c *Conf) ShouldBind() bool {
|
|
|
|
for _, binding := range c.Bindings {
|
|
|
|
if binding.IsValid() {
|
|
|
|
return true
|
|
|
|
}
|
2020-12-29 18:02:56 +00:00
|
|
|
}
|
2021-01-19 17:59:41 +00:00
|
|
|
|
2020-12-29 18:02:56 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-05-06 19:35:43 +00:00
|
|
|
func (c *Conf) isWebAdminEnabled() bool {
|
|
|
|
for _, binding := range c.Bindings {
|
|
|
|
if binding.EnableWebAdmin {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conf) isWebClientEnabled() bool {
|
|
|
|
for _, binding := range c.Bindings {
|
|
|
|
if binding.EnableWebClient {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-05-11 04:54:06 +00:00
|
|
|
func (c *Conf) checkRequiredDirs(staticFilesPath, templatesPath string) error {
|
|
|
|
if (c.isWebAdminEnabled() || c.isWebClientEnabled()) && (staticFilesPath == "" || templatesPath == "") {
|
|
|
|
return fmt.Errorf("required directory is invalid, static file path: %#v template path: %#v",
|
|
|
|
staticFilesPath, templatesPath)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-04-26 21:29:09 +00:00
|
|
|
// Initialize configures and starts the HTTP server
|
2021-01-19 17:59:41 +00:00
|
|
|
func (c *Conf) Initialize(configDir string) error {
|
2019-10-07 16:19:01 +00:00
|
|
|
logger.Debug(logSender, "", "initializing HTTP server with config %+v", c)
|
2020-02-03 23:08:00 +00:00
|
|
|
backupsPath = getConfigPath(c.BackupsPath, configDir)
|
|
|
|
staticFilesPath := getConfigPath(c.StaticFilesPath, configDir)
|
|
|
|
templatesPath := getConfigPath(c.TemplatesPath, configDir)
|
2021-01-05 08:50:22 +00:00
|
|
|
if backupsPath == "" {
|
2021-03-21 18:15:47 +00:00
|
|
|
return fmt.Errorf("required directory is invalid, backup path %#v", backupsPath)
|
2020-06-18 21:53:38 +00:00
|
|
|
}
|
2021-05-11 04:54:06 +00:00
|
|
|
if err := c.checkRequiredDirs(staticFilesPath, templatesPath); err != nil {
|
|
|
|
return err
|
2020-03-03 08:09:58 +00:00
|
|
|
}
|
2020-02-03 23:08:00 +00:00
|
|
|
certificateFile := getConfigPath(c.CertificateFile, configDir)
|
|
|
|
certificateKeyFile := getConfigPath(c.CertificateKeyFile, configDir)
|
2021-05-06 19:35:43 +00:00
|
|
|
if c.isWebAdminEnabled() {
|
|
|
|
updateWebAdminURLs(c.WebRoot)
|
|
|
|
loadAdminTemplates(templatesPath)
|
|
|
|
} else {
|
|
|
|
logger.Info(logSender, "", "built-in web admin interface disabled")
|
|
|
|
}
|
|
|
|
if c.isWebClientEnabled() {
|
|
|
|
updateWebClientURLs(c.WebRoot)
|
|
|
|
loadClientTemplates(templatesPath)
|
2020-06-18 21:53:38 +00:00
|
|
|
} else {
|
2021-05-06 19:35:43 +00:00
|
|
|
logger.Info(logSender, "", "built-in web client interface disabled")
|
2020-06-18 21:53:38 +00:00
|
|
|
}
|
2020-12-18 15:04:42 +00:00
|
|
|
if certificateFile != "" && certificateKeyFile != "" {
|
2021-01-19 17:59:41 +00:00
|
|
|
mgr, err := common.NewCertManager(certificateFile, certificateKeyFile, configDir, logSender)
|
2020-02-04 22:21:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-19 17:59:41 +00:00
|
|
|
mgr.SetCACertificates(c.CACertificates)
|
|
|
|
if err := mgr.LoadRootCAs(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mgr.SetCARevocationLists(c.CARevocationLists)
|
|
|
|
if err := mgr.LoadCRLs(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
certMgr = mgr
|
2020-02-03 23:08:00 +00:00
|
|
|
}
|
2021-01-19 17:59:41 +00:00
|
|
|
|
2021-04-11 06:38:43 +00:00
|
|
|
csrfTokenAuth = jwtauth.New(jwa.HS256.String(), utils.GenerateRandomBytes(32), nil)
|
2021-02-03 07:55:28 +00:00
|
|
|
|
2021-01-19 17:59:41 +00:00
|
|
|
exitChannel := make(chan error, 1)
|
|
|
|
|
|
|
|
for _, binding := range c.Bindings {
|
|
|
|
if !binding.IsValid() {
|
|
|
|
continue
|
|
|
|
}
|
2021-05-11 04:54:06 +00:00
|
|
|
if err := binding.parseAllowedProxy(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-19 17:59:41 +00:00
|
|
|
|
|
|
|
go func(b Binding) {
|
2021-05-06 19:35:43 +00:00
|
|
|
server := newHttpdServer(b, staticFilesPath)
|
2021-01-19 17:59:41 +00:00
|
|
|
|
|
|
|
exitChannel <- server.listenAndServe()
|
|
|
|
}(binding)
|
|
|
|
}
|
|
|
|
|
2021-01-26 21:35:36 +00:00
|
|
|
startJWTTokensCleanupTicker(tokenDuration)
|
2021-01-19 17:59:41 +00:00
|
|
|
return <-exitChannel
|
2021-01-17 21:29:08 +00:00
|
|
|
}
|
|
|
|
|
2021-05-06 19:35:43 +00:00
|
|
|
func isWebRequest(r *http.Request) bool {
|
2021-01-17 21:29:08 +00:00
|
|
|
return strings.HasPrefix(r.RequestURI, webBasePath+"/")
|
2019-10-07 16:19:01 +00:00
|
|
|
}
|
2020-02-03 23:08:00 +00:00
|
|
|
|
2021-05-06 19:35:43 +00:00
|
|
|
func isWebClientRequest(r *http.Request) bool {
|
|
|
|
return strings.HasPrefix(r.RequestURI, webBaseClientPath+"/")
|
|
|
|
}
|
|
|
|
|
2021-01-03 16:03:04 +00:00
|
|
|
// ReloadCertificateMgr reloads the certificate manager
|
|
|
|
func ReloadCertificateMgr() error {
|
2020-02-04 22:21:33 +00:00
|
|
|
if certMgr != nil {
|
2021-01-03 16:03:04 +00:00
|
|
|
return certMgr.Reload()
|
2020-02-04 22:21:33 +00:00
|
|
|
}
|
2020-04-30 12:23:55 +00:00
|
|
|
return nil
|
2020-02-04 22:21:33 +00:00
|
|
|
}
|
|
|
|
|
2020-02-03 23:08:00 +00:00
|
|
|
func getConfigPath(name, configDir string) string {
|
2020-03-03 08:09:58 +00:00
|
|
|
if !utils.IsFileInputValid(name) {
|
|
|
|
return ""
|
|
|
|
}
|
2020-12-18 15:04:42 +00:00
|
|
|
if name != "" && !filepath.IsAbs(name) {
|
2020-02-03 23:08:00 +00:00
|
|
|
return filepath.Join(configDir, name)
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|
2020-12-08 10:18:34 +00:00
|
|
|
|
|
|
|
func getServicesStatus() ServicesStatus {
|
|
|
|
status := ServicesStatus{
|
|
|
|
SSH: sftpd.GetStatus(),
|
|
|
|
FTP: ftpd.GetStatus(),
|
|
|
|
WebDAV: webdavd.GetStatus(),
|
|
|
|
DataProvider: dataprovider.GetProviderStatus(),
|
2021-01-02 18:33:24 +00:00
|
|
|
Defender: defenderStatus{
|
|
|
|
IsActive: common.Config.DefenderConfig.Enabled,
|
|
|
|
},
|
2020-12-08 10:18:34 +00:00
|
|
|
}
|
|
|
|
return status
|
|
|
|
}
|
2021-01-17 21:29:08 +00:00
|
|
|
|
|
|
|
func getURLParam(r *http.Request, key string) string {
|
|
|
|
v := chi.URLParam(r, key)
|
|
|
|
unescaped, err := url.PathUnescape(v)
|
|
|
|
if err != nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
return unescaped
|
|
|
|
}
|
|
|
|
|
|
|
|
func fileServer(r chi.Router, path string, root http.FileSystem) {
|
|
|
|
if path != "/" && path[len(path)-1] != '/' {
|
|
|
|
r.Get(path, http.RedirectHandler(path+"/", http.StatusMovedPermanently).ServeHTTP)
|
|
|
|
path += "/"
|
|
|
|
}
|
|
|
|
path += "*"
|
|
|
|
|
|
|
|
r.Get(path, func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
rctx := chi.RouteContext(r.Context())
|
|
|
|
pathPrefix := strings.TrimSuffix(rctx.RoutePattern(), "/*")
|
|
|
|
fs := http.StripPrefix(pathPrefix, http.FileServer(root))
|
|
|
|
fs.ServeHTTP(w, r)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-05-06 19:35:43 +00:00
|
|
|
func updateWebClientURLs(baseURL string) {
|
|
|
|
if !path.IsAbs(baseURL) {
|
|
|
|
baseURL = "/"
|
|
|
|
}
|
|
|
|
webRootPath = path.Join(baseURL, webRootPathDefault)
|
|
|
|
webBasePath = path.Join(baseURL, webBasePathDefault)
|
|
|
|
webBaseClientPath = path.Join(baseURL, webBasePathClientDefault)
|
|
|
|
webClientLoginPath = path.Join(baseURL, webClientLoginPathDefault)
|
|
|
|
webClientFilesPath = path.Join(baseURL, webClientFilesPathDefault)
|
|
|
|
webClientCredentialsPath = path.Join(baseURL, webClientCredentialsPathDefault)
|
|
|
|
webChangeClientPwdPath = path.Join(baseURL, webChangeClientPwdPathDefault)
|
|
|
|
webChangeClientKeysPath = path.Join(baseURL, webChangeClientKeysPathDefault)
|
|
|
|
webClientLogoutPath = path.Join(baseURL, webClientLogoutPathDefault)
|
|
|
|
}
|
|
|
|
|
2021-04-09 20:02:48 +00:00
|
|
|
func updateWebAdminURLs(baseURL string) {
|
|
|
|
if !path.IsAbs(baseURL) {
|
|
|
|
baseURL = "/"
|
|
|
|
}
|
|
|
|
webRootPath = path.Join(baseURL, webRootPathDefault)
|
|
|
|
webBasePath = path.Join(baseURL, webBasePathDefault)
|
2021-05-06 19:35:43 +00:00
|
|
|
webBaseAdminPath = path.Join(baseURL, webBasePathAdminDefault)
|
2021-05-14 17:21:15 +00:00
|
|
|
webAdminSetupPath = path.Join(baseURL, webAdminSetupPathDefault)
|
2021-04-09 20:02:48 +00:00
|
|
|
webLoginPath = path.Join(baseURL, webLoginPathDefault)
|
|
|
|
webLogoutPath = path.Join(baseURL, webLogoutPathDefault)
|
|
|
|
webUsersPath = path.Join(baseURL, webUsersPathDefault)
|
|
|
|
webUserPath = path.Join(baseURL, webUserPathDefault)
|
|
|
|
webConnectionsPath = path.Join(baseURL, webConnectionsPathDefault)
|
|
|
|
webFoldersPath = path.Join(baseURL, webFoldersPathDefault)
|
|
|
|
webFolderPath = path.Join(baseURL, webFolderPathDefault)
|
|
|
|
webStatusPath = path.Join(baseURL, webStatusPathDefault)
|
|
|
|
webAdminsPath = path.Join(baseURL, webAdminsPathDefault)
|
|
|
|
webAdminPath = path.Join(baseURL, webAdminPathDefault)
|
|
|
|
webMaintenancePath = path.Join(baseURL, webMaintenancePathDefault)
|
|
|
|
webBackupPath = path.Join(baseURL, webBackupPathDefault)
|
|
|
|
webRestorePath = path.Join(baseURL, webRestorePathDefault)
|
|
|
|
webScanVFolderPath = path.Join(baseURL, webScanVFolderPathDefault)
|
|
|
|
webQuotaScanPath = path.Join(baseURL, webQuotaScanPathDefault)
|
|
|
|
webChangeAdminPwdPath = path.Join(baseURL, webChangeAdminPwdPathDefault)
|
|
|
|
webTemplateUser = path.Join(baseURL, webTemplateUserDefault)
|
|
|
|
webTemplateFolder = path.Join(baseURL, webTemplateFolderDefault)
|
|
|
|
webStaticFilesPath = path.Join(baseURL, webStaticFilesPathDefault)
|
|
|
|
}
|
|
|
|
|
2021-01-17 21:29:08 +00:00
|
|
|
// GetHTTPRouter returns an HTTP handler suitable to use for test cases
|
|
|
|
func GetHTTPRouter() http.Handler {
|
2021-01-19 17:59:41 +00:00
|
|
|
b := Binding{
|
2021-05-06 19:35:43 +00:00
|
|
|
Address: "",
|
|
|
|
Port: 8080,
|
|
|
|
EnableWebAdmin: true,
|
|
|
|
EnableWebClient: true,
|
2021-01-19 17:59:41 +00:00
|
|
|
}
|
2021-05-06 19:35:43 +00:00
|
|
|
server := newHttpdServer(b, "../static")
|
2021-01-17 21:29:08 +00:00
|
|
|
server.initializeRouter()
|
|
|
|
return server.router
|
|
|
|
}
|
2021-01-26 21:35:36 +00:00
|
|
|
|
|
|
|
// the ticker cannot be started/stopped from multiple goroutines
|
|
|
|
func startJWTTokensCleanupTicker(duration time.Duration) {
|
|
|
|
stopJWTTokensCleanupTicker()
|
|
|
|
jwtTokensCleanupTicker = time.NewTicker(duration)
|
|
|
|
jwtTokensCleanupDone = make(chan bool)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-jwtTokensCleanupDone:
|
|
|
|
return
|
|
|
|
case <-jwtTokensCleanupTicker.C:
|
|
|
|
cleanupExpiredJWTTokens()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
func stopJWTTokensCleanupTicker() {
|
|
|
|
if jwtTokensCleanupTicker != nil {
|
|
|
|
jwtTokensCleanupTicker.Stop()
|
|
|
|
jwtTokensCleanupDone <- true
|
|
|
|
jwtTokensCleanupTicker = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func cleanupExpiredJWTTokens() {
|
|
|
|
invalidatedJWTTokens.Range(func(key, value interface{}) bool {
|
|
|
|
exp, ok := value.(time.Time)
|
|
|
|
if !ok || exp.Before(time.Now().UTC()) {
|
|
|
|
invalidatedJWTTokens.Delete(key)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
}
|