gogs/pkg/context/auth.go

95 lines
2.6 KiB
Go
Raw Normal View History

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