Files
screego/ws/event_clientice.go
T
2020-10-04 20:10:38 +02:00

37 lines
683 B
Go

package ws
import (
"fmt"
"github.com/screego/server/ws/outgoing"
)
func init() {
register("clientice", func() Event {
return &ClientICE{}
})
}
type ClientICE outgoing.P2PMessage
func (e *ClientICE) Execute(rooms *Rooms, current ClientInfo) error {
if current.RoomID == "" {
return fmt.Errorf("not in a room")
}
room, ok := rooms.Rooms[current.RoomID]
if !ok {
return fmt.Errorf("room with id %s does not exist", current.RoomID)
}
session, ok := room.Sessions[e.SID]
if !ok || session.Client != current.ID {
return fmt.Errorf("session with id %s does not exist", current.RoomID)
}
room.Users[session.Host].Write <- outgoing.ClientICE(*e)
return nil
}