2020-10-30 10:23:30 +13:00
|
|
|
package room
|
2020-11-17 10:48:20 +13:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"demodesk/neko/internal/types/event"
|
|
|
|
"demodesk/neko/internal/types/message"
|
|
|
|
"demodesk/neko/internal/utils"
|
|
|
|
"demodesk/neko/internal/http/auth"
|
|
|
|
)
|
|
|
|
|
2020-11-19 11:14:28 +13:00
|
|
|
type ControlStatusPayload struct {
|
|
|
|
HasHost bool `json:"has_host"`
|
|
|
|
HostId string `json:"host_id,omitempty"`
|
|
|
|
}
|
|
|
|
|
2020-11-19 11:05:38 +13:00
|
|
|
type ControlTargetPayload struct {
|
2020-11-19 09:10:40 +13:00
|
|
|
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,
|
|
|
|
HostId: host.ID(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
|
2020-11-19 08:30:33 +13:00
|
|
|
h.sessions.Broadcast(
|
2020-12-01 06:24:38 +13:00
|
|
|
message.ControlHost{
|
|
|
|
Event: event.CONTROL_HOST,
|
|
|
|
HasHost: true,
|
|
|
|
HostID: session.ID(),
|
2020-11-19 08:30:33 +13:00
|
|
|
}, nil)
|
2020-11-17 10:48:20 +13:00
|
|
|
|
|
|
|
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() {
|
2020-11-19 11:05:38 +13:00
|
|
|
utils.HttpUnprocessableEntity(w, "User is not the host.")
|
2020-11-17 10:48:20 +13:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
h.sessions.ClearHost()
|
2020-11-19 08:30:33 +13:00
|
|
|
|
|
|
|
h.sessions.Broadcast(
|
2020-12-01 06:24:38 +13:00
|
|
|
message.ControlHost{
|
|
|
|
Event: event.CONTROL_HOST,
|
|
|
|
HasHost: false,
|
2020-11-19 08:30:33 +13:00
|
|
|
}, nil)
|
2020-11-17 10:48:20 +13:00
|
|
|
|
|
|
|
utils.HttpSuccess(w)
|
|
|
|
}
|
2020-11-19 09:10:40 +13:00
|
|
|
|
2020-11-19 10:35:50 +13:00
|
|
|
func (h *RoomHandler) controlTake(w http.ResponseWriter, r *http.Request) {
|
2020-11-19 09:10:40 +13:00
|
|
|
session := auth.GetSession(r)
|
|
|
|
|
|
|
|
h.sessions.SetHost(session)
|
|
|
|
|
|
|
|
h.sessions.Broadcast(
|
2020-12-01 06:24:38 +13:00
|
|
|
message.ControlHost{
|
|
|
|
Event: event.CONTROL_HOST,
|
|
|
|
HasHost: true,
|
|
|
|
HostID: session.ID(),
|
2020-11-19 09:10:40 +13:00
|
|
|
}, nil)
|
|
|
|
|
|
|
|
utils.HttpSuccess(w)
|
|
|
|
}
|
|
|
|
|
2020-11-19 10:35:50 +13:00
|
|
|
func (h *RoomHandler) controlGive(w http.ResponseWriter, r *http.Request) {
|
2020-11-19 11:05:38 +13:00
|
|
|
data := &ControlTargetPayload{}
|
2020-11-19 09:10:40 +13:00
|
|
|
if !utils.HttpJsonRequest(w, r, data) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
target, ok := h.sessions.Get(data.ID)
|
|
|
|
if !ok {
|
|
|
|
utils.HttpBadRequest(w, "Target user was not found.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
h.sessions.SetHost(target)
|
|
|
|
|
|
|
|
h.sessions.Broadcast(
|
2020-12-01 06:24:38 +13:00
|
|
|
message.ControlHost{
|
|
|
|
Event: event.CONTROL_HOST,
|
|
|
|
HasHost: true,
|
|
|
|
HostID: target.ID(),
|
2020-11-19 09:10:40 +13:00
|
|
|
}, nil)
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
h.sessions.ClearHost()
|
|
|
|
|
|
|
|
h.sessions.Broadcast(
|
2020-12-01 06:24:38 +13:00
|
|
|
message.ControlHost{
|
|
|
|
Event: event.CONTROL_HOST,
|
|
|
|
HasHost: false,
|
2020-11-30 03:58:26 +13:00
|
|
|
}, nil)
|
|
|
|
|
|
|
|
utils.HttpSuccess(w)
|
|
|
|
}
|