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