2014-03-15 11:01:50 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
package context
|
2014-03-15 11:01:50 +00:00
|
|
|
|
|
|
|
import (
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/auth"
|
2019-02-19 07:19:28 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2016-11-05 16:56:35 +00:00
|
|
|
"github.com/go-macaron/csrf"
|
|
|
|
macaron "gopkg.in/macaron.v1"
|
2014-03-15 11:01:50 +00:00
|
|
|
)
|
|
|
|
|
2016-11-25 06:51:01 +00:00
|
|
|
// ToggleOptions contains required or check options
|
2014-03-22 17:44:02 +00:00
|
|
|
type ToggleOptions struct {
|
2016-03-11 16:56:52 +00:00
|
|
|
SignInRequired bool
|
|
|
|
SignOutRequired bool
|
|
|
|
AdminRequired bool
|
|
|
|
DisableCSRF bool
|
2015-08-13 18:43:40 +00:00
|
|
|
}
|
|
|
|
|
2016-11-25 06:51:01 +00:00
|
|
|
// Toggle returns toggle options as middleware
|
2014-07-26 04:24:27 +00:00
|
|
|
func Toggle(options *ToggleOptions) macaron.Handler {
|
2014-03-15 11:01:50 +00:00
|
|
|
return func(ctx *Context) {
|
2014-05-05 17:08:01 +00:00
|
|
|
// Cannot view any page before installation.
|
2014-05-26 00:11:25 +00:00
|
|
|
if !setting.InstallLock {
|
2016-11-27 10:14:25 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/install")
|
2014-03-30 15:58:21 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-16 02:22:16 +00:00
|
|
|
// Check prohibit login users.
|
2018-09-13 12:04:25 +00:00
|
|
|
if ctx.IsSigned {
|
2019-02-19 07:19:28 +00:00
|
|
|
if !ctx.User.IsActive && setting.Service.RegisterEmailConfirm {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
|
|
|
|
ctx.HTML(200, "user/auth/activate")
|
|
|
|
return
|
|
|
|
} else if !ctx.User.IsActive || ctx.User.ProhibitLogin {
|
|
|
|
log.Info("Failed authentication attempt for %s from %s", ctx.User.Name, ctx.RemoteAddr())
|
2018-09-13 12:04:25 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.prohibit_login")
|
|
|
|
ctx.HTML(200, "user/auth/prohibit_login")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.User.MustChangePassword {
|
2019-02-28 08:01:42 +00:00
|
|
|
if ctx.Req.URL.Path != "/user/settings/change_password" {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.must_change_password")
|
|
|
|
ctx.Data["ChangePasscodeLink"] = setting.AppSubURL + "/user/change_password"
|
2019-03-18 14:00:23 +00:00
|
|
|
ctx.SetCookie("redirect_to", setting.AppSubURL+ctx.Req.RequestURI, 0, setting.AppSubURL)
|
2019-02-28 08:01:42 +00:00
|
|
|
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 12:04:25 +00:00
|
|
|
return
|
|
|
|
}
|
2016-07-16 02:22:16 +00:00
|
|
|
}
|
|
|
|
|
2014-05-05 17:08:01 +00:00
|
|
|
// Redirect to dashboard if user tries to visit any non-login page.
|
2016-03-11 16:56:52 +00:00
|
|
|
if options.SignOutRequired && ctx.IsSigned && ctx.Req.RequestURI != "/" {
|
2016-11-27 10:14:25 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/")
|
2014-03-20 11:50:26 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
if !options.SignOutRequired && !options.DisableCSRF && ctx.Req.Method == "POST" && !auth.IsAPIPath(ctx.Req.URL.Path) {
|
2014-07-31 21:25:34 +00:00
|
|
|
csrf.Validate(ctx.Context, ctx.csrf)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2014-03-22 17:44:02 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
if options.SignInRequired {
|
2014-03-22 17:44:02 +00:00
|
|
|
if !ctx.IsSigned {
|
2015-07-15 11:17:57 +00:00
|
|
|
// Restrict API calls with error message.
|
|
|
|
if auth.IsAPIPath(ctx.Req.URL.Path) {
|
2016-03-13 22:49:16 +00:00
|
|
|
ctx.JSON(403, map[string]string{
|
|
|
|
"message": "Only signed in user is allowed to call APIs.",
|
|
|
|
})
|
2015-07-15 11:17:57 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-03-18 14:00:23 +00:00
|
|
|
ctx.SetCookie("redirect_to", setting.AppSubURL+ctx.Req.RequestURI, 0, setting.AppSubURL)
|
2016-11-27 10:14:25 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/login")
|
2014-03-22 17:44:02 +00:00
|
|
|
return
|
2014-05-26 00:11:25 +00:00
|
|
|
} else if !ctx.User.IsActive && setting.Service.RegisterEmailConfirm {
|
2014-08-10 04:02:00 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
|
2014-09-02 17:01:02 +00:00
|
|
|
ctx.HTML(200, "user/auth/activate")
|
2014-03-22 17:44:02 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
// Redirect to log in page if auto-signin info is provided and has not signed in.
|
|
|
|
if !options.SignOutRequired && !ctx.IsSigned && !auth.IsAPIPath(ctx.Req.URL.Path) &&
|
2016-03-03 20:09:43 +00:00
|
|
|
len(ctx.GetCookie(setting.CookieUserName)) > 0 {
|
2019-03-18 14:00:23 +00:00
|
|
|
ctx.SetCookie("redirect_to", setting.AppSubURL+ctx.Req.RequestURI, 0, setting.AppSubURL)
|
2016-11-27 10:14:25 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/login")
|
2016-03-04 14:15:11 +00:00
|
|
|
return
|
2015-11-19 04:52:09 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
if options.AdminRequired {
|
2014-03-22 17:44:02 +00:00
|
|
|
if !ctx.User.IsAdmin {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
2014-03-22 18:27:03 +00:00
|
|
|
ctx.Data["PageIsAdmin"] = true
|
2014-03-15 11:01:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|