2020-10-23 03:54:50 +13:00
|
|
|
package types
|
|
|
|
|
|
|
|
type Session interface {
|
|
|
|
ID() string
|
|
|
|
Name() string
|
|
|
|
Admin() bool
|
|
|
|
Muted() bool
|
2020-11-01 09:20:42 +13:00
|
|
|
IsHost() bool
|
2020-10-23 03:54:50 +13:00
|
|
|
Connected() bool
|
2020-11-02 04:09:48 +13:00
|
|
|
Address() string
|
2020-10-23 03:54:50 +13:00
|
|
|
SetMuted(muted bool)
|
2020-11-01 09:46:29 +13:00
|
|
|
SetName(name string)
|
|
|
|
SetSocket(socket WebSocket)
|
|
|
|
SetPeer(peer Peer)
|
2020-11-02 04:09:48 +13:00
|
|
|
SetConnected()
|
|
|
|
Disconnect(reason string) error
|
2020-10-23 03:54:50 +13:00
|
|
|
Send(v interface{}) error
|
|
|
|
SignalAnswer(sdp string) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type SessionManager interface {
|
|
|
|
New(id string, admin bool, socket WebSocket) Session
|
2020-11-02 04:09:48 +13:00
|
|
|
Get(id string) (Session, bool)
|
|
|
|
Has(id string) bool
|
|
|
|
Destroy(id string) error
|
|
|
|
|
2020-10-23 03:54:50 +13:00
|
|
|
HasHost() bool
|
2020-11-02 04:09:48 +13:00
|
|
|
SetHost(host Session)
|
2020-11-01 11:53:19 +13:00
|
|
|
GetHost() Session
|
2020-10-23 03:54:50 +13:00
|
|
|
ClearHost()
|
2020-11-02 04:09:48 +13:00
|
|
|
|
|
|
|
Admins() []Session
|
|
|
|
Members() []Session
|
2020-10-23 03:54:50 +13:00
|
|
|
Broadcast(v interface{}, exclude interface{}) error
|
2020-11-02 04:09:48 +13:00
|
|
|
|
2020-11-01 11:03:37 +13:00
|
|
|
OnHost(listener func(session Session))
|
|
|
|
OnHostCleared(listener func(session Session))
|
2020-11-01 11:53:19 +13:00
|
|
|
OnDestroy(listener func(id string))
|
2020-11-01 11:03:37 +13:00
|
|
|
OnCreated(listener func(session Session))
|
|
|
|
OnConnected(listener func(session Session))
|
2020-10-23 03:54:50 +13:00
|
|
|
}
|