2014-03-15 16:31:50 +05:30
|
|
|
// 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 (
|
|
|
|
"github.com/codegangsta/martini"
|
2014-03-19 22:20:44 +05:30
|
|
|
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-15 16:31:50 +05:30
|
|
|
)
|
|
|
|
|
2014-03-17 23:33:58 +05:30
|
|
|
// SignInRequire requires user to sign in.
|
2014-03-15 16:31:50 +05:30
|
|
|
func SignInRequire(redirect bool) martini.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
if !ctx.IsSigned {
|
|
|
|
if redirect {
|
2014-03-21 11:29:15 +05:30
|
|
|
ctx.Redirect("/user/login")
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|
|
|
|
return
|
2014-03-19 22:20:44 +05:30
|
|
|
} else if !ctx.User.IsActive && base.Service.RegisterEmailConfirm {
|
|
|
|
ctx.Data["Title"] = "Activate Your Account"
|
2014-03-20 17:20:26 +05:30
|
|
|
ctx.HTML(200, "user/active")
|
2014-03-19 22:20:44 +05:30
|
|
|
return
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-17 23:33:58 +05:30
|
|
|
// SignOutRequire requires user to sign out.
|
2014-03-15 16:31:50 +05:30
|
|
|
func SignOutRequire() martini.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
if ctx.IsSigned {
|
2014-03-19 19:27:55 +05:30
|
|
|
ctx.Redirect("/")
|
2014-03-20 17:20:26 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AdminRequire requires user signed in as administor.
|
|
|
|
func AdminRequire() martini.Handler {
|
|
|
|
return func(ctx *Context) {
|
2014-03-20 17:32:14 +05:30
|
|
|
if !ctx.User.IsAdmin {
|
2014-03-20 17:20:26 +05:30
|
|
|
ctx.Error(403)
|
|
|
|
return
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|
2014-03-20 17:20:26 +05:30
|
|
|
ctx.Data["PageIsAdmin"] = true
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|
|
|
|
}
|