gitea/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 08:59:22 +11:00
"net/url"
2014-03-31 03:11:28 +11:00
"github.com/go-martini/martini"
2014-03-20 03:50:44 +11:00
"github.com/gogits/gogs/modules/base"
)
2014-03-23 04:44:02 +11:00
type ToggleOptions struct {
SignInRequire bool
SignOutRequire bool
AdminRequire bool
DisableCsrf bool
}
2014-03-23 04:44:02 +11:00
func Toggle(options *ToggleOptions) martini.Handler {
return func(ctx *Context) {
2014-03-31 02:58:21 +11:00
if !base.InstallLock {
ctx.Redirect("/install")
return
}
2014-03-24 21:50:11 +11:00
if options.SignOutRequire && ctx.IsSigned && ctx.Req.RequestURI != "/" {
2014-03-20 00:57:55 +11:00
ctx.Redirect("/")
2014-03-20 22:50:26 +11:00
return
}
2014-03-23 04:44:02 +11:00
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 08:59:22 +11:00
ctx.SetCookie("redirect_to", "/"+url.QueryEscape(ctx.Req.RequestURI))
2014-03-23 04:44:02 +11:00
ctx.Redirect("/user/login")
return
} else if !ctx.User.IsActive && base.Service.RegisterEmailConfirm {
ctx.Data["Title"] = "Activate Your Account"
2014-04-19 02:17:28 +10:00
ctx.HTML(200, "user/activate")
2014-03-23 04:44:02 +11:00
return
}
}
if options.AdminRequire {
if !ctx.User.IsAdmin {
ctx.Error(403)
return
}
2014-03-23 05:27:03 +11:00
ctx.Data["PageIsAdmin"] = true
}
}
}