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.
|
|
|
|
|
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2015-08-14 00:13:40 +05:30
|
|
|
"fmt"
|
2014-03-23 03:29:22 +05:30
|
|
|
"net/url"
|
|
|
|
|
2015-10-16 06:58:12 +05:30
|
|
|
"github.com/go-macaron/csrf"
|
|
|
|
"gopkg.in/macaron.v1"
|
2014-03-19 22:20:44 +05:30
|
|
|
|
2015-08-14 00:13:40 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
2015-07-15 16:47:57 +05:30
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2015-08-14 00:13:40 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-05-26 05:41:25 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-15 16:31:50 +05:30
|
|
|
)
|
|
|
|
|
2014-03-22 23:14:02 +05:30
|
|
|
type ToggleOptions struct {
|
|
|
|
SignInRequire bool
|
|
|
|
SignOutRequire bool
|
|
|
|
AdminRequire bool
|
|
|
|
DisableCsrf bool
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|
|
|
|
|
2015-08-14 00:13:40 +05:30
|
|
|
// AutoSignIn reads cookie and try to auto-login.
|
|
|
|
func AutoSignIn(ctx *Context) (bool, error) {
|
2015-09-13 19:21:51 +05:30
|
|
|
if !models.HasEngine {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2015-08-14 00:13:40 +05:30
|
|
|
uname := ctx.GetCookie(setting.CookieUserName)
|
|
|
|
if len(uname) == 0 {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
isSucceed := false
|
|
|
|
defer func() {
|
|
|
|
if !isSucceed {
|
|
|
|
log.Trace("auto-login cookie cleared: %s", uname)
|
|
|
|
ctx.SetCookie(setting.CookieUserName, "", -1, setting.AppSubUrl)
|
|
|
|
ctx.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubUrl)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
u, err := models.GetUserByName(uname)
|
|
|
|
if err != nil {
|
|
|
|
if !models.IsErrUserNotExist(err) {
|
|
|
|
return false, fmt.Errorf("GetUserByName: %v", err)
|
|
|
|
}
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if val, _ := ctx.GetSuperSecureCookie(
|
2015-11-25 05:19:34 +05:30
|
|
|
base.EncodeMD5(u.Rands+u.Passwd), setting.CookieRememberName); val != u.Name {
|
2015-08-14 00:13:40 +05:30
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
isSucceed = true
|
|
|
|
ctx.Session.Set("uid", u.Id)
|
|
|
|
ctx.Session.Set("uname", u.Name)
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
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 {
|
2014-09-20 05:41:34 +05:30
|
|
|
ctx.Redirect(setting.AppSubUrl + "/install")
|
2014-03-30 21:28:21 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-25 05:17:59 +05:30
|
|
|
// Checking non-logged users landing page.
|
|
|
|
if !ctx.IsSigned && ctx.Req.RequestURI == "/" && setting.LandingPageUrl != setting.LANDING_PAGE_HOME {
|
2015-03-16 13:44:14 +05:30
|
|
|
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.
|
2014-03-24 16:20:11 +05:30
|
|
|
if options.SignOutRequire && ctx.IsSigned && ctx.Req.RequestURI != "/" {
|
2014-09-20 05:41:34 +05:30
|
|
|
ctx.Redirect(setting.AppSubUrl + "/")
|
2014-03-20 17:20:26 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-19 02:28:45 +05:30
|
|
|
if !options.SignOutRequire && !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
|
|
|
}
|
|
|
|
|
|
|
|
if options.SignInRequire {
|
|
|
|
if !ctx.IsSigned {
|
2015-07-15 16:47:57 +05:30
|
|
|
// Restrict API calls with error message.
|
|
|
|
if auth.IsAPIPath(ctx.Req.URL.Path) {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(403, "", "Only signed in user is allowed to call APIs.")
|
2015-07-15 16:47:57 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-01-31 07:00:07 +05:30
|
|
|
ctx.SetCookie("redirect_to", url.QueryEscape(setting.AppSubUrl+ctx.Req.RequestURI), 0, setting.AppSubUrl)
|
2014-09-20 05:41:34 +05:30
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 10:22:09 +05:30
|
|
|
// Try auto-signin when not signed in.
|
2015-11-19 10:52:16 +05:30
|
|
|
if !options.SignOutRequire && !ctx.IsSigned && !auth.IsAPIPath(ctx.Req.URL.Path) {
|
2015-11-19 10:22:09 +05:30
|
|
|
succeed, err := AutoSignIn(ctx)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "AutoSignIn", err)
|
|
|
|
return
|
|
|
|
} else if succeed {
|
2015-12-09 06:36:12 +05:30
|
|
|
log.Trace("Auto-login succeed: %s", ctx.Session.Get("uname"))
|
2015-11-19 10:52:16 +05:30
|
|
|
ctx.Redirect(setting.AppSubUrl + ctx.Req.RequestURI)
|
2015-11-19 10:22:09 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-22 23:14:02 +05:30
|
|
|
if options.AdminRequire {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|