1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-08-26 21:54:19 -04:00
gitea/modules/middleware/auth.go

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