20 lines
441 B
Go
20 lines
441 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/gin-gonic/contrib/sessions"
|
|
)
|
|
|
|
func IsLoggedIn(store sessions.Session) bool {
|
|
return store.Get("access_token") != nil &&
|
|
store.Get("expiry") != nil &&
|
|
store.Get("refresh_token") != nil &&
|
|
store.Get("userid") != nil &&
|
|
store.Get("name") != nil &&
|
|
store.Get("avatar") != nil &&
|
|
store.Get("csrf") != nil
|
|
}
|
|
|
|
func GetUserId(store sessions.Session) uint64 {
|
|
return store.Get("userid").(uint64)
|
|
}
|