62 lines
1.2 KiB
Go
62 lines
1.2 KiB
Go
package services
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"git.solsynth.dev/hydrogen/dealer/pkg/internal/models"
|
|
"github.com/gofiber/contrib/websocket"
|
|
)
|
|
|
|
var (
|
|
wsMutex sync.Mutex
|
|
wsConn = make(map[uint]map[*websocket.Conn]bool)
|
|
)
|
|
|
|
func ClientRegister(user models.Account, conn *websocket.Conn) {
|
|
wsMutex.Lock()
|
|
if wsConn[user.ID] == nil {
|
|
wsConn[user.ID] = make(map[*websocket.Conn]bool)
|
|
}
|
|
wsConn[user.ID][conn] = true
|
|
wsMutex.Unlock()
|
|
}
|
|
|
|
func ClientUnregister(user models.Account, conn *websocket.Conn) {
|
|
wsMutex.Lock()
|
|
if wsConn[user.ID] == nil {
|
|
wsConn[user.ID] = make(map[*websocket.Conn]bool)
|
|
}
|
|
delete(wsConn[user.ID], conn)
|
|
wsMutex.Unlock()
|
|
}
|
|
|
|
func ClientCount(uid uint) int {
|
|
return len(wsConn[uid])
|
|
}
|
|
|
|
func WebsocketPush(uid uint, body []byte) (count int, success int, errs []error) {
|
|
for conn := range wsConn[uid] {
|
|
if err := conn.WriteMessage(1, body); err != nil {
|
|
errs = append(errs, err)
|
|
} else {
|
|
success++
|
|
}
|
|
count++
|
|
}
|
|
return
|
|
}
|
|
|
|
func WebsocketPushBatch(uidList []uint, body []byte) (count int, success int, errs []error) {
|
|
for _, uid := range uidList {
|
|
for conn := range wsConn[uid] {
|
|
if err := conn.WriteMessage(1, body); err != nil {
|
|
errs = append(errs, err)
|
|
} else {
|
|
success++
|
|
}
|
|
count++
|
|
}
|
|
}
|
|
return
|
|
}
|