2014-03-15 12:01:50 +01: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.
|
|
|
|
|
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2014-03-22 22:59:22 +01:00
|
|
|
"net/url"
|
|
|
|
|
2014-03-15 12:01:50 +01:00
|
|
|
"github.com/codegangsta/martini"
|
2014-03-19 17:50:44 +01:00
|
|
|
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-15 12:01:50 +01:00
|
|
|
)
|
|
|
|
|
2014-03-22 18:44:02 +01:00
|
|
|
type ToggleOptions struct {
|
|
|
|
SignInRequire bool
|
|
|
|
SignOutRequire bool
|
|
|
|
AdminRequire bool
|
|
|
|
DisableCsrf bool
|
2014-03-15 12:01:50 +01:00
|
|
|
}
|
|
|
|
|
2014-03-22 18:44:02 +01:00
|
|
|
func Toggle(options *ToggleOptions) martini.Handler {
|
2014-03-15 12:01:50 +01:00
|
|
|
return func(ctx *Context) {
|
2014-03-22 18:44:02 +01:00
|
|
|
if options.SignOutRequire && ctx.IsSigned {
|
2014-03-19 14:57:55 +01:00
|
|
|
ctx.Redirect("/")
|
2014-03-20 12:50:26 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-22 18:44:02 +01: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-22 22:59:22 +01:00
|
|
|
ctx.SetCookie("redirect_to", "/"+url.QueryEscape(ctx.Req.RequestURI))
|
2014-03-22 18:44:02 +01:00
|
|
|
ctx.Redirect("/user/login")
|
|
|
|
return
|
|
|
|
} else if !ctx.User.IsActive && base.Service.RegisterEmailConfirm {
|
|
|
|
ctx.Data["Title"] = "Activate Your Account"
|
|
|
|
ctx.HTML(200, "user/active")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.AdminRequire {
|
|
|
|
if !ctx.User.IsAdmin {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
2014-03-22 19:27:03 +01:00
|
|
|
ctx.Data["PageIsAdmin"] = true
|
2014-03-15 12:01:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|