gitea/modules/middleware/auth.go

62 lines
1.4 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-22 15:59:22 -06:00
"net/url"
2014-03-30 10:11:28 -06:00
"github.com/go-martini/martini"
2014-03-19 10:50:44 -06:00
"github.com/gogits/gogs/modules/base"
)
2014-03-22 11:44:02 -06:00
type ToggleOptions struct {
SignInRequire bool
SignOutRequire bool
AdminRequire bool
DisableCsrf bool
}
2014-03-22 11:44:02 -06:00
func Toggle(options *ToggleOptions) martini.Handler {
return func(ctx *Context) {
2014-05-05 11:08:01 -06:00
// Cannot view any page before installation.
2014-03-30 09:58:21 -06:00
if !base.InstallLock {
ctx.Redirect("/install")
return
}
2014-05-05 11:08:01 -06:00
// Redirect to dashboard if user tries to visit any non-login page.
2014-03-24 04:50:11 -06:00
if options.SignOutRequire && ctx.IsSigned && ctx.Req.RequestURI != "/" {
2014-03-19 07:57:55 -06:00
ctx.Redirect("/")
2014-03-20 05:50:26 -06:00
return
}
2014-05-05 11:08:01 -06:00
if !options.DisableCsrf && ctx.Req.Method == "POST" && !ctx.CsrfTokenValid() {
ctx.Error(403, "CSRF token does not match")
return
2014-03-22 11:44:02 -06:00
}
if options.SignInRequire {
if !ctx.IsSigned {
2014-03-22 15:59:22 -06:00
ctx.SetCookie("redirect_to", "/"+url.QueryEscape(ctx.Req.RequestURI))
2014-03-22 11:44:02 -06:00
ctx.Redirect("/user/login")
return
} else if !ctx.User.IsActive && base.Service.RegisterEmailConfirm {
ctx.Data["Title"] = "Activate Your Account"
2014-04-18 10:17:28 -06:00
ctx.HTML(200, "user/activate")
2014-03-22 11:44:02 -06:00
return
}
}
if options.AdminRequire {
if !ctx.User.IsAdmin {
ctx.Error(403)
return
}
2014-03-22 12:27:03 -06:00
ctx.Data["PageIsAdmin"] = true
}
}
}