2020-11-02 04:09:48 +13:00
|
|
|
package handler
|
2020-10-23 03:54:50 +13:00
|
|
|
|
|
|
|
import (
|
2020-10-29 07:15:48 +13:00
|
|
|
"demodesk/neko/internal/types"
|
|
|
|
"demodesk/neko/internal/types/event"
|
|
|
|
"demodesk/neko/internal/types/message"
|
2020-10-23 03:54:50 +13:00
|
|
|
)
|
|
|
|
|
2020-11-02 04:09:48 +13:00
|
|
|
func (h *MessageHandlerCtx) controlRelease(session types.Session) error {
|
2021-03-14 12:45:51 +13:00
|
|
|
if !session.Profile().CanHost {
|
2021-03-14 11:27:28 +13:00
|
|
|
h.logger.Debug().Str("session_id", session.ID()).Msg("is not allowed to host")
|
2020-12-07 06:50:41 +13:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-01 11:03:37 +13:00
|
|
|
if !session.IsHost() {
|
2021-03-14 11:27:28 +13:00
|
|
|
h.logger.Debug().Str("session_id", session.ID()).Msg("is not the host")
|
2020-10-23 03:54:50 +13:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-02 22:46:00 +13:00
|
|
|
h.desktop.ResetKeys()
|
2020-10-23 03:54:50 +13:00
|
|
|
h.sessions.ClearHost()
|
2020-12-02 22:46:00 +13:00
|
|
|
|
2020-11-19 08:30:33 +13:00
|
|
|
return nil
|
2020-10-23 03:54:50 +13:00
|
|
|
}
|
|
|
|
|
2020-11-02 04:09:48 +13:00
|
|
|
func (h *MessageHandlerCtx) controlRequest(session types.Session) error {
|
2021-03-14 12:45:51 +13:00
|
|
|
if !session.Profile().CanHost {
|
2021-03-14 11:27:28 +13:00
|
|
|
h.logger.Debug().Str("session_id", session.ID()).Msg("is not allowed to host")
|
2020-12-07 06:50:41 +13:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-02 22:47:20 +13:00
|
|
|
if session.IsHost() {
|
2021-03-14 11:27:28 +13:00
|
|
|
h.logger.Debug().Str("session_id", session.ID()).Msg("is already the host")
|
2020-12-02 22:47:20 +13:00
|
|
|
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-10-23 03:54:50 +13:00
|
|
|
}
|
|
|
|
|
2020-12-01 06:24:38 +13:00
|
|
|
h.sessions.SetHost(session)
|
2020-11-19 08:30:33 +13:00
|
|
|
|
|
|
|
return nil
|
2020-10-23 03:54:50 +13:00
|
|
|
}
|