neko/internal/websocket/handler/control.go

65 lines
1.3 KiB
Go
Raw Normal View History

2020-11-02 04:09:48 +13:00
package handler
import (
2020-10-29 07:15:48 +13:00
"demodesk/neko/internal/types"
"demodesk/neko/internal/types/event"
"demodesk/neko/internal/types/message"
)
2020-11-02 04:09:48 +13:00
func (h *MessageHandlerCtx) controlRelease(session types.Session) error {
2020-12-07 06:50:41 +13:00
if !session.CanHost() {
h.logger.Debug().Str("id", session.ID()).Msg("is not allowed to host")
return nil
}
2020-11-01 11:03:37 +13:00
if !session.IsHost() {
h.logger.Debug().Str("id", session.ID()).Msg("is not the host")
return nil
}
2020-12-02 22:46:00 +13:00
h.desktop.ResetKeys()
h.sessions.ClearHost()
2020-12-02 22:46:00 +13:00
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-17 06:12:25 +13:00
}, nil)
2020-11-19 08:30:33 +13:00
return nil
}
2020-11-02 04:09:48 +13:00
func (h *MessageHandlerCtx) controlRequest(session types.Session) error {
2020-12-07 06:50:41 +13:00
if !session.CanHost() {
h.logger.Debug().Str("id", session.ID()).Msg("is not allowed to host")
return nil
}
2020-12-02 22:47:20 +13:00
if session.IsHost() {
h.logger.Debug().Str("id", session.ID()).Msg("is already the host")
return nil
}
2020-12-02 23:24:20 +13:00
if !h.sessions.ImplicitHosting() {
// tell session if there is a host
if host := h.sessions.GetHost(); host != nil {
return session.Send(
message.ControlHost{
Event: event.CONTROL_HOST,
HasHost: true,
HostID: host.ID(),
})
}
}
2020-12-01 06:24:38 +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-17 06:12:25 +13:00
}, nil)
2020-11-19 08:30:33 +13:00
return nil
}