mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-03-03 02:47:02 +00:00
@@ -120,7 +120,9 @@ func LoginAuth(c *gin.Context) {
|
|||||||
|
|
||||||
if err := session.Save(c); err != nil {
|
if err := session.Save(c); err != nil {
|
||||||
logging.LogErrorf("save session failed: " + err.Error())
|
logging.LogErrorf("save session failed: " + err.Error())
|
||||||
c.Status(http.StatusInternalServerError)
|
session.Clear(c)
|
||||||
|
ret.Code = 1
|
||||||
|
ret.Msg = Conf.Language(258)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import (
|
|||||||
"github.com/88250/gulu"
|
"github.com/88250/gulu"
|
||||||
ginSessions "github.com/gin-contrib/sessions"
|
ginSessions "github.com/gin-contrib/sessions"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
"github.com/siyuan-note/logging"
|
||||||
)
|
)
|
||||||
|
|
||||||
var WrongAuthCount int
|
var WrongAuthCount int
|
||||||
@@ -38,6 +39,14 @@ type WorkspaceSession struct {
|
|||||||
Captcha string
|
Captcha string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (sd *SessionData) Clear(c *gin.Context) {
|
||||||
|
session := ginSessions.Default(c)
|
||||||
|
session.Delete("data")
|
||||||
|
if err := session.Save(); err != nil {
|
||||||
|
logging.LogErrorf("clear session failed: %v", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Save saves the current session of the specified context.
|
// Save saves the current session of the specified context.
|
||||||
func (sd *SessionData) Save(c *gin.Context) error {
|
func (sd *SessionData) Save(c *gin.Context) error {
|
||||||
session := ginSessions.Default(c)
|
session := ginSessions.Default(c)
|
||||||
|
|||||||
Reference in New Issue
Block a user