mirror of
https://github.com/rls-moe/nyx
synced 2024-11-14 22:12:24 +00:00
39 lines
602 B
Go
39 lines
602 B
Go
package middle
|
|
|
|
import (
|
|
"github.com/icza/session"
|
|
"net/http"
|
|
)
|
|
|
|
func init() {
|
|
session.Global.Close()
|
|
session.Global = session.NewCookieManager(session.NewInMemStore())
|
|
}
|
|
|
|
func GetSession(r *http.Request) session.Session {
|
|
return session.Get(r)
|
|
}
|
|
|
|
func IsAdminSession(sess session.Session) bool {
|
|
if sess == nil {
|
|
return false
|
|
}
|
|
if sess.CAttr("mode") == "admin" {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func IsModSession(sess session.Session) bool {
|
|
if sess == nil {
|
|
return false
|
|
}
|
|
if IsAdminSession(sess) {
|
|
return true
|
|
}
|
|
if sess.CAttr("mode") == "mod" {
|
|
return true
|
|
}
|
|
return false
|
|
}
|