2014-03-15 16:31:50 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-04-19 14:29:26 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2014-03-15 16:31:50 +05:30
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
package context
|
2014-03-15 16:31:50 +05:30
|
|
|
|
|
|
|
import (
|
2021-04-05 21:00:52 +05:30
|
|
|
"net/http"
|
2022-06-20 00:53:00 +05:30
|
|
|
"strings"
|
2021-04-05 21:00:52 +05:30
|
|
|
|
2022-01-02 18:42:35 +05:30
|
|
|
"code.gitea.io/gitea/models/auth"
|
2019-02-19 12:49:28 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-03-07 13:42:43 +05:30
|
|
|
"code.gitea.io/gitea/modules/web/middleware"
|
2014-03-15 16:31:50 +05:30
|
|
|
)
|
|
|
|
|
2016-11-25 12:21:01 +05:30
|
|
|
// ToggleOptions contains required or check options
|
2014-03-22 23:14:02 +05:30
|
|
|
type ToggleOptions struct {
|
2016-03-11 22:26:52 +05:30
|
|
|
SignInRequired bool
|
|
|
|
SignOutRequired bool
|
|
|
|
AdminRequired bool
|
|
|
|
DisableCSRF bool
|
2015-08-14 00:13:40 +05:30
|
|
|
}
|
|
|
|
|
2016-11-25 12:21:01 +05:30
|
|
|
// Toggle returns toggle options as middleware
|
2021-01-26 21:06:53 +05:30
|
|
|
func Toggle(options *ToggleOptions) func(ctx *Context) {
|
2014-03-15 16:31:50 +05:30
|
|
|
return func(ctx *Context) {
|
2016-07-16 07:52:16 +05:30
|
|
|
// Check prohibit login users.
|
2018-09-13 17:34:25 +05:30
|
|
|
if ctx.IsSigned {
|
2022-03-22 12:33:22 +05:30
|
|
|
if !ctx.Doer.IsActive && setting.Service.RegisterEmailConfirm {
|
2019-02-19 12:49:28 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, "user/auth/activate")
|
2019-02-19 12:49:28 +05:30
|
|
|
return
|
2021-01-26 21:06:53 +05:30
|
|
|
}
|
2022-03-22 12:33:22 +05:30
|
|
|
if !ctx.Doer.IsActive || ctx.Doer.ProhibitLogin {
|
|
|
|
log.Info("Failed authentication attempt for %s from %s", ctx.Doer.Name, ctx.RemoteAddr())
|
2018-09-13 17:34:25 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.prohibit_login")
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, "user/auth/prohibit_login")
|
2018-09-13 17:34:25 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-22 12:33:22 +05:30
|
|
|
if ctx.Doer.MustChangePassword {
|
2019-02-28 13:31:42 +05:30
|
|
|
if ctx.Req.URL.Path != "/user/settings/change_password" {
|
2022-06-20 00:53:00 +05:30
|
|
|
if strings.HasPrefix(ctx.Req.UserAgent(), "git") {
|
|
|
|
ctx.Error(http.StatusUnauthorized, ctx.Tr("auth.must_change_password"))
|
|
|
|
return
|
|
|
|
}
|
2019-02-28 13:31:42 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.must_change_password")
|
|
|
|
ctx.Data["ChangePasscodeLink"] = setting.AppSubURL + "/user/change_password"
|
2020-05-27 04:09:39 +05:30
|
|
|
if ctx.Req.URL.Path != "/user/events" {
|
2021-03-07 13:42:43 +05:30
|
|
|
middleware.SetRedirectToCookie(ctx.Resp, setting.AppSubURL+ctx.Req.URL.RequestURI())
|
2020-05-27 04:09:39 +05:30
|
|
|
}
|
2019-02-28 13:31:42 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/change_password")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else if ctx.Req.URL.Path == "/user/settings/change_password" {
|
|
|
|
// make sure that the form cannot be accessed by users who don't need this
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/")
|
2018-09-13 17:34:25 +05:30
|
|
|
return
|
|
|
|
}
|
2016-07-16 07:52:16 +05:30
|
|
|
}
|
|
|
|
|
2014-05-05 22:38:01 +05:30
|
|
|
// Redirect to dashboard if user tries to visit any non-login page.
|
2019-12-24 05:41:12 +05:30
|
|
|
if options.SignOutRequired && ctx.IsSigned && ctx.Req.URL.RequestURI() != "/" {
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/")
|
2014-03-20 17:20:26 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
if !options.SignOutRequired && !options.DisableCSRF && ctx.Req.Method == "POST" {
|
2022-04-08 10:51:05 +05:30
|
|
|
ctx.csrf.Validate(ctx)
|
2014-08-01 02:55:34 +05:30
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2014-03-22 23:14:02 +05:30
|
|
|
}
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
if options.SignInRequired {
|
2014-03-22 23:14:02 +05:30
|
|
|
if !ctx.IsSigned {
|
2020-08-09 04:09:40 +05:30
|
|
|
if ctx.Req.URL.Path != "/user/events" {
|
2021-03-07 13:42:43 +05:30
|
|
|
middleware.SetRedirectToCookie(ctx.Resp, setting.AppSubURL+ctx.Req.URL.RequestURI())
|
2020-08-09 04:09:40 +05:30
|
|
|
}
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/login")
|
2014-03-22 23:14:02 +05:30
|
|
|
return
|
2022-03-22 12:33:22 +05:30
|
|
|
} else if !ctx.Doer.IsActive && setting.Service.RegisterEmailConfirm {
|
2014-08-10 09:32:00 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, "user/auth/activate")
|
2014-03-22 23:14:02 +05:30
|
|
|
return
|
|
|
|
}
|
2021-01-26 21:06:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// Redirect to log in page if auto-signin info is provided and has not signed in.
|
|
|
|
if !options.SignOutRequired && !ctx.IsSigned &&
|
|
|
|
len(ctx.GetCookie(setting.CookieUserName)) > 0 {
|
|
|
|
if ctx.Req.URL.Path != "/user/events" {
|
2021-03-07 13:42:43 +05:30
|
|
|
middleware.SetRedirectToCookie(ctx.Resp, setting.AppSubURL+ctx.Req.URL.RequestURI())
|
2021-01-26 21:06:53 +05:30
|
|
|
}
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/login")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.AdminRequired {
|
2022-03-22 12:33:22 +05:30
|
|
|
if !ctx.Doer.IsAdmin {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.Error(http.StatusForbidden)
|
2021-01-26 21:06:53 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToggleAPI returns toggle options as middleware
|
|
|
|
func ToggleAPI(options *ToggleOptions) func(ctx *APIContext) {
|
|
|
|
return func(ctx *APIContext) {
|
|
|
|
// Check prohibit login users.
|
|
|
|
if ctx.IsSigned {
|
2022-03-22 12:33:22 +05:30
|
|
|
if !ctx.Doer.IsActive && setting.Service.RegisterEmailConfirm {
|
2021-01-26 21:06:53 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusForbidden, map[string]string{
|
2021-01-26 21:06:53 +05:30
|
|
|
"message": "This account is not activated.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 12:33:22 +05:30
|
|
|
if !ctx.Doer.IsActive || ctx.Doer.ProhibitLogin {
|
|
|
|
log.Info("Failed authentication attempt for %s from %s", ctx.Doer.Name, ctx.RemoteAddr())
|
2021-01-26 21:06:53 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.prohibit_login")
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusForbidden, map[string]string{
|
2021-01-26 21:06:53 +05:30
|
|
|
"message": "This account is prohibited from signing in, please contact your site administrator.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-22 12:33:22 +05:30
|
|
|
if ctx.Doer.MustChangePassword {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusForbidden, map[string]string{
|
2021-01-26 21:06:53 +05:30
|
|
|
"message": "You must change your password. Change it at: " + setting.AppURL + "/user/change_password",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Redirect to dashboard if user tries to visit any non-login page.
|
|
|
|
if options.SignOutRequired && ctx.IsSigned && ctx.Req.URL.RequestURI() != "/" {
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.SignInRequired {
|
|
|
|
if !ctx.IsSigned {
|
|
|
|
// Restrict API calls with error message.
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusForbidden, map[string]string{
|
2021-01-26 21:06:53 +05:30
|
|
|
"message": "Only signed in user is allowed to call APIs.",
|
|
|
|
})
|
|
|
|
return
|
2022-03-22 12:33:22 +05:30
|
|
|
} else if !ctx.Doer.IsActive && setting.Service.RegisterEmailConfirm {
|
2021-01-26 21:06:53 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, "user/auth/activate")
|
2021-01-26 21:06:53 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
if ctx.IsSigned && ctx.IsBasicAuth {
|
2021-09-17 17:13:47 +05:30
|
|
|
if skip, ok := ctx.Data["SkipLocalTwoFA"]; ok && skip.(bool) {
|
|
|
|
return // Skip 2FA
|
|
|
|
}
|
2022-03-22 12:33:22 +05:30
|
|
|
twofa, err := auth.GetTwoFactorByUID(ctx.Doer.ID)
|
2019-04-19 14:29:26 +05:30
|
|
|
if err != nil {
|
2022-01-02 18:42:35 +05:30
|
|
|
if auth.IsErrTwoFactorNotEnrolled(err) {
|
2019-04-19 14:29:26 +05:30
|
|
|
return // No 2FA enrollment for this user
|
|
|
|
}
|
2021-01-26 21:06:53 +05:30
|
|
|
ctx.InternalServerError(err)
|
2019-04-19 14:29:26 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
otpHeader := ctx.Req.Header.Get("X-Gitea-OTP")
|
|
|
|
ok, err := twofa.ValidateTOTP(otpHeader)
|
|
|
|
if err != nil {
|
2021-01-26 21:06:53 +05:30
|
|
|
ctx.InternalServerError(err)
|
2019-04-19 14:29:26 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
if !ok {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusForbidden, map[string]string{
|
2019-04-19 14:29:26 +05:30
|
|
|
"message": "Only signed in user is allowed to call APIs.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2014-03-22 23:14:02 +05:30
|
|
|
}
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
if options.AdminRequired {
|
2022-03-22 12:33:22 +05:30
|
|
|
if !ctx.Doer.IsAdmin {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusForbidden, map[string]string{
|
2021-01-26 21:06:53 +05:30
|
|
|
"message": "You have no permission to request for this.",
|
|
|
|
})
|
2014-03-22 23:14:02 +05:30
|
|
|
return
|
|
|
|
}
|
2014-03-22 23:57:03 +05:30
|
|
|
ctx.Data["PageIsAdmin"] = true
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|