neko/internal/api/room/handler.go

99 lines
2.8 KiB
Go
Raw Normal View History

2020-10-31 06:16:21 +13:00
package room
import (
"net/http"
2020-10-31 06:16:21 +13:00
"github.com/go-chi/chi"
"demodesk/neko/internal/types"
2020-11-17 07:37:52 +13:00
"demodesk/neko/internal/http/auth"
"demodesk/neko/internal/utils"
2020-10-31 06:16:21 +13:00
)
type RoomHandler struct {
sessions types.SessionManager
desktop types.DesktopManager
capture types.CaptureManager
2020-10-31 06:16:21 +13:00
}
func New(
sessions types.SessionManager,
2020-11-02 04:54:06 +13:00
desktop types.DesktopManager,
capture types.CaptureManager,
2020-10-31 06:16:21 +13:00
) *RoomHandler {
// Init
2020-10-31 06:16:21 +13:00
return &RoomHandler{
sessions: sessions,
desktop: desktop,
capture: capture,
2020-10-31 06:16:21 +13:00
}
}
2020-11-15 06:16:25 +13:00
func (h *RoomHandler) Route(r chi.Router) {
2020-11-19 09:56:42 +13:00
r.With(auth.AdminsOnly).Route("/broadcast", func(r chi.Router) {
2020-11-19 10:35:50 +13:00
r.Get("/", h.broadcastStatus)
r.Post("/start", h.boradcastStart)
r.Post("/stop", h.boradcastStop)
2020-10-31 22:48:24 +13:00
})
2020-10-31 06:16:21 +13:00
2020-11-17 07:37:52 +13:00
r.With(auth.HostsOnly).Route("/clipboard", func(r chi.Router) {
r.Get("/", h.clipboardGetText)
r.Post("/", h.clipboardSetText)
r.Get("/image.png", h.clipboardGetImage)
// TODO: Refactor. xclip is failing to set propper target type
// and this content is sent back to client as text in another
// clipboard update. Therefore endpoint is not usable!
2021-01-29 12:03:22 +13:00
//r.Post("/image", h.clipboardSetImage)
2021-02-03 06:28:32 +13:00
// TODO: Refactor. If there would be implemented custom target
// retrieval, this endpoint would be useful.
//r.Get("/targets", h.clipboardGetTargets)
2020-11-01 00:35:02 +13:00
})
2020-11-17 10:48:20 +13:00
2021-01-13 11:35:46 +13:00
r.Route("/keyboard", func(r chi.Router) {
2021-01-16 04:53:03 +13:00
r.Get("/map", h.keyboardMapGet)
r.With(auth.HostsOnly).Post("/map", h.keyboardMapSet)
2021-01-13 11:35:46 +13:00
r.Get("/modifiers", h.keyboardModifiersGet)
r.With(auth.HostsOnly).Post("/modifiers", h.keyboardModifiersSet)
2020-11-19 09:56:42 +13:00
})
2020-11-17 10:48:20 +13:00
r.Route("/control", func(r chi.Router) {
2020-11-19 11:14:28 +13:00
r.Get("/", h.controlStatus)
2020-11-19 10:35:50 +13:00
r.Post("/request", h.controlRequest)
r.Post("/release", h.controlRelease)
2020-11-19 10:35:50 +13:00
r.With(auth.AdminsOnly).Post("/take", h.controlTake)
r.With(auth.AdminsOnly).Post("/give", h.controlGive)
2020-11-30 03:58:26 +13:00
r.With(auth.AdminsOnly).Post("/reset", h.controlReset)
2020-11-17 10:48:20 +13:00
})
2020-11-19 09:56:42 +13:00
r.Route("/screen", func(r chi.Router) {
2021-01-22 08:44:09 +13:00
r.With(auth.CanWatchOnly).Get("/", h.screenConfiguration)
2021-01-24 03:23:10 +13:00
r.With(auth.CanWatchOnly).Get("/shot.jpg", h.screenShotGet)
2021-01-24 03:17:52 +13:00
r.With(auth.CanWatchOnly).Get("/cast.jpg", h.screenCastGet)
2020-11-19 09:53:06 +13:00
2020-11-19 10:35:50 +13:00
r.With(auth.AdminsOnly).Post("/", h.screenConfigurationChange)
r.With(auth.AdminsOnly).Get("/configurations", h.screenConfigurationsList)
2020-11-19 09:53:06 +13:00
})
2021-01-07 06:57:50 +13:00
r.With(h.uploadMiddleware).Route("/upload", func(r chi.Router) {
2021-01-08 06:28:23 +13:00
r.Post("/drop", h.uploadDrop)
2021-01-18 22:34:33 +13:00
r.Post("/dialog", h.uploadDialogPost)
r.Delete("/dialog", h.uploadDialogClose)
2021-01-07 06:57:50 +13:00
})
2020-10-31 06:16:21 +13:00
}
func (h *RoomHandler) uploadMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
session := auth.GetSession(r)
if !session.IsHost() && (!session.CanHost() || !h.sessions.ImplicitHosting()) {
utils.HttpForbidden(w, "Without implicit hosting, only host can upload files.")
} else {
next.ServeHTTP(w, r)
}
})
}