bench-forgejo/modules/middleware/auth.go

64 lines
1.3 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.
package middleware
import (
2014-03-23 03:29:22 +05:30
"net/url"
2014-03-30 21:41:28 +05:30
"github.com/go-martini/martini"
2014-03-19 22:20:44 +05:30
"github.com/gogits/gogs/modules/base"
)
2014-03-22 23:14:02 +05:30
type ToggleOptions struct {
SignInRequire bool
SignOutRequire bool
AdminRequire bool
DisableCsrf bool
}
2014-03-22 23:14:02 +05:30
func Toggle(options *ToggleOptions) martini.Handler {
return func(ctx *Context) {
2014-03-30 21:28:21 +05:30
if !base.InstallLock {
ctx.Redirect("/install")
return
}
2014-03-24 16:20:11 +05:30
if options.SignOutRequire && ctx.IsSigned && ctx.Req.RequestURI != "/" {
2014-03-19 19:27:55 +05:30
ctx.Redirect("/")
2014-03-20 17:20:26 +05:30
return
}
2014-03-22 23:14:02 +05:30
if !options.DisableCsrf {
if ctx.Req.Method == "POST" {
if !ctx.CsrfTokenValid() {
ctx.Error(403, "CSRF token does not match")
return
}
}
}
if options.SignInRequire {
if !ctx.IsSigned {
2014-03-23 03:29:22 +05:30
ctx.SetCookie("redirect_to", "/"+url.QueryEscape(ctx.Req.RequestURI))
2014-03-22 23:14:02 +05:30
ctx.Redirect("/user/login")
return
} else if !ctx.User.IsActive && base.Service.RegisterEmailConfirm {
ctx.Data["Title"] = "Activate Your Account"
2014-04-18 21:47:28 +05:30
ctx.HTML(200, "user/activate")
2014-03-22 23:14:02 +05:30
return
}
}
if options.AdminRequire {
if !ctx.User.IsAdmin {
ctx.Error(403)
return
}
2014-03-22 23:57:03 +05:30
ctx.Data["PageIsAdmin"] = true
}
}
}