mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-13 14:09:20 +08:00
29 lines
593 B
Go
29 lines
593 B
Go
package filter
|
|
|
|
import (
|
|
"github.com/beego/beego/v2/adapter/logs"
|
|
"github.com/beego/beego/v2/server/web/context"
|
|
"strings"
|
|
)
|
|
|
|
/**
|
|
** 对所有的用户请求进行登录判断,如果未登录跳转到登录页面
|
|
** 但是对登录请求不进行过滤
|
|
*/
|
|
var LoginFilter = func(ctx *context.Context) {
|
|
|
|
_, ok := ctx.Input.Session("userName").(string)
|
|
if !ok {
|
|
if ctx.Request.RequestURI == "/login.html" {
|
|
return
|
|
}
|
|
|
|
if !strings.Contains(ctx.Request.RequestURI, "/login") {
|
|
ctx.Redirect(302, "/login.html")
|
|
} else {
|
|
logs.Error("该用户没有登录.......")
|
|
}
|
|
}
|
|
|
|
}
|