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-07-26 04:24:27 +00:00
|
|
|
"github.com/Unknwon/macaron"
|
2014-07-31 21:25:34 +00:00
|
|
|
"github.com/macaron-contrib/csrf"
|
2014-03-19 16:50:44 +00:00
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
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-07-26 04:24:27 +00:00
|
|
|
func Toggle(options *ToggleOptions) macaron.Handler {
|
2014-03-15 11:01:50 +00:00
|
|
|
return func(ctx *Context) {
|
2014-05-05 17:08:01 +00:00
|
|
|
// Cannot view any page before installation.
|
2014-05-26 00:11:25 +00:00
|
|
|
if !setting.InstallLock {
|
2014-09-20 00:11:34 +00:00
|
|
|
ctx.Redirect(setting.AppSubUrl + "/install")
|
2014-03-30 15:58:21 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-24 23:47:59 +00:00
|
|
|
// Checking non-logged users landing page.
|
|
|
|
if !ctx.IsSigned && ctx.Req.RequestURI == "/" && setting.LandingPageUrl != setting.LANDING_PAGE_HOME {
|
|
|
|
ctx.Redirect(string(setting.LandingPageUrl))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-05 17:08:01 +00:00
|
|
|
// Redirect to dashboard if user tries to visit any non-login page.
|
2014-03-24 10:50:11 +00:00
|
|
|
if options.SignOutRequire && ctx.IsSigned && ctx.Req.RequestURI != "/" {
|
2014-09-20 00:11:34 +00:00
|
|
|
ctx.Redirect(setting.AppSubUrl + "/")
|
2014-03-20 11:50:26 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-07-31 21:25:34 +00:00
|
|
|
if !options.SignOutRequire && !options.DisableCsrf && ctx.Req.Method == "POST" {
|
|
|
|
csrf.Validate(ctx.Context, ctx.csrf)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2014-03-22 17:44:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if options.SignInRequire {
|
|
|
|
if !ctx.IsSigned {
|
2015-01-31 01:30:07 +00:00
|
|
|
ctx.SetCookie("redirect_to", url.QueryEscape(setting.AppSubUrl+ctx.Req.RequestURI), 0, setting.AppSubUrl)
|
2014-09-20 00:11:34 +00:00
|
|
|
ctx.Redirect(setting.AppSubUrl + "/user/login")
|
2014-03-22 17:44:02 +00:00
|
|
|
return
|
2014-05-26 00:11:25 +00:00
|
|
|
} else if !ctx.User.IsActive && setting.Service.RegisterEmailConfirm {
|
2014-08-10 04:02:00 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
|
2014-09-02 17:01:02 +00:00
|
|
|
ctx.HTML(200, "user/auth/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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 17:57:00 +00:00
|
|
|
|
|
|
|
func ApiReqToken() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
if !ctx.IsSigned {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-18 16:07:16 +00:00
|
|
|
|
|
|
|
func ApiReqBasicAuth() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
if !ctx.IsBasicAuth {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|