2020-11-16 19:37:52 +01:00
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-05-12 00:12:15 +02:00
|
|
|
"fmt"
|
2020-11-16 19:37:52 +01:00
|
|
|
"net/http"
|
|
|
|
|
2022-07-14 00:58:22 +02:00
|
|
|
"github.com/demodesk/neko/pkg/types"
|
|
|
|
"github.com/demodesk/neko/pkg/utils"
|
2020-11-16 19:37:52 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type key int
|
|
|
|
|
2021-09-02 21:37:24 +02:00
|
|
|
const keySessionCtx key = iota
|
2020-11-16 19:37:52 +01:00
|
|
|
|
2021-09-17 00:58:50 +02:00
|
|
|
func SetSession(r *http.Request, session types.Session) context.Context {
|
|
|
|
return context.WithValue(r.Context(), keySessionCtx, session)
|
2020-11-16 19:37:52 +01:00
|
|
|
}
|
|
|
|
|
2021-09-17 00:58:50 +02:00
|
|
|
func GetSession(r *http.Request) (types.Session, bool) {
|
|
|
|
session, ok := r.Context().Value(keySessionCtx).(types.Session)
|
|
|
|
return session, ok
|
2020-11-16 19:37:52 +01:00
|
|
|
}
|
|
|
|
|
2021-09-17 00:58:50 +02: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-16 19:37:52 +01:00
|
|
|
}
|
|
|
|
|
2021-09-17 00:58:50 +02: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-16 19:37:52 +01:00
|
|
|
}
|
|
|
|
|
2021-09-17 00:58:50 +02: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-16 19:37:52 +01:00
|
|
|
}
|
2020-12-29 22:00:28 +01:00
|
|
|
|
2021-09-17 00:58:50 +02: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")
|
|
|
|
}
|
|
|
|
|
2022-03-26 23:20:38 +01:00
|
|
|
if session.PrivateModeEnabled() {
|
|
|
|
return nil, utils.HttpUnprocessableEntity("private mode is enabled")
|
|
|
|
}
|
|
|
|
|
2021-09-17 00:58:50 +02:00
|
|
|
return nil, nil
|
2020-12-29 22:00:28 +01:00
|
|
|
}
|
2021-01-21 20:44:09 +01:00
|
|
|
|
2021-09-17 00:58:50 +02: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-21 20:44:09 +01:00
|
|
|
}
|
2022-05-12 00:12:15 +02:00
|
|
|
|
2022-05-14 00:30:58 +02:00
|
|
|
func PluginsGenericOnly[V comparable](key string, exp V) func(w http.ResponseWriter, r *http.Request) (context.Context, error) {
|
2022-05-12 00:12:15 +02:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) (context.Context, error) {
|
|
|
|
session, ok := GetSession(r)
|
|
|
|
if !ok {
|
|
|
|
return nil, utils.HttpForbidden("session not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins := session.Profile().Plugins
|
2022-05-14 00:30:58 +02:00
|
|
|
|
2022-10-25 22:46:21 +02:00
|
|
|
if plugins[key] == nil {
|
|
|
|
return nil, utils.HttpForbidden(fmt.Sprintf("missing plugin permission: %s=%T", key, exp))
|
|
|
|
}
|
|
|
|
|
2022-05-14 00:30:58 +02:00
|
|
|
val, ok := plugins[key].(V)
|
|
|
|
if !ok {
|
2022-10-25 22:46:21 +02:00
|
|
|
return nil, utils.HttpForbidden(fmt.Sprintf("invalid plugin permission type: %s=%T expected %T", key, plugins[key], exp))
|
2022-05-12 00:12:15 +02:00
|
|
|
}
|
2022-05-14 00:30:58 +02:00
|
|
|
|
|
|
|
if val != exp {
|
2022-10-25 22:46:21 +02:00
|
|
|
return nil, utils.HttpForbidden(fmt.Sprintf("wrong plugin permission value for %s=%T", key, exp))
|
2022-05-14 00:30:58 +02:00
|
|
|
}
|
|
|
|
|
2022-05-12 00:12:15 +02:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
}
|