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