4ea48b3333
Additionally, the mobile app can use this feature to render the whiteboard inside an iframe with the same `userId`. By setting the parameter `revokePreviousSession=true`, a new `sessionToken` will be generated, and the previous session will be revoked when the new device connects. This is useful for transferring a session to another device and automatically closing the previous session.
185 lines
5.5 KiB
Go
185 lines
5.5 KiB
Go
package websrv
|
|
|
|
import (
|
|
"bbb-graphql-middleware/config"
|
|
"bbb-graphql-middleware/internal/common"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/redis/go-redis/v9"
|
|
log "github.com/sirupsen/logrus"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
var redisClient = redis.NewClient(&redis.Options{
|
|
Addr: fmt.Sprintf("%s:%d", config.GetConfig().Redis.Host, config.GetConfig().Redis.Port),
|
|
Password: config.GetConfig().Redis.Password,
|
|
DB: 0,
|
|
})
|
|
|
|
func GetRedisConn() *redis.Client {
|
|
return redisClient
|
|
}
|
|
|
|
func StartRedisListener() {
|
|
log := log.WithField("_routine", "StartRedisListener")
|
|
|
|
var ctx = context.Background()
|
|
|
|
subscriber := GetRedisConn().Subscribe(ctx, "from-akka-apps-redis-channel")
|
|
|
|
for {
|
|
msg, err := subscriber.ReceiveMessage(ctx)
|
|
if err != nil {
|
|
log.Errorf("error: ", err)
|
|
}
|
|
|
|
// Skip parsing unnecessary messages
|
|
if !strings.Contains(msg.Payload, "ForceUserGraphqlReconnectionSysMsg") &&
|
|
!strings.Contains(msg.Payload, "ForceUserGraphqlDisconnectionSysMsg") &&
|
|
!strings.Contains(msg.Payload, "CheckGraphqlMiddlewareAlivePingSysMsg") {
|
|
continue
|
|
}
|
|
|
|
var message interface{}
|
|
if err := json.Unmarshal([]byte(msg.Payload), &message); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
messageAsMap := message.(map[string]interface{})
|
|
|
|
messageEnvelopeAsMap := messageAsMap["envelope"].(map[string]interface{})
|
|
|
|
messageType := messageEnvelopeAsMap["name"]
|
|
|
|
if messageType == "ForceUserGraphqlReconnectionSysMsg" {
|
|
messageCoreAsMap := messageAsMap["core"].(map[string]interface{})
|
|
messageBodyAsMap := messageCoreAsMap["body"].(map[string]interface{})
|
|
sessionTokenToInvalidate := messageBodyAsMap["sessionToken"]
|
|
reason := messageBodyAsMap["reason"]
|
|
log.Debugf("Received reconnection request for sessionToken %v (%v)", sessionTokenToInvalidate, reason)
|
|
|
|
go InvalidateSessionTokenHasuraConnections(sessionTokenToInvalidate.(string))
|
|
}
|
|
|
|
if messageType == "ForceUserGraphqlDisconnectionSysMsg" {
|
|
messageCoreAsMap := messageAsMap["core"].(map[string]interface{})
|
|
messageBodyAsMap := messageCoreAsMap["body"].(map[string]interface{})
|
|
sessionTokenToInvalidate := messageBodyAsMap["sessionToken"]
|
|
reason := messageBodyAsMap["reason"]
|
|
reasonMsgId := messageBodyAsMap["reasonMessageId"]
|
|
log.Debugf("Received disconnection request for sessionToken %v (%s - %s)", sessionTokenToInvalidate, reasonMsgId, reason)
|
|
|
|
//Not being used yet
|
|
go InvalidateSessionTokenBrowserConnections(sessionTokenToInvalidate.(string), reasonMsgId.(string), reason.(string))
|
|
}
|
|
|
|
//Ping message requires a response with a Pong message
|
|
if messageType == "CheckGraphqlMiddlewareAlivePingSysMsg" &&
|
|
strings.Contains(msg.Payload, common.GetUniqueID()) {
|
|
messageCoreAsMap := messageAsMap["core"].(map[string]interface{})
|
|
messageBodyAsMap := messageCoreAsMap["body"].(map[string]interface{})
|
|
middlewareUID := messageBodyAsMap["middlewareUID"]
|
|
if middlewareUID == common.GetUniqueID() {
|
|
log.Debugf("Received ping message from akka-apps")
|
|
go SendCheckGraphqlMiddlewareAlivePongSysMsg()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func getCurrTimeInMs() int64 {
|
|
currentTime := time.Now()
|
|
milliseconds := currentTime.UnixNano() / int64(time.Millisecond)
|
|
return milliseconds
|
|
}
|
|
|
|
func sendBbbCoreMsgToRedis(name string, body map[string]interface{}) {
|
|
channelName := "to-akka-apps-redis-channel"
|
|
|
|
message := map[string]interface{}{
|
|
"envelope": map[string]interface{}{
|
|
"name": name,
|
|
"routing": map[string]interface{}{
|
|
"sender": "bbb-graphql-middleware",
|
|
},
|
|
"timestamp": getCurrTimeInMs(),
|
|
},
|
|
"core": map[string]interface{}{
|
|
"header": map[string]interface{}{
|
|
"name": name,
|
|
},
|
|
"body": body,
|
|
},
|
|
}
|
|
|
|
messageJSON, err := json.Marshal(message)
|
|
if err != nil {
|
|
log.Tracef("Error while marshaling message to json: %v\n", err)
|
|
return
|
|
}
|
|
|
|
err = GetRedisConn().Publish(context.Background(), channelName, messageJSON).Err()
|
|
if err != nil {
|
|
log.Tracef("Error while sending msg to redis channel: %v\n", err)
|
|
return
|
|
}
|
|
|
|
log.Tracef("JSON message sent to channel %s:\n%s\n", channelName, string(messageJSON))
|
|
}
|
|
|
|
func SendUserGraphqlReconnectionForcedEvtMsg(sessionToken string) {
|
|
var body = map[string]interface{}{
|
|
"middlewareUID": common.GetUniqueID(),
|
|
"sessionToken": sessionToken,
|
|
}
|
|
|
|
sendBbbCoreMsgToRedis("UserGraphqlReconnectionForcedEvtMsg", body)
|
|
}
|
|
|
|
func SendUserGraphqlDisconnectionForcedEvtMsg(sessionToken string) {
|
|
var body = map[string]interface{}{
|
|
"middlewareUID": common.GetUniqueID(),
|
|
"sessionToken": sessionToken,
|
|
}
|
|
|
|
sendBbbCoreMsgToRedis("UserGraphqlDisconnectionForcedEvtMsg", body)
|
|
}
|
|
|
|
func SendUserGraphqlConnectionEstablishedSysMsg(
|
|
sessionToken string,
|
|
clientSessionUUID string,
|
|
clientType string,
|
|
clientIsMobile bool,
|
|
browserConnectionId string) {
|
|
var body = map[string]interface{}{
|
|
"middlewareUID": common.GetUniqueID(),
|
|
"sessionToken": sessionToken,
|
|
"clientSessionUUID": clientSessionUUID,
|
|
"clientType": clientType,
|
|
"clientIsMobile": clientIsMobile,
|
|
"browserConnectionId": browserConnectionId,
|
|
}
|
|
|
|
sendBbbCoreMsgToRedis("UserGraphqlConnectionEstablishedSysMsg", body)
|
|
}
|
|
|
|
func SendUserGraphqlConnectionClosedSysMsg(sessionToken string, browserConnectionId string) {
|
|
var body = map[string]interface{}{
|
|
"middlewareUID": common.GetUniqueID(),
|
|
"sessionToken": sessionToken,
|
|
"browserConnectionId": browserConnectionId,
|
|
}
|
|
|
|
sendBbbCoreMsgToRedis("UserGraphqlConnectionClosedSysMsg", body)
|
|
}
|
|
|
|
func SendCheckGraphqlMiddlewareAlivePongSysMsg() {
|
|
var body = map[string]interface{}{
|
|
"middlewareUID": common.GetUniqueID(),
|
|
}
|
|
|
|
sendBbbCoreMsgToRedis("CheckGraphqlMiddlewareAlivePongSysMsg", body)
|
|
}
|