From fa5ad1e46560bd006bccf57e5cac39589d18e344 Mon Sep 17 00:00:00 2001 From: slene Date: Sat, 15 Mar 2014 19:01:50 +0800 Subject: move templateFuncs to one file, add middleware context. --- modules/middleware/auth.go | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 modules/middleware/auth.go (limited to 'modules/middleware/auth.go') diff --git a/modules/middleware/auth.go b/modules/middleware/auth.go new file mode 100644 index 00000000..743b9829 --- /dev/null +++ b/modules/middleware/auth.go @@ -0,0 +1,28 @@ +// 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" +) + +func SignInRequire(redirect bool) martini.Handler { + return func(ctx *Context) { + if !ctx.IsSigned { + if redirect { + ctx.Render.Redirect("/") + } + return + } + } +} + +func SignOutRequire() martini.Handler { + return func(ctx *Context) { + if ctx.IsSigned { + ctx.Render.Redirect("/") + } + } +} -- cgit v1.2.3