| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525 |
- package httpd
- import (
- "context"
- "crypto/tls"
- "crypto/x509"
- "errors"
- "fmt"
- "log"
- "net"
- "net/http"
- "strings"
- "time"
- "github.com/go-chi/chi/v5"
- "github.com/go-chi/chi/v5/middleware"
- "github.com/go-chi/jwtauth/v5"
- "github.com/go-chi/render"
- "github.com/lestrrat-go/jwx/jwa"
- "github.com/rs/cors"
- "github.com/rs/xid"
- "github.com/sftpgo/sdk"
- "github.com/unrolled/secure"
- "github.com/drakkan/sftpgo/v2/common"
- "github.com/drakkan/sftpgo/v2/dataprovider"
- "github.com/drakkan/sftpgo/v2/logger"
- "github.com/drakkan/sftpgo/v2/mfa"
- "github.com/drakkan/sftpgo/v2/smtp"
- "github.com/drakkan/sftpgo/v2/util"
- "github.com/drakkan/sftpgo/v2/version"
- )
- var (
- compressor = middleware.NewCompressor(5)
- xForwardedProto = http.CanonicalHeaderKey("X-Forwarded-Proto")
- )
- type httpdServer struct {
- binding Binding
- staticFilesPath string
- openAPIPath string
- enableWebAdmin bool
- enableWebClient bool
- renderOpenAPI bool
- router *chi.Mux
- tokenAuth *jwtauth.JWTAuth
- signingPassphrase string
- cors CorsConfig
- }
- func newHttpdServer(b Binding, staticFilesPath, signingPassphrase string, cors CorsConfig,
- openAPIPath string,
- ) *httpdServer {
- if openAPIPath == "" {
- b.RenderOpenAPI = false
- }
- return &httpdServer{
- binding: b,
- staticFilesPath: staticFilesPath,
- openAPIPath: openAPIPath,
- enableWebAdmin: b.EnableWebAdmin,
- enableWebClient: b.EnableWebClient,
- renderOpenAPI: b.RenderOpenAPI,
- signingPassphrase: signingPassphrase,
- cors: cors,
- }
- }
- func (s *httpdServer) listenAndServe() error {
- s.initializeRouter()
- httpServer := &http.Server{
- Handler: s.router,
- ReadHeaderTimeout: 30 * time.Second,
- ReadTimeout: 60 * time.Second,
- WriteTimeout: 60 * time.Second,
- IdleTimeout: 60 * time.Second,
- MaxHeaderBytes: 1 << 16, // 64KB
- ErrorLog: log.New(&logger.StdLoggerWrapper{Sender: logSender}, "", 0),
- }
- if certMgr != nil && s.binding.EnableHTTPS {
- config := &tls.Config{
- GetCertificate: certMgr.GetCertificateFunc(),
- MinVersion: util.GetTLSVersion(s.binding.MinTLSVersion),
- NextProtos: []string{"http/1.1", "h2"},
- CipherSuites: util.GetTLSCiphersFromNames(s.binding.TLSCipherSuites),
- PreferServerCipherSuites: true,
- }
- logger.Debug(logSender, "", "configured TLS cipher suites for binding %#v: %v", s.binding.GetAddress(),
- config.CipherSuites)
- httpServer.TLSConfig = config
- if s.binding.ClientAuthType == 1 {
- httpServer.TLSConfig.ClientCAs = certMgr.GetRootCAs()
- httpServer.TLSConfig.ClientAuth = tls.RequireAndVerifyClientCert
- httpServer.TLSConfig.VerifyConnection = s.verifyTLSConnection
- }
- return util.HTTPListenAndServe(httpServer, s.binding.Address, s.binding.Port, true, logSender)
- }
- return util.HTTPListenAndServe(httpServer, s.binding.Address, s.binding.Port, false, logSender)
- }
- func (s *httpdServer) verifyTLSConnection(state tls.ConnectionState) error {
- if certMgr != nil {
- var clientCrt *x509.Certificate
- var clientCrtName string
- if len(state.PeerCertificates) > 0 {
- clientCrt = state.PeerCertificates[0]
- clientCrtName = clientCrt.Subject.String()
- }
- if len(state.VerifiedChains) == 0 {
- logger.Warn(logSender, "", "TLS connection cannot be verified: unable to get verification chain")
- return errors.New("TLS connection cannot be verified: unable to get verification chain")
- }
- for _, verifiedChain := range state.VerifiedChains {
- var caCrt *x509.Certificate
- if len(verifiedChain) > 0 {
- caCrt = verifiedChain[len(verifiedChain)-1]
- }
- if certMgr.IsRevoked(clientCrt, caCrt) {
- logger.Debug(logSender, "", "tls handshake error, client certificate %#v has been revoked", clientCrtName)
- return common.ErrCrtRevoked
- }
- }
- }
- return nil
- }
- func (s *httpdServer) refreshCookie(next http.Handler) http.Handler {
- return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- s.checkCookieExpiration(w, r)
- next.ServeHTTP(w, r)
- })
- }
- func (s *httpdServer) renderClientLoginPage(w http.ResponseWriter, error string) {
- data := loginPage{
- CurrentURL: webClientLoginPath,
- Version: version.Get().Version,
- Error: error,
- CSRFToken: createCSRFToken(),
- StaticURL: webStaticFilesPath,
- }
- if s.binding.showAdminLoginURL() {
- data.AltLoginURL = webAdminLoginPath
- }
- if smtp.IsEnabled() {
- data.ForgotPwdURL = webClientForgotPwdPath
- }
- if s.binding.OIDC.isEnabled() {
- data.OpenIDLoginURL = webClientOIDCLoginPath
- }
- renderClientTemplate(w, templateClientLogin, data)
- }
- func (s *httpdServer) handleWebClientLogout(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- c := jwtTokenClaims{}
- c.removeCookie(w, r, webBaseClientPath)
- s.logoutOIDCUser(w, r)
- http.Redirect(w, r, webClientLoginPath, http.StatusFound)
- }
- func (s *httpdServer) handleWebClientChangePwdPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- err := r.ParseForm()
- if err != nil {
- renderClientChangePasswordPage(w, r, err.Error())
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- renderClientForbiddenPage(w, r, err.Error())
- return
- }
- err = doChangeUserPassword(r, r.Form.Get("current_password"), r.Form.Get("new_password1"),
- r.Form.Get("new_password2"))
- if err != nil {
- renderClientChangePasswordPage(w, r, err.Error())
- return
- }
- s.handleWebClientLogout(w, r)
- }
- func (s *httpdServer) handleClientWebLogin(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- if !dataprovider.HasAdmin() {
- http.Redirect(w, r, webAdminSetupPath, http.StatusFound)
- return
- }
- s.renderClientLoginPage(w, getFlashMessage(w, r))
- }
- func (s *httpdServer) handleWebClientLoginPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- if err := r.ParseForm(); err != nil {
- s.renderClientLoginPage(w, err.Error())
- return
- }
- ipAddr := util.GetIPFromRemoteAddress(r.RemoteAddr)
- protocol := common.ProtocolHTTP
- username := r.Form.Get("username")
- password := r.Form.Get("password")
- if username == "" || password == "" {
- updateLoginMetrics(&dataprovider.User{BaseUser: sdk.BaseUser{Username: username}},
- dataprovider.LoginMethodPassword, ipAddr, common.ErrNoCredentials)
- s.renderClientLoginPage(w, "Invalid credentials")
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- updateLoginMetrics(&dataprovider.User{BaseUser: sdk.BaseUser{Username: username}},
- dataprovider.LoginMethodPassword, ipAddr, err)
- s.renderClientLoginPage(w, err.Error())
- return
- }
- if err := common.Config.ExecutePostConnectHook(ipAddr, protocol); err != nil {
- s.renderClientLoginPage(w, fmt.Sprintf("access denied by post connect hook: %v", err))
- return
- }
- user, err := dataprovider.CheckUserAndPass(username, password, ipAddr, protocol)
- if err != nil {
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, err)
- s.renderClientLoginPage(w, dataprovider.ErrInvalidCredentials.Error())
- return
- }
- connectionID := fmt.Sprintf("%v_%v", protocol, xid.New().String())
- if err := checkHTTPClientUser(&user, r, connectionID); err != nil {
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, err)
- s.renderClientLoginPage(w, err.Error())
- return
- }
- defer user.CloseFs() //nolint:errcheck
- err = user.CheckFsRoot(connectionID)
- if err != nil {
- logger.Warn(logSender, connectionID, "unable to check fs root: %v", err)
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, common.ErrInternalFailure)
- s.renderClientLoginPage(w, err.Error())
- return
- }
- s.loginUser(w, r, &user, connectionID, ipAddr, false, s.renderClientLoginPage)
- }
- func (s *httpdServer) handleWebClientPasswordResetPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- err := r.ParseForm()
- if err != nil {
- renderClientResetPwdPage(w, err.Error())
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- renderClientForbiddenPage(w, r, err.Error())
- return
- }
- _, user, err := handleResetPassword(r, r.Form.Get("code"), r.Form.Get("password"), false)
- if err != nil {
- if e, ok := err.(*util.ValidationError); ok {
- renderClientResetPwdPage(w, e.GetErrorString())
- return
- }
- renderClientResetPwdPage(w, err.Error())
- return
- }
- connectionID := fmt.Sprintf("%v_%v", getProtocolFromRequest(r), xid.New().String())
- if err := checkHTTPClientUser(user, r, connectionID); err != nil {
- renderClientResetPwdPage(w, fmt.Sprintf("Password reset successfully but unable to login: %v", err.Error()))
- return
- }
- defer user.CloseFs() //nolint:errcheck
- err = user.CheckFsRoot(connectionID)
- if err != nil {
- logger.Warn(logSender, connectionID, "unable to check fs root: %v", err)
- renderClientResetPwdPage(w, fmt.Sprintf("Password reset successfully but unable to login: %v", err.Error()))
- return
- }
- ipAddr := util.GetIPFromRemoteAddress(r.RemoteAddr)
- s.loginUser(w, r, user, connectionID, ipAddr, false, renderClientResetPwdPage)
- }
- func (s *httpdServer) handleWebClientTwoFactorRecoveryPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- claims, err := getTokenClaims(r)
- if err != nil {
- renderNotFoundPage(w, r, nil)
- return
- }
- if err := r.ParseForm(); err != nil {
- renderClientTwoFactorRecoveryPage(w, err.Error())
- return
- }
- username := claims.Username
- recoveryCode := r.Form.Get("recovery_code")
- if username == "" || recoveryCode == "" {
- renderClientTwoFactorRecoveryPage(w, "Invalid credentials")
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- renderClientTwoFactorRecoveryPage(w, err.Error())
- return
- }
- user, err := dataprovider.UserExists(username)
- if err != nil {
- renderClientTwoFactorRecoveryPage(w, "Invalid credentials")
- return
- }
- if !user.Filters.TOTPConfig.Enabled || !util.IsStringInSlice(common.ProtocolHTTP, user.Filters.TOTPConfig.Protocols) {
- renderClientTwoFactorPage(w, "Two factory authentication is not enabled")
- return
- }
- for idx, code := range user.Filters.RecoveryCodes {
- if err := code.Secret.Decrypt(); err != nil {
- renderClientInternalServerErrorPage(w, r, fmt.Errorf("unable to decrypt recovery code: %w", err))
- return
- }
- if code.Secret.GetPayload() == recoveryCode {
- if code.Used {
- renderClientTwoFactorRecoveryPage(w, "This recovery code was already used")
- return
- }
- user.Filters.RecoveryCodes[idx].Used = true
- err = dataprovider.UpdateUser(&user, dataprovider.ActionExecutorSelf, util.GetIPFromRemoteAddress(r.RemoteAddr))
- if err != nil {
- logger.Warn(logSender, "", "unable to set the recovery code %#v as used: %v", recoveryCode, err)
- renderClientInternalServerErrorPage(w, r, errors.New("unable to set the recovery code as used"))
- return
- }
- connectionID := fmt.Sprintf("%v_%v", getProtocolFromRequest(r), xid.New().String())
- s.loginUser(w, r, &user, connectionID, util.GetIPFromRemoteAddress(r.RemoteAddr), true,
- renderClientTwoFactorRecoveryPage)
- return
- }
- }
- renderClientTwoFactorRecoveryPage(w, "Invalid recovery code")
- }
- func (s *httpdServer) handleWebClientTwoFactorPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- claims, err := getTokenClaims(r)
- if err != nil {
- renderNotFoundPage(w, r, nil)
- return
- }
- if err := r.ParseForm(); err != nil {
- renderClientTwoFactorPage(w, err.Error())
- return
- }
- username := claims.Username
- passcode := r.Form.Get("passcode")
- if username == "" || passcode == "" {
- renderClientTwoFactorPage(w, "Invalid credentials")
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- renderClientTwoFactorPage(w, err.Error())
- return
- }
- user, err := dataprovider.UserExists(username)
- if err != nil {
- renderClientTwoFactorPage(w, "Invalid credentials")
- return
- }
- if !user.Filters.TOTPConfig.Enabled || !util.IsStringInSlice(common.ProtocolHTTP, user.Filters.TOTPConfig.Protocols) {
- renderClientTwoFactorPage(w, "Two factory authentication is not enabled")
- return
- }
- err = user.Filters.TOTPConfig.Secret.Decrypt()
- if err != nil {
- renderClientInternalServerErrorPage(w, r, err)
- return
- }
- match, err := mfa.ValidateTOTPPasscode(user.Filters.TOTPConfig.ConfigName, passcode,
- user.Filters.TOTPConfig.Secret.GetPayload())
- if !match || err != nil {
- renderClientTwoFactorPage(w, "Invalid authentication code")
- return
- }
- connectionID := fmt.Sprintf("%v_%v", getProtocolFromRequest(r), xid.New().String())
- s.loginUser(w, r, &user, connectionID, util.GetIPFromRemoteAddress(r.RemoteAddr), true, renderClientTwoFactorPage)
- }
- func (s *httpdServer) handleWebAdminTwoFactorRecoveryPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- claims, err := getTokenClaims(r)
- if err != nil {
- renderNotFoundPage(w, r, nil)
- return
- }
- if err := r.ParseForm(); err != nil {
- renderTwoFactorRecoveryPage(w, err.Error())
- return
- }
- username := claims.Username
- recoveryCode := r.Form.Get("recovery_code")
- if username == "" || recoveryCode == "" {
- renderTwoFactorRecoveryPage(w, "Invalid credentials")
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- renderTwoFactorRecoveryPage(w, err.Error())
- return
- }
- admin, err := dataprovider.AdminExists(username)
- if err != nil {
- renderTwoFactorRecoveryPage(w, "Invalid credentials")
- return
- }
- if !admin.Filters.TOTPConfig.Enabled {
- renderTwoFactorRecoveryPage(w, "Two factory authentication is not enabled")
- return
- }
- for idx, code := range admin.Filters.RecoveryCodes {
- if err := code.Secret.Decrypt(); err != nil {
- renderInternalServerErrorPage(w, r, fmt.Errorf("unable to decrypt recovery code: %w", err))
- return
- }
- if code.Secret.GetPayload() == recoveryCode {
- if code.Used {
- renderTwoFactorRecoveryPage(w, "This recovery code was already used")
- return
- }
- admin.Filters.RecoveryCodes[idx].Used = true
- err = dataprovider.UpdateAdmin(&admin, dataprovider.ActionExecutorSelf, util.GetIPFromRemoteAddress(r.RemoteAddr))
- if err != nil {
- logger.Warn(logSender, "", "unable to set the recovery code %#v as used: %v", recoveryCode, err)
- renderInternalServerErrorPage(w, r, errors.New("unable to set the recovery code as used"))
- return
- }
- s.loginAdmin(w, r, &admin, true, renderTwoFactorRecoveryPage)
- return
- }
- }
- renderTwoFactorRecoveryPage(w, "Invalid recovery code")
- }
- func (s *httpdServer) handleWebAdminTwoFactorPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- claims, err := getTokenClaims(r)
- if err != nil {
- renderNotFoundPage(w, r, nil)
- return
- }
- if err := r.ParseForm(); err != nil {
- renderTwoFactorPage(w, err.Error())
- return
- }
- username := claims.Username
- passcode := r.Form.Get("passcode")
- if username == "" || passcode == "" {
- renderTwoFactorPage(w, "Invalid credentials")
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- renderTwoFactorPage(w, err.Error())
- return
- }
- admin, err := dataprovider.AdminExists(username)
- if err != nil {
- renderTwoFactorPage(w, "Invalid credentials")
- return
- }
- if !admin.Filters.TOTPConfig.Enabled {
- renderTwoFactorPage(w, "Two factory authentication is not enabled")
- return
- }
- err = admin.Filters.TOTPConfig.Secret.Decrypt()
- if err != nil {
- renderInternalServerErrorPage(w, r, err)
- return
- }
- match, err := mfa.ValidateTOTPPasscode(admin.Filters.TOTPConfig.ConfigName, passcode,
- admin.Filters.TOTPConfig.Secret.GetPayload())
- if !match || err != nil {
- renderTwoFactorPage(w, "Invalid authentication code")
- return
- }
- s.loginAdmin(w, r, &admin, true, renderTwoFactorPage)
- }
- func (s *httpdServer) handleWebAdminLoginPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- if err := r.ParseForm(); err != nil {
- s.renderAdminLoginPage(w, err.Error())
- return
- }
- username := r.Form.Get("username")
- password := r.Form.Get("password")
- if username == "" || password == "" {
- s.renderAdminLoginPage(w, "Invalid credentials")
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- s.renderAdminLoginPage(w, err.Error())
- return
- }
- admin, err := dataprovider.CheckAdminAndPass(username, password, util.GetIPFromRemoteAddress(r.RemoteAddr))
- if err != nil {
- s.renderAdminLoginPage(w, err.Error())
- return
- }
- s.loginAdmin(w, r, &admin, false, s.renderAdminLoginPage)
- }
- func (s *httpdServer) renderAdminLoginPage(w http.ResponseWriter, error string) {
- data := loginPage{
- CurrentURL: webAdminLoginPath,
- Version: version.Get().Version,
- Error: error,
- CSRFToken: createCSRFToken(),
- StaticURL: webStaticFilesPath,
- }
- if s.binding.showClientLoginURL() {
- data.AltLoginURL = webClientLoginPath
- }
- if smtp.IsEnabled() {
- data.ForgotPwdURL = webAdminForgotPwdPath
- }
- if s.binding.OIDC.hasRoles() {
- data.OpenIDLoginURL = webAdminOIDCLoginPath
- }
- renderAdminTemplate(w, templateLogin, data)
- }
- func (s *httpdServer) handleWebAdminLogin(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- if !dataprovider.HasAdmin() {
- http.Redirect(w, r, webAdminSetupPath, http.StatusFound)
- return
- }
- s.renderAdminLoginPage(w, getFlashMessage(w, r))
- }
- func (s *httpdServer) handleWebAdminLogout(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- c := jwtTokenClaims{}
- c.removeCookie(w, r, webBaseAdminPath)
- s.logoutOIDCUser(w, r)
- http.Redirect(w, r, webAdminLoginPath, http.StatusFound)
- }
- func (s *httpdServer) handleWebAdminChangePwdPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- err := r.ParseForm()
- if err != nil {
- renderChangePasswordPage(w, r, err.Error())
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- renderForbiddenPage(w, r, err.Error())
- return
- }
- err = doChangeAdminPassword(r, r.Form.Get("current_password"), r.Form.Get("new_password1"),
- r.Form.Get("new_password2"))
- if err != nil {
- renderChangePasswordPage(w, r, err.Error())
- return
- }
- s.handleWebAdminLogout(w, r)
- }
- func (s *httpdServer) handleWebAdminPasswordResetPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- err := r.ParseForm()
- if err != nil {
- renderResetPwdPage(w, err.Error())
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- renderForbiddenPage(w, r, err.Error())
- return
- }
- admin, _, err := handleResetPassword(r, r.Form.Get("code"), r.Form.Get("password"), true)
- if err != nil {
- if e, ok := err.(*util.ValidationError); ok {
- renderResetPwdPage(w, e.GetErrorString())
- return
- }
- renderResetPwdPage(w, err.Error())
- return
- }
- s.loginAdmin(w, r, admin, false, renderResetPwdPage)
- }
- func (s *httpdServer) handleWebAdminSetupPost(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- if dataprovider.HasAdmin() {
- renderBadRequestPage(w, r, errors.New("an admin user already exists"))
- return
- }
- err := r.ParseForm()
- if err != nil {
- renderAdminSetupPage(w, r, "", err.Error())
- return
- }
- if err := verifyCSRFToken(r.Form.Get(csrfFormToken)); err != nil {
- renderForbiddenPage(w, r, err.Error())
- return
- }
- username := r.Form.Get("username")
- password := r.Form.Get("password")
- confirmPassword := r.Form.Get("confirm_password")
- if username == "" {
- renderAdminSetupPage(w, r, username, "Please set a username")
- return
- }
- if password == "" {
- renderAdminSetupPage(w, r, username, "Please set a password")
- return
- }
- if password != confirmPassword {
- renderAdminSetupPage(w, r, username, "Passwords mismatch")
- return
- }
- admin := dataprovider.Admin{
- Username: username,
- Password: password,
- Status: 1,
- Permissions: []string{dataprovider.PermAdminAny},
- }
- err = dataprovider.AddAdmin(&admin, username, util.GetIPFromRemoteAddress(r.RemoteAddr))
- if err != nil {
- renderAdminSetupPage(w, r, username, err.Error())
- return
- }
- s.loginAdmin(w, r, &admin, false, nil)
- }
- func (s *httpdServer) loginUser(
- w http.ResponseWriter, r *http.Request, user *dataprovider.User, connectionID, ipAddr string,
- isSecondFactorAuth bool, errorFunc func(w http.ResponseWriter, error string),
- ) {
- c := jwtTokenClaims{
- Username: user.Username,
- Permissions: user.Filters.WebClient,
- Signature: user.GetSignature(),
- }
- audience := tokenAudienceWebClient
- if user.Filters.TOTPConfig.Enabled && util.IsStringInSlice(common.ProtocolHTTP, user.Filters.TOTPConfig.Protocols) &&
- user.CanManageMFA() && !isSecondFactorAuth {
- audience = tokenAudienceWebClientPartial
- }
- err := c.createAndSetCookie(w, r, s.tokenAuth, audience)
- if err != nil {
- logger.Warn(logSender, connectionID, "unable to set user login cookie %v", err)
- updateLoginMetrics(user, dataprovider.LoginMethodPassword, ipAddr, common.ErrInternalFailure)
- errorFunc(w, err.Error())
- return
- }
- if isSecondFactorAuth {
- invalidateToken(r)
- }
- if audience == tokenAudienceWebClientPartial {
- http.Redirect(w, r, webClientTwoFactorPath, http.StatusFound)
- return
- }
- updateLoginMetrics(user, dataprovider.LoginMethodPassword, ipAddr, err)
- dataprovider.UpdateLastLogin(user)
- http.Redirect(w, r, webClientFilesPath, http.StatusFound)
- }
- func (s *httpdServer) loginAdmin(
- w http.ResponseWriter, r *http.Request, admin *dataprovider.Admin,
- isSecondFactorAuth bool, errorFunc func(w http.ResponseWriter, error string),
- ) {
- c := jwtTokenClaims{
- Username: admin.Username,
- Permissions: admin.Permissions,
- Signature: admin.GetSignature(),
- }
- audience := tokenAudienceWebAdmin
- if admin.Filters.TOTPConfig.Enabled && admin.CanManageMFA() && !isSecondFactorAuth {
- audience = tokenAudienceWebAdminPartial
- }
- err := c.createAndSetCookie(w, r, s.tokenAuth, audience)
- if err != nil {
- logger.Warn(logSender, "", "unable to set admin login cookie %v", err)
- if errorFunc == nil {
- renderAdminSetupPage(w, r, admin.Username, err.Error())
- return
- }
- errorFunc(w, err.Error())
- return
- }
- if isSecondFactorAuth {
- invalidateToken(r)
- }
- if audience == tokenAudienceWebAdminPartial {
- http.Redirect(w, r, webAdminTwoFactorPath, http.StatusFound)
- return
- }
- dataprovider.UpdateAdminLastLogin(admin)
- http.Redirect(w, r, webUsersPath, http.StatusFound)
- }
- func (s *httpdServer) logout(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- invalidateToken(r)
- sendAPIResponse(w, r, nil, "Your token has been invalidated", http.StatusOK)
- }
- func (s *httpdServer) getUserToken(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- ipAddr := util.GetIPFromRemoteAddress(r.RemoteAddr)
- username, password, ok := r.BasicAuth()
- protocol := common.ProtocolHTTP
- if !ok {
- updateLoginMetrics(&dataprovider.User{BaseUser: sdk.BaseUser{Username: username}},
- dataprovider.LoginMethodPassword, ipAddr, common.ErrNoCredentials)
- w.Header().Set(common.HTTPAuthenticationHeader, basicRealm)
- sendAPIResponse(w, r, nil, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
- return
- }
- if username == "" || password == "" {
- updateLoginMetrics(&dataprovider.User{BaseUser: sdk.BaseUser{Username: username}},
- dataprovider.LoginMethodPassword, ipAddr, common.ErrNoCredentials)
- w.Header().Set(common.HTTPAuthenticationHeader, basicRealm)
- sendAPIResponse(w, r, nil, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
- return
- }
- if err := common.Config.ExecutePostConnectHook(ipAddr, protocol); err != nil {
- sendAPIResponse(w, r, err, http.StatusText(http.StatusForbidden), http.StatusForbidden)
- return
- }
- user, err := dataprovider.CheckUserAndPass(username, password, ipAddr, protocol)
- if err != nil {
- w.Header().Set(common.HTTPAuthenticationHeader, basicRealm)
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, err)
- sendAPIResponse(w, r, dataprovider.ErrInvalidCredentials, http.StatusText(http.StatusUnauthorized),
- http.StatusUnauthorized)
- return
- }
- connectionID := fmt.Sprintf("%v_%v", protocol, xid.New().String())
- if err := checkHTTPClientUser(&user, r, connectionID); err != nil {
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, err)
- sendAPIResponse(w, r, err, http.StatusText(http.StatusForbidden), http.StatusForbidden)
- return
- }
- if user.Filters.TOTPConfig.Enabled && util.IsStringInSlice(common.ProtocolHTTP, user.Filters.TOTPConfig.Protocols) {
- passcode := r.Header.Get(otpHeaderCode)
- if passcode == "" {
- logger.Debug(logSender, "", "TOTP enabled for user %#v and not passcode provided, authentication refused", user.Username)
- w.Header().Set(common.HTTPAuthenticationHeader, basicRealm)
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, dataprovider.ErrInvalidCredentials)
- sendAPIResponse(w, r, dataprovider.ErrInvalidCredentials, http.StatusText(http.StatusUnauthorized),
- http.StatusUnauthorized)
- return
- }
- err = user.Filters.TOTPConfig.Secret.Decrypt()
- if err != nil {
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, common.ErrInternalFailure)
- sendAPIResponse(w, r, fmt.Errorf("unable to decrypt TOTP secret: %w", err), http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
- return
- }
- match, err := mfa.ValidateTOTPPasscode(user.Filters.TOTPConfig.ConfigName, passcode,
- user.Filters.TOTPConfig.Secret.GetPayload())
- if !match || err != nil {
- logger.Debug(logSender, "invalid passcode for user %#v, match? %v, err: %v", user.Username, match, err)
- w.Header().Set(common.HTTPAuthenticationHeader, basicRealm)
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, dataprovider.ErrInvalidCredentials)
- sendAPIResponse(w, r, dataprovider.ErrInvalidCredentials, http.StatusText(http.StatusUnauthorized),
- http.StatusUnauthorized)
- return
- }
- }
- defer user.CloseFs() //nolint:errcheck
- err = user.CheckFsRoot(connectionID)
- if err != nil {
- logger.Warn(logSender, connectionID, "unable to check fs root: %v", err)
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, common.ErrInternalFailure)
- sendAPIResponse(w, r, err, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
- return
- }
- s.generateAndSendUserToken(w, r, ipAddr, user)
- }
- func (s *httpdServer) generateAndSendUserToken(w http.ResponseWriter, r *http.Request, ipAddr string, user dataprovider.User) {
- c := jwtTokenClaims{
- Username: user.Username,
- Permissions: user.Filters.WebClient,
- Signature: user.GetSignature(),
- }
- resp, err := c.createTokenResponse(s.tokenAuth, tokenAudienceAPIUser)
- if err != nil {
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, common.ErrInternalFailure)
- sendAPIResponse(w, r, err, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
- return
- }
- updateLoginMetrics(&user, dataprovider.LoginMethodPassword, ipAddr, err)
- dataprovider.UpdateLastLogin(&user)
- render.JSON(w, r, resp)
- }
- func (s *httpdServer) getToken(w http.ResponseWriter, r *http.Request) {
- username, password, ok := r.BasicAuth()
- if !ok {
- w.Header().Set(common.HTTPAuthenticationHeader, basicRealm)
- sendAPIResponse(w, r, nil, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
- return
- }
- admin, err := dataprovider.CheckAdminAndPass(username, password, util.GetIPFromRemoteAddress(r.RemoteAddr))
- if err != nil {
- w.Header().Set(common.HTTPAuthenticationHeader, basicRealm)
- sendAPIResponse(w, r, err, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
- return
- }
- if admin.Filters.TOTPConfig.Enabled {
- passcode := r.Header.Get(otpHeaderCode)
- if passcode == "" {
- logger.Debug(logSender, "", "TOTP enabled for admin %#v and not passcode provided, authentication refused", admin.Username)
- w.Header().Set(common.HTTPAuthenticationHeader, basicRealm)
- sendAPIResponse(w, r, dataprovider.ErrInvalidCredentials, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
- return
- }
- err = admin.Filters.TOTPConfig.Secret.Decrypt()
- if err != nil {
- sendAPIResponse(w, r, fmt.Errorf("unable to decrypt TOTP secret: %w", err),
- http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
- return
- }
- match, err := mfa.ValidateTOTPPasscode(admin.Filters.TOTPConfig.ConfigName, passcode,
- admin.Filters.TOTPConfig.Secret.GetPayload())
- if !match || err != nil {
- logger.Debug(logSender, "invalid passcode for admin %#v, match? %v, err: %v", admin.Username, match, err)
- w.Header().Set(common.HTTPAuthenticationHeader, basicRealm)
- sendAPIResponse(w, r, dataprovider.ErrInvalidCredentials, http.StatusText(http.StatusUnauthorized),
- http.StatusUnauthorized)
- return
- }
- }
- s.generateAndSendToken(w, r, admin)
- }
- func (s *httpdServer) generateAndSendToken(w http.ResponseWriter, r *http.Request, admin dataprovider.Admin) {
- c := jwtTokenClaims{
- Username: admin.Username,
- Permissions: admin.Permissions,
- Signature: admin.GetSignature(),
- }
- resp, err := c.createTokenResponse(s.tokenAuth, tokenAudienceAPI)
- if err != nil {
- sendAPIResponse(w, r, err, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
- return
- }
- dataprovider.UpdateAdminLastLogin(&admin)
- render.JSON(w, r, resp)
- }
- func (s *httpdServer) checkCookieExpiration(w http.ResponseWriter, r *http.Request) {
- if _, ok := r.Context().Value(oidcTokenKey).(string); ok {
- return
- }
- token, claims, err := jwtauth.FromContext(r.Context())
- if err != nil {
- return
- }
- tokenClaims := jwtTokenClaims{}
- tokenClaims.Decode(claims)
- if tokenClaims.Username == "" || tokenClaims.Signature == "" {
- return
- }
- if time.Until(token.Expiration()) > tokenRefreshThreshold {
- return
- }
- if util.IsStringInSlice(tokenAudienceWebClient, token.Audience()) {
- s.refreshClientToken(w, r, tokenClaims)
- } else {
- s.refreshAdminToken(w, r, tokenClaims)
- }
- }
- func (s *httpdServer) refreshClientToken(w http.ResponseWriter, r *http.Request, tokenClaims jwtTokenClaims) {
- user, err := dataprovider.UserExists(tokenClaims.Username)
- if err != nil {
- return
- }
- if user.GetSignature() != tokenClaims.Signature {
- logger.Debug(logSender, "", "signature mismatch for user %#v, unable to refresh cookie", user.Username)
- return
- }
- if err := checkHTTPClientUser(&user, r, xid.New().String()); err != nil {
- logger.Debug(logSender, "", "unable to refresh cookie for user %#v: %v", user.Username, err)
- return
- }
- tokenClaims.Permissions = user.Filters.WebClient
- logger.Debug(logSender, "", "cookie refreshed for user %#v", user.Username)
- tokenClaims.createAndSetCookie(w, r, s.tokenAuth, tokenAudienceWebClient) //nolint:errcheck
- }
- func (s *httpdServer) refreshAdminToken(w http.ResponseWriter, r *http.Request, tokenClaims jwtTokenClaims) {
- admin, err := dataprovider.AdminExists(tokenClaims.Username)
- if err != nil {
- return
- }
- if admin.Status != 1 {
- logger.Debug(logSender, "", "admin %#v is disabled, unable to refresh cookie", admin.Username)
- return
- }
- if admin.GetSignature() != tokenClaims.Signature {
- logger.Debug(logSender, "", "signature mismatch for admin %#v, unable to refresh cookie", admin.Username)
- return
- }
- if !admin.CanLoginFromIP(util.GetIPFromRemoteAddress(r.RemoteAddr)) {
- logger.Debug(logSender, "", "admin %#v cannot login from %v, unable to refresh cookie", admin.Username, r.RemoteAddr)
- return
- }
- tokenClaims.Permissions = admin.Permissions
- logger.Debug(logSender, "", "cookie refreshed for admin %#v", admin.Username)
- tokenClaims.createAndSetCookie(w, r, s.tokenAuth, tokenAudienceWebAdmin) //nolint:errcheck
- }
- func (s *httpdServer) updateContextFromCookie(r *http.Request) *http.Request {
- token, _, err := jwtauth.FromContext(r.Context())
- if token == nil || err != nil {
- _, err = r.Cookie(jwtCookieKey)
- if err != nil {
- return r
- }
- token, err = jwtauth.VerifyRequest(s.tokenAuth, r, jwtauth.TokenFromCookie)
- ctx := jwtauth.NewContext(r.Context(), token, err)
- return r.WithContext(ctx)
- }
- return r
- }
- func (s *httpdServer) checkConnection(next http.Handler) http.Handler {
- return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- ipAddr := util.GetIPFromRemoteAddress(r.RemoteAddr)
- ip := net.ParseIP(ipAddr)
- areHeadersAllowed := false
- if ip != nil {
- for _, allow := range s.binding.allowHeadersFrom {
- if allow(ip) {
- parsedIP := util.GetRealIP(r)
- if parsedIP != "" {
- ipAddr = parsedIP
- r.RemoteAddr = ipAddr
- }
- if forwardedProto := r.Header.Get(xForwardedProto); forwardedProto != "" {
- ctx := context.WithValue(r.Context(), forwardedProtoKey, forwardedProto)
- r = r.WithContext(ctx)
- }
- areHeadersAllowed = true
- break
- }
- }
- }
- if !areHeadersAllowed {
- for idx := range s.binding.Security.proxyHeaders {
- r.Header.Del(s.binding.Security.proxyHeaders[idx])
- }
- }
- common.Connections.AddClientConnection(ipAddr)
- defer common.Connections.RemoveClientConnection(ipAddr)
- if !common.Connections.IsNewConnectionAllowed(ipAddr) {
- logger.Log(logger.LevelDebug, common.ProtocolHTTP, "", "connection refused, configured limit reached")
- s.sendForbiddenResponse(w, r, "configured connections limit reached")
- return
- }
- if common.IsBanned(ipAddr) {
- s.sendForbiddenResponse(w, r, "your IP address is banned")
- return
- }
- if delay, err := common.LimitRate(common.ProtocolHTTP, ipAddr); err != nil {
- delay += 499999999 * time.Nanosecond
- w.Header().Set("Retry-After", fmt.Sprintf("%.0f", delay.Seconds()))
- w.Header().Set("X-Retry-In", delay.String())
- s.sendTooManyRequestResponse(w, r, err)
- return
- }
- next.ServeHTTP(w, r)
- })
- }
- func (s *httpdServer) sendTooManyRequestResponse(w http.ResponseWriter, r *http.Request, err error) {
- if (s.enableWebAdmin || s.enableWebClient) && isWebRequest(r) {
- r = s.updateContextFromCookie(r)
- if s.enableWebClient && (isWebClientRequest(r) || !s.enableWebAdmin) {
- renderClientMessagePage(w, r, http.StatusText(http.StatusTooManyRequests), "Rate limit exceeded",
- http.StatusTooManyRequests, err, "")
- return
- }
- renderMessagePage(w, r, http.StatusText(http.StatusTooManyRequests), "Rate limit exceeded", http.StatusTooManyRequests,
- err, "")
- return
- }
- sendAPIResponse(w, r, err, http.StatusText(http.StatusTooManyRequests), http.StatusTooManyRequests)
- }
- func (s *httpdServer) sendForbiddenResponse(w http.ResponseWriter, r *http.Request, message string) {
- if (s.enableWebAdmin || s.enableWebClient) && isWebRequest(r) {
- r = s.updateContextFromCookie(r)
- if s.enableWebClient && (isWebClientRequest(r) || !s.enableWebAdmin) {
- renderClientForbiddenPage(w, r, message)
- return
- }
- renderForbiddenPage(w, r, message)
- return
- }
- sendAPIResponse(w, r, errors.New(message), message, http.StatusForbidden)
- }
- func (s *httpdServer) badHostHandler(w http.ResponseWriter, r *http.Request) {
- host := r.Host
- for _, header := range s.binding.Security.HostsProxyHeaders {
- if h := r.Header.Get(header); h != "" {
- host = h
- break
- }
- }
- s.sendForbiddenResponse(w, r, fmt.Sprintf("The host %#v is not allowed", host))
- }
- func (s *httpdServer) redirectToWebPath(w http.ResponseWriter, r *http.Request, webPath string) {
- if dataprovider.HasAdmin() {
- http.Redirect(w, r, webPath, http.StatusFound)
- return
- }
- if s.enableWebAdmin {
- http.Redirect(w, r, webAdminSetupPath, http.StatusFound)
- }
- }
- func (s *httpdServer) isStaticFileURL(r *http.Request) bool {
- var urlPath string
- rctx := chi.RouteContext(r.Context())
- if rctx != nil && rctx.RoutePath != "" {
- urlPath = rctx.RoutePath
- } else {
- urlPath = r.URL.Path
- }
- return !strings.HasPrefix(urlPath, webOpenAPIPath) && !strings.HasPrefix(urlPath, webStaticFilesPath)
- }
- func (s *httpdServer) initializeRouter() {
- s.tokenAuth = jwtauth.New(jwa.HS256.String(), getSigningKey(s.signingPassphrase), nil)
- s.router = chi.NewRouter()
- s.router.Use(middleware.RequestID)
- s.router.Use(s.checkConnection)
- s.router.Use(logger.NewStructuredLogger(logger.GetLogger()))
- s.router.Use(middleware.Recoverer)
- if s.binding.Security.Enabled {
- secureMiddleware := secure.New(secure.Options{
- AllowedHosts: s.binding.Security.AllowedHosts,
- AllowedHostsAreRegex: s.binding.Security.AllowedHostsAreRegex,
- HostsProxyHeaders: s.binding.Security.HostsProxyHeaders,
- SSLProxyHeaders: s.binding.Security.getHTTPSProxyHeaders(),
- STSSeconds: s.binding.Security.STSSeconds,
- STSIncludeSubdomains: s.binding.Security.STSIncludeSubdomains,
- STSPreload: s.binding.Security.STSPreload,
- ContentTypeNosniff: s.binding.Security.ContentTypeNosniff,
- ContentSecurityPolicy: s.binding.Security.ContentSecurityPolicy,
- PermissionsPolicy: s.binding.Security.PermissionsPolicy,
- CrossOriginOpenerPolicy: s.binding.Security.CrossOriginOpenerPolicy,
- ExpectCTHeader: s.binding.Security.ExpectCTHeader,
- })
- secureMiddleware.SetBadHostHandler(http.HandlerFunc(s.badHostHandler))
- s.router.Use(secureMiddleware.Handler)
- }
- if s.cors.Enabled {
- c := cors.New(cors.Options{
- AllowedOrigins: s.cors.AllowedOrigins,
- AllowedMethods: s.cors.AllowedMethods,
- AllowedHeaders: s.cors.AllowedHeaders,
- ExposedHeaders: s.cors.ExposedHeaders,
- MaxAge: s.cors.MaxAge,
- AllowCredentials: s.cors.AllowCredentials,
- })
- s.router.Use(c.Handler)
- }
- s.router.Use(middleware.GetHead)
- // StripSlashes causes infinite redirects at the root path if used with http.FileServer
- s.router.Use(middleware.Maybe(middleware.StripSlashes, s.isStaticFileURL))
- s.router.NotFound(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- if (s.enableWebAdmin || s.enableWebClient) && isWebRequest(r) {
- r = s.updateContextFromCookie(r)
- if s.enableWebClient && (isWebClientRequest(r) || !s.enableWebAdmin) {
- renderClientNotFoundPage(w, r, nil)
- return
- }
- renderNotFoundPage(w, r, nil)
- return
- }
- sendAPIResponse(w, r, nil, http.StatusText(http.StatusNotFound), http.StatusNotFound)
- }))
- s.router.Get(healthzPath, func(w http.ResponseWriter, r *http.Request) {
- render.PlainText(w, r, "ok")
- })
- // share API exposed to external users
- s.router.Get(sharesPath+"/{id}", downloadFromShare)
- s.router.Post(sharesPath+"/{id}", uploadFilesToShare)
- s.router.Post(sharesPath+"/{id}/{name}", uploadFileToShare)
- s.router.With(compressor.Handler).Get(sharesPath+"/{id}/dirs", readBrowsableShareContents)
- s.router.Get(sharesPath+"/{id}/files", downloadBrowsableSharedFile)
- s.router.Get(tokenPath, s.getToken)
- s.router.Post(adminPath+"/{username}/forgot-password", forgotAdminPassword)
- s.router.Post(adminPath+"/{username}/reset-password", resetAdminPassword)
- s.router.Post(userPath+"/{username}/forgot-password", forgotUserPassword)
- s.router.Post(userPath+"/{username}/reset-password", resetUserPassword)
- s.router.Group(func(router chi.Router) {
- router.Use(checkAPIKeyAuth(s.tokenAuth, dataprovider.APIKeyScopeAdmin))
- router.Use(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromHeader))
- router.Use(jwtAuthenticatorAPI)
- router.Get(versionPath, func(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- render.JSON(w, r, version.Get())
- })
- router.With(forbidAPIKeyAuthentication).Get(logoutPath, s.logout)
- router.With(forbidAPIKeyAuthentication).Get(adminProfilePath, getAdminProfile)
- router.With(forbidAPIKeyAuthentication).Put(adminProfilePath, updateAdminProfile)
- router.With(forbidAPIKeyAuthentication).Put(adminPwdPath, changeAdminPassword)
- // compatibility layer to remove in v2.2
- router.With(forbidAPIKeyAuthentication).Put(adminPwdCompatPath, changeAdminPassword)
- // admin TOTP APIs
- router.With(forbidAPIKeyAuthentication).Get(adminTOTPConfigsPath, getTOTPConfigs)
- router.With(forbidAPIKeyAuthentication).Post(adminTOTPGeneratePath, generateTOTPSecret)
- router.With(forbidAPIKeyAuthentication).Post(adminTOTPValidatePath, validateTOTPPasscode)
- router.With(forbidAPIKeyAuthentication).Post(adminTOTPSavePath, saveTOTPConfig)
- router.With(forbidAPIKeyAuthentication).Get(admin2FARecoveryCodesPath, getRecoveryCodes)
- router.With(forbidAPIKeyAuthentication).Post(admin2FARecoveryCodesPath, generateRecoveryCodes)
- router.With(checkPerm(dataprovider.PermAdminViewServerStatus)).
- Get(serverStatusPath, func(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- render.JSON(w, r, getServicesStatus())
- })
- router.With(checkPerm(dataprovider.PermAdminViewConnections)).
- Get(activeConnectionsPath, func(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- render.JSON(w, r, common.Connections.GetStats())
- })
- router.With(checkPerm(dataprovider.PermAdminCloseConnections)).
- Delete(activeConnectionsPath+"/{connectionID}", handleCloseConnection)
- router.With(checkPerm(dataprovider.PermAdminQuotaScans)).Get(quotaScanPath, getUsersQuotaScans)
- router.With(checkPerm(dataprovider.PermAdminQuotaScans)).Get(quotasBasePath+"/users/scans", getUsersQuotaScans)
- router.With(checkPerm(dataprovider.PermAdminQuotaScans)).Post(quotaScanPath, startUserQuotaScanCompat)
- router.With(checkPerm(dataprovider.PermAdminQuotaScans)).Post(quotasBasePath+"/users/{username}/scan", startUserQuotaScan)
- router.With(checkPerm(dataprovider.PermAdminQuotaScans)).Get(quotaScanVFolderPath, getFoldersQuotaScans)
- router.With(checkPerm(dataprovider.PermAdminQuotaScans)).Get(quotasBasePath+"/folders/scans", getFoldersQuotaScans)
- router.With(checkPerm(dataprovider.PermAdminQuotaScans)).Post(quotaScanVFolderPath, startFolderQuotaScanCompat)
- router.With(checkPerm(dataprovider.PermAdminQuotaScans)).Post(quotasBasePath+"/folders/{name}/scan", startFolderQuotaScan)
- router.With(checkPerm(dataprovider.PermAdminViewUsers)).Get(userPath, getUsers)
- router.With(checkPerm(dataprovider.PermAdminAddUsers)).Post(userPath, addUser)
- router.With(checkPerm(dataprovider.PermAdminViewUsers)).Get(userPath+"/{username}", getUserByUsername)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers)).Put(userPath+"/{username}", updateUser)
- router.With(checkPerm(dataprovider.PermAdminDeleteUsers)).Delete(userPath+"/{username}", deleteUser)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers)).Put(userPath+"/{username}/2fa/disable", disableUser2FA)
- router.With(checkPerm(dataprovider.PermAdminViewUsers)).Get(folderPath, getFolders)
- router.With(checkPerm(dataprovider.PermAdminViewUsers)).Get(folderPath+"/{name}", getFolderByName)
- router.With(checkPerm(dataprovider.PermAdminAddUsers)).Post(folderPath, addFolder)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers)).Put(folderPath+"/{name}", updateFolder)
- router.With(checkPerm(dataprovider.PermAdminDeleteUsers)).Delete(folderPath+"/{name}", deleteFolder)
- router.With(checkPerm(dataprovider.PermAdminManageSystem)).Get(dumpDataPath, dumpData)
- router.With(checkPerm(dataprovider.PermAdminManageSystem)).Get(loadDataPath, loadData)
- router.With(checkPerm(dataprovider.PermAdminManageSystem)).Post(loadDataPath, loadDataFromRequest)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers)).Put(updateUsedQuotaPath, updateUserQuotaUsageCompat)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers)).Put(quotasBasePath+"/users/{username}/usage",
- updateUserQuotaUsage)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers)).Put(quotasBasePath+"/users/{username}/transfer-usage",
- updateUserTransferQuotaUsage)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers)).Put(updateFolderUsedQuotaPath, updateFolderQuotaUsageCompat)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers)).Put(quotasBasePath+"/folders/{name}/usage",
- updateFolderQuotaUsage)
- router.With(checkPerm(dataprovider.PermAdminViewDefender)).Get(defenderHosts, getDefenderHosts)
- router.With(checkPerm(dataprovider.PermAdminViewDefender)).Get(defenderHosts+"/{id}", getDefenderHostByID)
- router.With(checkPerm(dataprovider.PermAdminManageDefender)).Delete(defenderHosts+"/{id}", deleteDefenderHostByID)
- router.With(checkPerm(dataprovider.PermAdminViewDefender)).Get(defenderBanTime, getBanTime)
- router.With(checkPerm(dataprovider.PermAdminViewDefender)).Get(defenderScore, getScore)
- router.With(checkPerm(dataprovider.PermAdminManageDefender)).Post(defenderUnban, unban)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins)).Get(adminPath, getAdmins)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins)).Post(adminPath, addAdmin)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins)).Get(adminPath+"/{username}", getAdminByUsername)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins)).Put(adminPath+"/{username}", updateAdmin)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins)).Delete(adminPath+"/{username}", deleteAdmin)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins)).Put(adminPath+"/{username}/2fa/disable", disableAdmin2FA)
- router.With(checkPerm(dataprovider.PermAdminRetentionChecks)).Get(retentionChecksPath, getRetentionChecks)
- router.With(checkPerm(dataprovider.PermAdminRetentionChecks)).Post(retentionBasePath+"/{username}/check",
- startRetentionCheck)
- router.With(checkPerm(dataprovider.PermAdminMetadataChecks)).Get(metadataChecksPath, getMetadataChecks)
- router.With(checkPerm(dataprovider.PermAdminMetadataChecks)).Post(metadataBasePath+"/{username}/check",
- startMetadataCheck)
- router.With(checkPerm(dataprovider.PermAdminViewEvents), compressor.Handler).
- Get(fsEventsPath, searchFsEvents)
- router.With(checkPerm(dataprovider.PermAdminViewEvents), compressor.Handler).
- Get(providerEventsPath, searchProviderEvents)
- router.With(forbidAPIKeyAuthentication, checkPerm(dataprovider.PermAdminManageAPIKeys)).
- Get(apiKeysPath, getAPIKeys)
- router.With(forbidAPIKeyAuthentication, checkPerm(dataprovider.PermAdminManageAPIKeys)).
- Post(apiKeysPath, addAPIKey)
- router.With(forbidAPIKeyAuthentication, checkPerm(dataprovider.PermAdminManageAPIKeys)).
- Get(apiKeysPath+"/{id}", getAPIKeyByID)
- router.With(forbidAPIKeyAuthentication, checkPerm(dataprovider.PermAdminManageAPIKeys)).
- Put(apiKeysPath+"/{id}", updateAPIKey)
- router.With(forbidAPIKeyAuthentication, checkPerm(dataprovider.PermAdminManageAPIKeys)).
- Delete(apiKeysPath+"/{id}", deleteAPIKey)
- })
- s.router.Get(userTokenPath, s.getUserToken)
- s.router.Group(func(router chi.Router) {
- router.Use(checkAPIKeyAuth(s.tokenAuth, dataprovider.APIKeyScopeUser))
- router.Use(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromHeader))
- router.Use(jwtAuthenticatorAPIUser)
- router.With(forbidAPIKeyAuthentication).Get(userLogoutPath, s.logout)
- router.With(forbidAPIKeyAuthentication, checkHTTPUserPerm(sdk.WebClientPasswordChangeDisabled)).
- Put(userPwdPath, changeUserPassword)
- router.With(forbidAPIKeyAuthentication, checkHTTPUserPerm(sdk.WebClientPubKeyChangeDisabled)).
- Get(userPublicKeysPath, getUserPublicKeys)
- router.With(forbidAPIKeyAuthentication, checkHTTPUserPerm(sdk.WebClientPubKeyChangeDisabled)).
- Put(userPublicKeysPath, setUserPublicKeys)
- router.With(forbidAPIKeyAuthentication).Get(userProfilePath, getUserProfile)
- router.With(forbidAPIKeyAuthentication).Put(userProfilePath, updateUserProfile)
- // user TOTP APIs
- router.With(forbidAPIKeyAuthentication, checkHTTPUserPerm(sdk.WebClientMFADisabled)).
- Get(userTOTPConfigsPath, getTOTPConfigs)
- router.With(forbidAPIKeyAuthentication, checkHTTPUserPerm(sdk.WebClientMFADisabled)).
- Post(userTOTPGeneratePath, generateTOTPSecret)
- router.With(forbidAPIKeyAuthentication, checkHTTPUserPerm(sdk.WebClientMFADisabled)).
- Post(userTOTPValidatePath, validateTOTPPasscode)
- router.With(forbidAPIKeyAuthentication, checkHTTPUserPerm(sdk.WebClientMFADisabled)).
- Post(userTOTPSavePath, saveTOTPConfig)
- router.With(forbidAPIKeyAuthentication, checkHTTPUserPerm(sdk.WebClientMFADisabled)).
- Get(user2FARecoveryCodesPath, getRecoveryCodes)
- router.With(forbidAPIKeyAuthentication, checkHTTPUserPerm(sdk.WebClientMFADisabled)).
- Post(user2FARecoveryCodesPath, generateRecoveryCodes)
- // compatibility layer to remove in v2.3
- router.With(compressor.Handler).Get(userFolderPath, readUserFolder)
- router.Get(userFilePath, getUserFile)
- router.With(compressor.Handler).Get(userDirsPath, readUserFolder)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled)).Post(userDirsPath, createUserDir)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled)).Patch(userDirsPath, renameUserDir)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled)).Delete(userDirsPath, deleteUserDir)
- router.Get(userFilesPath, getUserFile)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled)).Post(userFilesPath, uploadUserFiles)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled)).Patch(userFilesPath, renameUserFile)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled)).Delete(userFilesPath, deleteUserFile)
- router.Post(userStreamZipPath, getUserFilesAsZipStream)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled)).Get(userSharesPath, getShares)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled)).Post(userSharesPath, addShare)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled)).Get(userSharesPath+"/{id}", getShareByID)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled)).Put(userSharesPath+"/{id}", updateShare)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled)).Delete(userSharesPath+"/{id}", deleteShare)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled)).Post(userUploadFilePath, uploadUserFile)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled)).Patch(userFilesDirsMetadataPath, setFileDirMetadata)
- })
- if s.renderOpenAPI {
- s.router.Group(func(router chi.Router) {
- router.Use(compressor.Handler)
- fileServer(router, webOpenAPIPath, http.Dir(s.openAPIPath))
- })
- }
- if s.enableWebAdmin || s.enableWebClient {
- s.router.Group(func(router chi.Router) {
- router.Use(compressor.Handler)
- fileServer(router, webStaticFilesPath, http.Dir(s.staticFilesPath))
- })
- if s.binding.OIDC.isEnabled() {
- s.router.Get(webOIDCRedirectPath, s.handleOIDCRedirect)
- }
- if s.enableWebClient {
- s.router.Get(webRootPath, func(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- s.redirectToWebPath(w, r, webClientLoginPath)
- })
- s.router.Get(webBasePath, func(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- s.redirectToWebPath(w, r, webClientLoginPath)
- })
- } else {
- s.router.Get(webRootPath, func(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- s.redirectToWebPath(w, r, webAdminLoginPath)
- })
- s.router.Get(webBasePath, func(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- s.redirectToWebPath(w, r, webAdminLoginPath)
- })
- }
- }
- s.setupWebClientRoutes()
- s.setupWebAdminRoutes()
- }
- func (s *httpdServer) setupWebClientRoutes() {
- if s.enableWebClient {
- s.router.Get(webBaseClientPath, func(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- http.Redirect(w, r, webClientLoginPath, http.StatusFound)
- })
- s.router.Get(webClientLoginPath, s.handleClientWebLogin)
- if s.binding.OIDC.isEnabled() {
- s.router.Get(webClientOIDCLoginPath, s.handleWebClientOIDCLogin)
- }
- s.router.Post(webClientLoginPath, s.handleWebClientLoginPost)
- s.router.Get(webClientForgotPwdPath, handleWebClientForgotPwd)
- s.router.Post(webClientForgotPwdPath, handleWebClientForgotPwdPost)
- s.router.Get(webClientResetPwdPath, handleWebClientPasswordReset)
- s.router.Post(webClientResetPwdPath, s.handleWebClientPasswordResetPost)
- s.router.With(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromCookie),
- jwtAuthenticatorPartial(tokenAudienceWebClientPartial)).
- Get(webClientTwoFactorPath, handleWebClientTwoFactor)
- s.router.With(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromCookie),
- jwtAuthenticatorPartial(tokenAudienceWebClientPartial)).
- Post(webClientTwoFactorPath, s.handleWebClientTwoFactorPost)
- s.router.With(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromCookie),
- jwtAuthenticatorPartial(tokenAudienceWebClientPartial)).
- Get(webClientTwoFactorRecoveryPath, handleWebClientTwoFactorRecovery)
- s.router.With(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromCookie),
- jwtAuthenticatorPartial(tokenAudienceWebClientPartial)).
- Post(webClientTwoFactorRecoveryPath, s.handleWebClientTwoFactorRecoveryPost)
- // share API exposed to external users
- s.router.Get(webClientPubSharesPath+"/{id}", downloadFromShare)
- s.router.Get(webClientPubSharesPath+"/{id}/browse", handleShareGetFiles)
- s.router.Get(webClientPubSharesPath+"/{id}/upload", handleClientUploadToShare)
- s.router.With(compressor.Handler).Get(webClientPubSharesPath+"/{id}/dirs", handleShareGetDirContents)
- s.router.Post(webClientPubSharesPath+"/{id}", uploadFilesToShare)
- s.router.Post(webClientPubSharesPath+"/{id}/{name}", uploadFileToShare)
- s.router.Group(func(router chi.Router) {
- if s.binding.OIDC.isEnabled() {
- router.Use(s.oidcTokenAuthenticator(tokenAudienceWebClient))
- }
- router.Use(jwtauth.Verify(s.tokenAuth, tokenFromContext, jwtauth.TokenFromCookie))
- router.Use(jwtAuthenticatorWebClient)
- router.Get(webClientLogoutPath, s.handleWebClientLogout)
- router.With(s.refreshCookie).Get(webClientFilesPath, s.handleClientGetFiles)
- router.With(s.refreshCookie).Get(webClientViewPDFPath, handleClientViewPDF)
- router.With(s.refreshCookie, verifyCSRFHeader).Get(webClientFilePath, getUserFile)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled), verifyCSRFHeader).
- Post(webClientFilePath, uploadUserFile)
- router.With(s.refreshCookie).Get(webClientEditFilePath, handleClientEditFile)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled), verifyCSRFHeader).
- Patch(webClientFilesPath, renameUserFile)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled), verifyCSRFHeader).
- Delete(webClientFilesPath, deleteUserFile)
- router.With(compressor.Handler, s.refreshCookie).Get(webClientDirsPath, s.handleClientGetDirContents)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled), verifyCSRFHeader).
- Post(webClientDirsPath, createUserDir)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled), verifyCSRFHeader).
- Patch(webClientDirsPath, renameUserDir)
- router.With(checkHTTPUserPerm(sdk.WebClientWriteDisabled), verifyCSRFHeader).
- Delete(webClientDirsPath, deleteUserDir)
- router.With(s.refreshCookie).Get(webClientDownloadZipPath, handleWebClientDownloadZip)
- router.With(s.refreshCookie, requireBuiltinLogin).Get(webClientProfilePath, handleClientGetProfile)
- router.With(requireBuiltinLogin).Post(webClientProfilePath, handleWebClientProfilePost)
- router.With(checkHTTPUserPerm(sdk.WebClientPasswordChangeDisabled)).
- Get(webChangeClientPwdPath, handleWebClientChangePwd)
- router.With(checkHTTPUserPerm(sdk.WebClientPasswordChangeDisabled)).
- Post(webChangeClientPwdPath, s.handleWebClientChangePwdPost)
- router.With(checkHTTPUserPerm(sdk.WebClientMFADisabled), s.refreshCookie).
- Get(webClientMFAPath, handleWebClientMFA)
- router.With(checkHTTPUserPerm(sdk.WebClientMFADisabled), verifyCSRFHeader).
- Post(webClientTOTPGeneratePath, generateTOTPSecret)
- router.With(checkHTTPUserPerm(sdk.WebClientMFADisabled), verifyCSRFHeader).
- Post(webClientTOTPValidatePath, validateTOTPPasscode)
- router.With(checkHTTPUserPerm(sdk.WebClientMFADisabled), verifyCSRFHeader).
- Post(webClientTOTPSavePath, saveTOTPConfig)
- router.With(checkHTTPUserPerm(sdk.WebClientMFADisabled), verifyCSRFHeader, s.refreshCookie).
- Get(webClientRecoveryCodesPath, getRecoveryCodes)
- router.With(checkHTTPUserPerm(sdk.WebClientMFADisabled), verifyCSRFHeader).
- Post(webClientRecoveryCodesPath, generateRecoveryCodes)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled), s.refreshCookie).
- Get(webClientSharesPath, handleClientGetShares)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled), s.refreshCookie).
- Get(webClientSharePath, handleClientAddShareGet)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled)).Post(webClientSharePath,
- handleClientAddSharePost)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled), s.refreshCookie).
- Get(webClientSharePath+"/{id}", handleClientUpdateShareGet)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled)).
- Post(webClientSharePath+"/{id}", handleClientUpdateSharePost)
- router.With(checkHTTPUserPerm(sdk.WebClientSharesDisabled), verifyCSRFHeader).
- Delete(webClientSharePath+"/{id}", deleteShare)
- })
- }
- }
- func (s *httpdServer) setupWebAdminRoutes() {
- if s.enableWebAdmin {
- s.router.Get(webBaseAdminPath, func(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxLoginBodySize)
- s.redirectToWebPath(w, r, webAdminLoginPath)
- })
- s.router.Get(webAdminLoginPath, s.handleWebAdminLogin)
- if s.binding.OIDC.hasRoles() {
- s.router.Get(webAdminOIDCLoginPath, s.handleWebAdminOIDCLogin)
- }
- s.router.Post(webAdminLoginPath, s.handleWebAdminLoginPost)
- s.router.Get(webAdminSetupPath, handleWebAdminSetupGet)
- s.router.Post(webAdminSetupPath, s.handleWebAdminSetupPost)
- s.router.Get(webAdminForgotPwdPath, handleWebAdminForgotPwd)
- s.router.Post(webAdminForgotPwdPath, handleWebAdminForgotPwdPost)
- s.router.Get(webAdminResetPwdPath, handleWebAdminPasswordReset)
- s.router.Post(webAdminResetPwdPath, s.handleWebAdminPasswordResetPost)
- s.router.With(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromCookie),
- jwtAuthenticatorPartial(tokenAudienceWebAdminPartial)).
- Get(webAdminTwoFactorPath, handleWebAdminTwoFactor)
- s.router.With(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromCookie),
- jwtAuthenticatorPartial(tokenAudienceWebAdminPartial)).
- Post(webAdminTwoFactorPath, s.handleWebAdminTwoFactorPost)
- s.router.With(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromCookie),
- jwtAuthenticatorPartial(tokenAudienceWebAdminPartial)).
- Get(webAdminTwoFactorRecoveryPath, handleWebAdminTwoFactorRecovery)
- s.router.With(jwtauth.Verify(s.tokenAuth, jwtauth.TokenFromCookie),
- jwtAuthenticatorPartial(tokenAudienceWebAdminPartial)).
- Post(webAdminTwoFactorRecoveryPath, s.handleWebAdminTwoFactorRecoveryPost)
- s.router.Group(func(router chi.Router) {
- if s.binding.OIDC.isEnabled() {
- router.Use(s.oidcTokenAuthenticator(tokenAudienceWebAdmin))
- }
- router.Use(jwtauth.Verify(s.tokenAuth, tokenFromContext, jwtauth.TokenFromCookie))
- router.Use(jwtAuthenticatorWebAdmin)
- router.Get(webLogoutPath, s.handleWebAdminLogout)
- router.With(s.refreshCookie, requireBuiltinLogin).Get(webAdminProfilePath, handleWebAdminProfile)
- router.With(requireBuiltinLogin).Post(webAdminProfilePath, handleWebAdminProfilePost)
- router.With(s.refreshCookie, requireBuiltinLogin).Get(webChangeAdminPwdPath, handleWebAdminChangePwd)
- router.With(requireBuiltinLogin).Post(webChangeAdminPwdPath, s.handleWebAdminChangePwdPost)
- router.With(s.refreshCookie, requireBuiltinLogin).Get(webAdminMFAPath, handleWebAdminMFA)
- router.With(verifyCSRFHeader, requireBuiltinLogin).Post(webAdminTOTPGeneratePath, generateTOTPSecret)
- router.With(verifyCSRFHeader, requireBuiltinLogin).Post(webAdminTOTPValidatePath, validateTOTPPasscode)
- router.With(verifyCSRFHeader, requireBuiltinLogin).Post(webAdminTOTPSavePath, saveTOTPConfig)
- router.With(verifyCSRFHeader, requireBuiltinLogin, s.refreshCookie).Get(webAdminRecoveryCodesPath, getRecoveryCodes)
- router.With(verifyCSRFHeader, requireBuiltinLogin).Post(webAdminRecoveryCodesPath, generateRecoveryCodes)
- router.With(checkPerm(dataprovider.PermAdminViewUsers), s.refreshCookie).
- Get(webUsersPath, handleGetWebUsers)
- router.With(checkPerm(dataprovider.PermAdminAddUsers), s.refreshCookie).
- Get(webUserPath, handleWebAddUserGet)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers), s.refreshCookie).
- Get(webUserPath+"/{username}", handleWebUpdateUserGet)
- router.With(checkPerm(dataprovider.PermAdminAddUsers)).Post(webUserPath, handleWebAddUserPost)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers)).Post(webUserPath+"/{username}", handleWebUpdateUserPost)
- router.With(checkPerm(dataprovider.PermAdminViewConnections), s.refreshCookie).
- Get(webConnectionsPath, handleWebGetConnections)
- router.With(checkPerm(dataprovider.PermAdminViewUsers), s.refreshCookie).
- Get(webFoldersPath, handleWebGetFolders)
- router.With(checkPerm(dataprovider.PermAdminAddUsers), s.refreshCookie).
- Get(webFolderPath, handleWebAddFolderGet)
- router.With(checkPerm(dataprovider.PermAdminAddUsers)).Post(webFolderPath, handleWebAddFolderPost)
- router.With(checkPerm(dataprovider.PermAdminViewServerStatus), s.refreshCookie).
- Get(webStatusPath, handleWebGetStatus)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins), s.refreshCookie).
- Get(webAdminsPath, handleGetWebAdmins)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins), s.refreshCookie).
- Get(webAdminPath, handleWebAddAdminGet)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins), s.refreshCookie).
- Get(webAdminPath+"/{username}", handleWebUpdateAdminGet)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins)).Post(webAdminPath, handleWebAddAdminPost)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins)).Post(webAdminPath+"/{username}",
- handleWebUpdateAdminPost)
- router.With(checkPerm(dataprovider.PermAdminManageAdmins), verifyCSRFHeader).
- Delete(webAdminPath+"/{username}", deleteAdmin)
- router.With(checkPerm(dataprovider.PermAdminCloseConnections), verifyCSRFHeader).
- Delete(webConnectionsPath+"/{connectionID}", handleCloseConnection)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers), s.refreshCookie).
- Get(webFolderPath+"/{name}", handleWebUpdateFolderGet)
- router.With(checkPerm(dataprovider.PermAdminChangeUsers)).Post(webFolderPath+"/{name}",
- handleWebUpdateFolderPost)
- router.With(checkPerm(dataprovider.PermAdminDeleteUsers), verifyCSRFHeader).
- Delete(webFolderPath+"/{name}", deleteFolder)
- router.With(checkPerm(dataprovider.PermAdminQuotaScans), verifyCSRFHeader).
- Post(webScanVFolderPath+"/{name}", startFolderQuotaScan)
- router.With(checkPerm(dataprovider.PermAdminDeleteUsers), verifyCSRFHeader).
- Delete(webUserPath+"/{username}", deleteUser)
- router.With(checkPerm(dataprovider.PermAdminQuotaScans), verifyCSRFHeader).
- Post(webQuotaScanPath+"/{username}", startUserQuotaScan)
- router.With(checkPerm(dataprovider.PermAdminManageSystem)).Get(webMaintenancePath, handleWebMaintenance)
- router.With(checkPerm(dataprovider.PermAdminManageSystem)).Get(webBackupPath, dumpData)
- router.With(checkPerm(dataprovider.PermAdminManageSystem)).Post(webRestorePath, handleWebRestore)
- router.With(checkPerm(dataprovider.PermAdminManageSystem), s.refreshCookie).
- Get(webTemplateUser, handleWebTemplateUserGet)
- router.With(checkPerm(dataprovider.PermAdminManageSystem)).Post(webTemplateUser, handleWebTemplateUserPost)
- router.With(checkPerm(dataprovider.PermAdminManageSystem), s.refreshCookie).
- Get(webTemplateFolder, handleWebTemplateFolderGet)
- router.With(checkPerm(dataprovider.PermAdminManageSystem)).Post(webTemplateFolder, handleWebTemplateFolderPost)
- router.With(checkPerm(dataprovider.PermAdminViewDefender)).Get(webDefenderPath, handleWebDefenderPage)
- router.With(checkPerm(dataprovider.PermAdminViewDefender)).Get(webDefenderHostsPath, getDefenderHosts)
- router.With(checkPerm(dataprovider.PermAdminManageDefender)).Delete(webDefenderHostsPath+"/{id}",
- deleteDefenderHostByID)
- })
- }
- }
|