neko/internal/api/room/control.go

100 lines
1.9 KiB
Go
Raw Normal View History

2020-10-30 10:23:30 +13:00
package room
2020-11-17 10:48:20 +13:00
import (
"net/http"
2020-12-27 11:53:04 +13:00
"github.com/go-chi/chi"
2021-02-15 02:40:17 +13:00
"demodesk/neko/internal/http/auth"
2020-11-17 10:48:20 +13:00
"demodesk/neko/internal/utils"
)
2020-11-19 11:14:28 +13:00
type ControlStatusPayload struct {
2021-02-15 02:40:17 +13:00
HasHost bool `json:"has_host"`
HostId string `json:"host_id,omitempty"`
2020-11-19 11:14:28 +13:00
}
2020-11-19 11:05:38 +13:00
type ControlTargetPayload struct {
ID string `json:"id"`
}
2020-11-19 11:14:28 +13:00
func (h *RoomHandler) controlStatus(w http.ResponseWriter, r *http.Request) {
host := h.sessions.GetHost()
if host == nil {
utils.HttpSuccess(w, ControlStatusPayload{
HasHost: false,
})
} else {
utils.HttpSuccess(w, ControlStatusPayload{
HasHost: true,
2021-02-15 02:40:17 +13:00
HostId: host.ID(),
2020-11-19 11:14:28 +13:00
})
}
}
2020-11-19 10:35:50 +13:00
func (h *RoomHandler) controlRequest(w http.ResponseWriter, r *http.Request) {
2020-11-17 10:48:20 +13:00
host := h.sessions.GetHost()
if host != nil {
2020-11-19 11:05:38 +13:00
utils.HttpUnprocessableEntity(w, "There is already a host.")
2020-11-17 10:48:20 +13:00
return
}
2020-11-19 11:05:38 +13:00
session := auth.GetSession(r)
2020-11-17 10:48:20 +13:00
h.sessions.SetHost(session)
utils.HttpSuccess(w)
}
2020-11-19 10:35:50 +13:00
func (h *RoomHandler) controlRelease(w http.ResponseWriter, r *http.Request) {
2020-11-17 10:48:20 +13:00
session := auth.GetSession(r)
if !session.IsHost() {
2021-03-14 11:32:10 +13:00
utils.HttpUnprocessableEntity(w, "Session is not the host.")
2020-12-07 06:50:41 +13:00
return
}
2020-12-02 22:46:00 +13:00
h.desktop.ResetKeys()
2020-11-17 10:48:20 +13:00
h.sessions.ClearHost()
2021-02-03 06:28:32 +13:00
2020-11-17 10:48:20 +13:00
utils.HttpSuccess(w)
}
2020-11-19 10:35:50 +13:00
func (h *RoomHandler) controlTake(w http.ResponseWriter, r *http.Request) {
session := auth.GetSession(r)
h.sessions.SetHost(session)
utils.HttpSuccess(w)
}
2020-11-19 10:35:50 +13:00
func (h *RoomHandler) controlGive(w http.ResponseWriter, r *http.Request) {
2021-03-14 11:32:10 +13:00
sessionId := chi.URLParam(r, "sessionId")
2021-03-14 11:32:10 +13:00
target, ok := h.sessions.Get(sessionId)
if !ok {
2021-03-14 11:32:10 +13:00
utils.HttpNotFound(w, "Target session was not found.")
2020-12-07 06:50:41 +13:00
return
}
2021-03-14 12:45:51 +13:00
if !target.Profile().CanHost {
2021-03-14 11:32:10 +13:00
utils.HttpBadRequest(w, "Target session is not allowed to host.")
return
}
h.sessions.SetHost(target)
utils.HttpSuccess(w)
}
2020-11-30 03:58:26 +13:00
func (h *RoomHandler) controlReset(w http.ResponseWriter, r *http.Request) {
host := h.sessions.GetHost()
if host == nil {
utils.HttpSuccess(w)
return
}
2020-12-02 22:46:00 +13:00
h.desktop.ResetKeys()
2020-11-30 03:58:26 +13:00
h.sessions.ClearHost()
2020-12-02 22:46:00 +13:00
2020-11-30 03:58:26 +13:00
utils.HttpSuccess(w)
}