neko/internal/http/auth/auth.go

68 lines
1.6 KiB
Go
Raw Normal View History

2020-11-17 07:37:52 +13:00
package auth
import (
"context"
"net/http"
"demodesk/neko/internal/types"
"demodesk/neko/internal/utils"
)
type key int
2021-09-03 07:37:24 +12:00
const keySessionCtx key = iota
2020-11-17 07:37:52 +13:00
2021-09-17 10:58:50 +12:00
func SetSession(r *http.Request, session types.Session) context.Context {
return context.WithValue(r.Context(), keySessionCtx, session)
2020-11-17 07:37:52 +13:00
}
2021-09-17 10:58:50 +12:00
func GetSession(r *http.Request) (types.Session, bool) {
session, ok := r.Context().Value(keySessionCtx).(types.Session)
return session, ok
2020-11-17 07:37:52 +13:00
}
2021-09-17 10:58:50 +12:00
func AdminsOnly(w http.ResponseWriter, r *http.Request) (context.Context, error) {
session, ok := GetSession(r)
if !ok || !session.Profile().IsAdmin {
return nil, utils.HttpForbidden("session is not admin")
}
return nil, nil
2020-11-17 07:37:52 +13:00
}
2021-09-17 10:58:50 +12:00
func HostsOnly(w http.ResponseWriter, r *http.Request) (context.Context, error) {
session, ok := GetSession(r)
if !ok || !session.IsHost() {
return nil, utils.HttpForbidden("session is not host")
}
return nil, nil
2020-11-17 07:37:52 +13:00
}
2021-09-17 10:58:50 +12:00
func CanWatchOnly(w http.ResponseWriter, r *http.Request) (context.Context, error) {
session, ok := GetSession(r)
if !ok || !session.Profile().CanWatch {
return nil, utils.HttpForbidden("session cannot watch")
}
return nil, nil
2020-11-17 07:37:52 +13:00
}
2020-12-30 10:00:28 +13:00
2021-09-17 10:58:50 +12:00
func CanHostOnly(w http.ResponseWriter, r *http.Request) (context.Context, error) {
session, ok := GetSession(r)
if !ok || !session.Profile().CanHost {
return nil, utils.HttpForbidden("session cannot host")
}
return nil, nil
2020-12-30 10:00:28 +13:00
}
2021-01-22 08:44:09 +13:00
2021-09-17 10:58:50 +12:00
func CanAccessClipboardOnly(w http.ResponseWriter, r *http.Request) (context.Context, error) {
session, ok := GetSession(r)
if !ok || !session.Profile().CanAccessClipboard {
return nil, utils.HttpForbidden("session cannot access clipboard")
}
return nil, nil
2021-01-22 08:44:09 +13:00
}