2019-11-23 02:33:31 +03:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2019 The Gitea Authors. All rights reserved.
2022-11-27 21:20:29 +03:00
// SPDX-License-Identifier: MIT
2019-11-23 02:33:31 +03:00
2021-06-09 20:53:16 +03:00
package auth
2019-11-23 02:33:31 +03:00
import (
"fmt"
2021-01-05 16:05:40 +03:00
"net/http"
2021-05-15 18:32:09 +03:00
"regexp"
2019-11-23 02:33:31 +03:00
"strings"
2021-11-24 12:49:20 +03:00
user_model "code.gitea.io/gitea/models/user"
2022-01-14 18:03:31 +03:00
"code.gitea.io/gitea/modules/auth/webauthn"
2019-11-23 02:33:31 +03:00
"code.gitea.io/gitea/modules/log"
2024-02-04 16:29:09 +03:00
"code.gitea.io/gitea/modules/optional"
2021-12-20 17:12:26 +03:00
"code.gitea.io/gitea/modules/session"
2021-05-15 18:32:09 +03:00
"code.gitea.io/gitea/modules/setting"
2021-01-30 11:55:53 +03:00
"code.gitea.io/gitea/modules/web/middleware"
2024-02-27 10:12:22 +03:00
gitea_context "code.gitea.io/gitea/services/context"
2024-02-04 16:29:09 +03:00
user_service "code.gitea.io/gitea/services/user"
2019-11-23 02:33:31 +03:00
)
2021-06-09 20:53:16 +03:00
// Init should be called exactly once when the application starts to allow plugins
2019-11-23 02:33:31 +03:00
// to allocate necessary resources
func Init ( ) {
2022-01-14 18:03:31 +03:00
webauthn . Init ( )
2019-11-23 02:33:31 +03:00
}
// isAttachmentDownload check if request is a file download (GET) with URL to an attachment
2021-01-05 16:05:40 +03:00
func isAttachmentDownload ( req * http . Request ) bool {
return strings . HasPrefix ( req . URL . Path , "/attachments/" ) && req . Method == "GET"
2019-11-23 02:33:31 +03:00
}
2022-03-30 11:42:47 +03:00
// isContainerPath checks if the request targets the container endpoint
func isContainerPath ( req * http . Request ) bool {
return strings . HasPrefix ( req . URL . Path , "/v2/" )
}
2022-01-20 20:46:10 +03:00
var (
2023-10-10 18:33:56 +03:00
gitRawOrAttachPathRe = regexp . MustCompile ( ` ^/[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+/(?:(?:git-(?:(?:upload)|(?:receive))-pack$)|(?:info/refs$)|(?:HEAD$)|(?:objects/)|(?:raw/)|(?:releases/download/)|(?:attachments/)) ` )
lfsPathRe = regexp . MustCompile ( ` ^/[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+/info/lfs/ ` )
2024-02-23 20:49:46 +03:00
archivePathRe = regexp . MustCompile ( ` ^/[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+/archive/ ` )
2022-01-20 20:46:10 +03:00
)
2021-05-15 18:32:09 +03:00
2023-10-10 18:33:56 +03:00
func isGitRawOrAttachPath ( req * http . Request ) bool {
return gitRawOrAttachPathRe . MatchString ( req . URL . Path )
}
func isGitRawOrAttachOrLFSPath ( req * http . Request ) bool {
if isGitRawOrAttachPath ( req ) {
2021-05-15 18:32:09 +03:00
return true
}
if setting . LFS . StartServer {
return lfsPathRe . MatchString ( req . URL . Path )
}
return false
}
2024-02-23 20:49:46 +03:00
func isArchivePath ( req * http . Request ) bool {
return archivePathRe . MatchString ( req . URL . Path )
}
2019-11-23 02:33:31 +03:00
// handleSignIn clears existing session variables and stores new ones for the specified user object
2021-11-24 12:49:20 +03:00
func handleSignIn ( resp http . ResponseWriter , req * http . Request , sess SessionStore , user * user_model . User ) {
2021-12-20 17:12:26 +03:00
// We need to regenerate the session...
newSess , err := session . RegenerateSession ( resp , req )
if err != nil {
log . Error ( fmt . Sprintf ( "Error regenerating session: %v" , err ) )
} else {
sess = newSess
}
2019-11-23 02:33:31 +03:00
_ = sess . Delete ( "openid_verified_uri" )
_ = sess . Delete ( "openid_signin_remember" )
_ = sess . Delete ( "openid_determined_email" )
_ = sess . Delete ( "openid_determined_username" )
_ = sess . Delete ( "twofaUid" )
_ = sess . Delete ( "twofaRemember" )
2022-01-14 18:03:31 +03:00
_ = sess . Delete ( "webauthnAssertion" )
2019-11-23 02:33:31 +03:00
_ = sess . Delete ( "linkAccount" )
2021-12-20 17:12:26 +03:00
err = sess . Set ( "uid" , user . ID )
2019-11-23 02:33:31 +03:00
if err != nil {
log . Error ( fmt . Sprintf ( "Error setting session: %v" , err ) )
}
// Language setting of the user overwrites the one previously set
// If the user does not have a locale set, we save the current one.
if len ( user . Language ) == 0 {
2021-01-30 11:55:53 +03:00
lc := middleware . Locale ( resp , req )
2024-02-04 16:29:09 +03:00
opts := & user_service . UpdateOptions {
Language : optional . Some ( lc . Language ( ) ) ,
}
if err := user_service . UpdateUser ( req . Context ( ) , user , opts ) ; err != nil {
2019-11-23 02:33:31 +03:00
log . Error ( fmt . Sprintf ( "Error updating user language [user: %d, locale: %s]" , user . ID , user . Language ) )
return
}
}
2021-03-07 11:12:43 +03:00
middleware . SetLocaleCookie ( resp , user . Language , 0 )
2019-11-23 02:33:31 +03:00
// Clear whatever CSRF has right now, force to generate a new one
2023-05-23 04:29:15 +03:00
if ctx := gitea_context . GetWebContext ( req ) ; ctx != nil {
2023-04-13 22:45:33 +03:00
ctx . Csrf . DeleteCookie ( ctx )
}
2019-11-23 02:33:31 +03:00
}