func Auth(context *GoInk.Context) { tokenValue := context.Cookie("token-value") token := model.GetTokenByValue(tokenValue) if token == nil { context.Redirect("/logout/") context.End() return } if !token.IsValid() { context.Redirect("/logout/") context.End() return } }