2019-11-22 23:33:31 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-22 23:33:31 +00:00
|
|
|
|
2021-06-09 17:53:16 +00:00
|
|
|
package auth
|
2019-11-22 23:33:31 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-01-05 13:05:40 +00:00
|
|
|
"net/http"
|
2021-05-15 15:32:09 +00:00
|
|
|
"regexp"
|
2019-11-22 23:33:31 +00:00
|
|
|
"strings"
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2022-01-14 15:03:31 +00:00
|
|
|
"code.gitea.io/gitea/modules/auth/webauthn"
|
2019-11-22 23:33:31 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2024-02-04 13:29:09 +00:00
|
|
|
"code.gitea.io/gitea/modules/optional"
|
2021-12-20 14:12:26 +00:00
|
|
|
"code.gitea.io/gitea/modules/session"
|
2021-05-15 15:32:09 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-01-30 08:55:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web/middleware"
|
2024-02-27 07:12:22 +00:00
|
|
|
gitea_context "code.gitea.io/gitea/services/context"
|
2024-02-04 13:29:09 +00:00
|
|
|
user_service "code.gitea.io/gitea/services/user"
|
2019-11-22 23:33:31 +00:00
|
|
|
)
|
|
|
|
|
2021-06-09 17:53:16 +00:00
|
|
|
// Init should be called exactly once when the application starts to allow plugins
|
2019-11-22 23:33:31 +00:00
|
|
|
// to allocate necessary resources
|
|
|
|
func Init() {
|
2022-01-14 15:03:31 +00:00
|
|
|
webauthn.Init()
|
2019-11-22 23:33:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// isAttachmentDownload check if request is a file download (GET) with URL to an attachment
|
2021-01-05 13:05:40 +00:00
|
|
|
func isAttachmentDownload(req *http.Request) bool {
|
|
|
|
return strings.HasPrefix(req.URL.Path, "/attachments/") && req.Method == "GET"
|
2019-11-22 23:33:31 +00:00
|
|
|
}
|
|
|
|
|
2022-03-30 08:42:47 +00: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 17:46:10 +00:00
|
|
|
var (
|
2023-10-10 15:33:56 +00: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 17:49:46 +00:00
|
|
|
archivePathRe = regexp.MustCompile(`^/[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+/archive/`)
|
2022-01-20 17:46:10 +00:00
|
|
|
)
|
2021-05-15 15:32:09 +00:00
|
|
|
|
2023-10-10 15:33:56 +00: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 15:32:09 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
if setting.LFS.StartServer {
|
|
|
|
return lfsPathRe.MatchString(req.URL.Path)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2024-02-23 17:49:46 +00:00
|
|
|
func isArchivePath(req *http.Request) bool {
|
|
|
|
return archivePathRe.MatchString(req.URL.Path)
|
|
|
|
}
|
|
|
|
|
2019-11-22 23:33:31 +00:00
|
|
|
// handleSignIn clears existing session variables and stores new ones for the specified user object
|
2021-11-24 09:49:20 +00:00
|
|
|
func handleSignIn(resp http.ResponseWriter, req *http.Request, sess SessionStore, user *user_model.User) {
|
2021-12-20 14:12:26 +00: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-22 23:33:31 +00: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 15:03:31 +00:00
|
|
|
_ = sess.Delete("webauthnAssertion")
|
2019-11-22 23:33:31 +00:00
|
|
|
_ = sess.Delete("linkAccount")
|
2021-12-20 14:12:26 +00:00
|
|
|
err = sess.Set("uid", user.ID)
|
2019-11-22 23:33:31 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Error(fmt.Sprintf("Error setting session: %v", err))
|
|
|
|
}
|
|
|
|
err = sess.Set("uname", user.Name)
|
|
|
|
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 08:55:53 +00:00
|
|
|
lc := middleware.Locale(resp, req)
|
2024-02-04 13:29:09 +00:00
|
|
|
opts := &user_service.UpdateOptions{
|
|
|
|
Language: optional.Some(lc.Language()),
|
|
|
|
}
|
|
|
|
if err := user_service.UpdateUser(req.Context(), user, opts); err != nil {
|
2019-11-22 23:33:31 +00:00
|
|
|
log.Error(fmt.Sprintf("Error updating user language [user: %d, locale: %s]", user.ID, user.Language))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-07 08:12:43 +00:00
|
|
|
middleware.SetLocaleCookie(resp, user.Language, 0)
|
2019-11-22 23:33:31 +00:00
|
|
|
|
2024-10-10 03:48:21 +00:00
|
|
|
// force to generate a new CSRF token
|
2023-05-23 01:29:15 +00:00
|
|
|
if ctx := gitea_context.GetWebContext(req); ctx != nil {
|
2024-10-10 03:48:21 +00:00
|
|
|
ctx.Csrf.PrepareForSessionUser(ctx)
|
2023-04-13 19:45:33 +00:00
|
|
|
}
|
2019-11-22 23:33:31 +00:00
|
|
|
}
|