2014-03-15 13:01:50 +02: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 23:59:22 +02:00
|
|
|
"net/url"
|
2014-05-06 23:28:52 +03:00
|
|
|
"strings"
|
2014-03-22 23:59:22 +02:00
|
|
|
|
2014-07-26 07:24:27 +03:00
|
|
|
"github.com/Unknwon/macaron"
|
2014-08-01 00:25:34 +03:00
|
|
|
"github.com/macaron-contrib/csrf"
|
2014-03-19 18:50:44 +02:00
|
|
|
|
2014-05-26 03:11:25 +03:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-15 13:01:50 +02:00
|
|
|
)
|
|
|
|
|
2014-03-22 19:44:02 +02:00
|
|
|
type ToggleOptions struct {
|
|
|
|
SignInRequire bool
|
|
|
|
SignOutRequire bool
|
|
|
|
AdminRequire bool
|
|
|
|
DisableCsrf bool
|
2014-03-15 13:01:50 +02:00
|
|
|
}
|
|
|
|
|
2014-07-26 07:24:27 +03:00
|
|
|
func Toggle(options *ToggleOptions) macaron.Handler {
|
2014-03-15 13:01:50 +02:00
|
|
|
return func(ctx *Context) {
|
2014-05-05 20:08:01 +03:00
|
|
|
// Cannot view any page before installation.
|
2014-05-26 03:11:25 +03:00
|
|
|
if !setting.InstallLock {
|
2014-09-14 20:35:22 +03:00
|
|
|
ctx.Redirect(setting.AppRootSubUrl + "/install")
|
2014-03-30 18:58:21 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-05 20:08:01 +03:00
|
|
|
// Redirect to dashboard if user tries to visit any non-login page.
|
2014-03-24 12:50:11 +02:00
|
|
|
if options.SignOutRequire && ctx.IsSigned && ctx.Req.RequestURI != "/" {
|
2014-09-14 20:35:22 +03:00
|
|
|
ctx.Redirect(setting.AppRootSubUrl + "/")
|
2014-03-20 13:50:26 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-08-01 00:25:34 +03:00
|
|
|
if !options.SignOutRequire && !options.DisableCsrf && ctx.Req.Method == "POST" {
|
|
|
|
csrf.Validate(ctx.Context, ctx.csrf)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2014-03-22 19:44:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if options.SignInRequire {
|
|
|
|
if !ctx.IsSigned {
|
2014-05-06 23:28:52 +03:00
|
|
|
// Ignore watch repository operation.
|
|
|
|
if strings.HasSuffix(ctx.Req.RequestURI, "watch") {
|
|
|
|
return
|
|
|
|
}
|
2014-09-14 20:35:22 +03:00
|
|
|
ctx.SetCookie("redirect_to", "/"+url.QueryEscape(setting.AppRootSubUrl + ctx.Req.RequestURI))
|
|
|
|
ctx.Redirect(setting.AppRootSubUrl + "/user/login")
|
2014-03-22 19:44:02 +02:00
|
|
|
return
|
2014-05-26 03:11:25 +03:00
|
|
|
} else if !ctx.User.IsActive && setting.Service.RegisterEmailConfirm {
|
2014-08-10 07:02:00 +03:00
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
|
2014-09-02 20:01:02 +03:00
|
|
|
ctx.HTML(200, "user/auth/activate")
|
2014-03-22 19:44:02 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.AdminRequire {
|
|
|
|
if !ctx.User.IsAdmin {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
2014-03-22 20:27:03 +02:00
|
|
|
ctx.Data["PageIsAdmin"] = true
|
2014-03-15 13:01:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|