2014-03-15 16:31:50 +05:30
|
|
|
// 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 22:26:52 +05:30
|
|
|
package context
|
2014-03-15 16:31:50 +05:30
|
|
|
|
|
|
|
import (
|
2014-03-23 03:29:22 +05:30
|
|
|
"net/url"
|
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2016-11-05 22:26:35 +05:30
|
|
|
"github.com/go-macaron/csrf"
|
|
|
|
macaron "gopkg.in/macaron.v1"
|
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
|
2014-07-26 09:54:27 +05:30
|
|
|
func Toggle(options *ToggleOptions) macaron.Handler {
|
2014-03-15 16:31:50 +05:30
|
|
|
return func(ctx *Context) {
|
2014-05-05 22:38:01 +05:30
|
|
|
// Cannot view any page before installation.
|
2014-05-26 05:41:25 +05:30
|
|
|
if !setting.InstallLock {
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/install")
|
2014-03-30 21:28:21 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-16 07:52:16 +05:30
|
|
|
// Check prohibit login users.
|
|
|
|
if ctx.IsSigned && ctx.User.ProhibitLogin {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.prohibit_login")
|
|
|
|
ctx.HTML(200, "user/auth/prohibit_login")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check non-logged users landing page.
|
2016-11-27 15:44:25 +05:30
|
|
|
if !ctx.IsSigned && ctx.Req.RequestURI == "/" && setting.LandingPageURL != setting.LandingPageHome {
|
|
|
|
ctx.Redirect(setting.AppSubURL + string(setting.LandingPageURL))
|
2014-11-25 05:17:59 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-05 22:38:01 +05:30
|
|
|
// Redirect to dashboard if user tries to visit any non-login page.
|
2016-03-11 22:26:52 +05:30
|
|
|
if options.SignOutRequired && ctx.IsSigned && ctx.Req.RequestURI != "/" {
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/")
|
2014-03-20 17:20:26 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
if !options.SignOutRequired && !options.DisableCSRF && ctx.Req.Method == "POST" && !auth.IsAPIPath(ctx.Req.URL.Path) {
|
2014-08-01 02:55:34 +05:30
|
|
|
csrf.Validate(ctx.Context, ctx.csrf)
|
|
|
|
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 {
|
2015-07-15 16:47:57 +05:30
|
|
|
// Restrict API calls with error message.
|
|
|
|
if auth.IsAPIPath(ctx.Req.URL.Path) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.JSON(403, map[string]string{
|
|
|
|
"message": "Only signed in user is allowed to call APIs.",
|
|
|
|
})
|
2015-07-15 16:47:57 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.SetCookie("redirect_to", url.QueryEscape(setting.AppSubURL+ctx.Req.RequestURI), 0, setting.AppSubURL)
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/login")
|
2014-03-22 23:14:02 +05:30
|
|
|
return
|
2014-05-26 05:41:25 +05:30
|
|
|
} else if !ctx.User.IsActive && setting.Service.RegisterEmailConfirm {
|
2014-08-10 09:32:00 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
|
2014-09-02 22:31:02 +05:30
|
|
|
ctx.HTML(200, "user/auth/activate")
|
2014-03-22 23:14:02 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
// 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-04 01:39:43 +05:30
|
|
|
len(ctx.GetCookie(setting.CookieUserName)) > 0 {
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.SetCookie("redirect_to", url.QueryEscape(setting.AppSubURL+ctx.Req.RequestURI), 0, setting.AppSubURL)
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/login")
|
2016-03-04 19:45:11 +05:30
|
|
|
return
|
2015-11-19 10:22:09 +05:30
|
|
|
}
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
if options.AdminRequired {
|
2014-03-22 23:14:02 +05:30
|
|
|
if !ctx.User.IsAdmin {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
2014-03-22 23:57:03 +05:30
|
|
|
ctx.Data["PageIsAdmin"] = true
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|