2023-04-27 09:03:40 +08:00
|
|
|
package reader
|
|
|
|
|
|
|
|
import (
|
2024-01-24 02:28:32 +08:00
|
|
|
"context"
|
2024-02-02 23:36:27 +08:00
|
|
|
"encoding/json"
|
2024-01-24 02:28:32 +08:00
|
|
|
"errors"
|
2023-04-27 09:03:40 +08:00
|
|
|
"github.com/iMDT/bbb-graphql-middleware/internal/common"
|
2023-12-15 01:01:47 +08:00
|
|
|
"github.com/iMDT/bbb-graphql-middleware/internal/hascli/retransmiter"
|
2023-05-10 02:37:58 +08:00
|
|
|
"github.com/iMDT/bbb-graphql-middleware/internal/msgpatch"
|
2023-04-27 09:03:40 +08:00
|
|
|
log "github.com/sirupsen/logrus"
|
2024-02-03 01:37:32 +08:00
|
|
|
"hash/crc32"
|
2023-04-27 09:03:40 +08:00
|
|
|
"nhooyr.io/websocket/wsjson"
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
// HasuraConnectionReader consumes messages from Hasura connection and add send to the browser channel
|
2023-12-15 01:01:47 +08:00
|
|
|
func HasuraConnectionReader(hc *common.HasuraConnection, fromHasuraToBrowserChannel *common.SafeChannel, fromBrowserToHasuraChannel *common.SafeChannel, wg *sync.WaitGroup) {
|
2023-04-27 09:03:40 +08:00
|
|
|
log := log.WithField("_routine", "HasuraConnectionReader").WithField("browserConnectionId", hc.Browserconn.Id).WithField("hasuraConnectionId", hc.Id)
|
2023-09-30 07:05:23 +08:00
|
|
|
defer log.Debugf("finished")
|
|
|
|
log.Debugf("starting")
|
2023-04-27 09:03:40 +08:00
|
|
|
|
|
|
|
defer wg.Done()
|
|
|
|
defer hc.ContextCancelFunc()
|
|
|
|
|
|
|
|
for {
|
|
|
|
// Read a message from hasura
|
|
|
|
var message interface{}
|
|
|
|
err := wsjson.Read(hc.Context, hc.Websocket, &message)
|
|
|
|
if err != nil {
|
2024-01-24 02:28:32 +08:00
|
|
|
if errors.Is(err, context.Canceled) {
|
|
|
|
log.Debugf("Closing ws connection as Context was cancelled!")
|
|
|
|
} else {
|
|
|
|
log.Errorf("Error reading message from Hasura: %v", err)
|
|
|
|
}
|
2023-04-27 09:03:40 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Tracef("received from hasura: %v", message)
|
|
|
|
|
2024-02-03 02:09:56 +08:00
|
|
|
handleMessageReceivedFromHasura(hc, fromHasuraToBrowserChannel, fromBrowserToHasuraChannel, message)
|
2024-02-02 23:36:27 +08:00
|
|
|
}
|
|
|
|
}
|
2023-07-06 20:34:48 +08:00
|
|
|
|
2024-02-02 23:36:27 +08:00
|
|
|
func handleMessageReceivedFromHasura(hc *common.HasuraConnection, fromHasuraToBrowserChannel *common.SafeChannel, fromBrowserToHasuraChannel *common.SafeChannel, message interface{}) {
|
|
|
|
var messageMap = message.(map[string]interface{})
|
|
|
|
|
|
|
|
if messageMap != nil {
|
|
|
|
var messageType = messageMap["type"]
|
|
|
|
var queryId, _ = messageMap["id"].(string)
|
|
|
|
|
|
|
|
//Check if subscription is still active!
|
|
|
|
if queryId != "" {
|
|
|
|
hc.Browserconn.ActiveSubscriptionsMutex.RLock()
|
|
|
|
subscription, ok := hc.Browserconn.ActiveSubscriptions[queryId]
|
|
|
|
hc.Browserconn.ActiveSubscriptionsMutex.RUnlock()
|
|
|
|
if !ok {
|
|
|
|
log.Debugf("Subscription with Id %s doesn't exist anymore, skiping response.", queryId)
|
|
|
|
return
|
|
|
|
}
|
2023-04-27 09:03:40 +08:00
|
|
|
|
2024-02-02 23:36:27 +08:00
|
|
|
//When Hasura send msg type "complete", this query is finished
|
|
|
|
if messageType == "complete" {
|
|
|
|
handleCompleteMessage(hc, queryId)
|
|
|
|
}
|
2023-05-10 02:37:58 +08:00
|
|
|
|
2024-02-02 23:36:27 +08:00
|
|
|
if messageType == "data" &&
|
|
|
|
subscription.Type == common.Subscription {
|
|
|
|
hasNoPreviousOccurrence := handleSubscriptionMessage(hc, messageMap, subscription, queryId)
|
2023-04-27 09:03:40 +08:00
|
|
|
|
2024-02-02 23:36:27 +08:00
|
|
|
if !hasNoPreviousOccurrence {
|
|
|
|
return
|
2023-05-10 02:37:58 +08:00
|
|
|
}
|
2024-02-02 23:36:27 +08:00
|
|
|
}
|
2024-01-24 02:28:32 +08:00
|
|
|
|
2024-02-02 23:36:27 +08:00
|
|
|
//Set last cursor value for stream
|
|
|
|
if subscription.Type == common.Streaming {
|
|
|
|
handleStreamingMessage(hc, messageMap, subscription, queryId)
|
|
|
|
}
|
|
|
|
}
|
2024-01-24 02:28:32 +08:00
|
|
|
|
2024-02-02 23:36:27 +08:00
|
|
|
// Retransmit the subscription start commands when hasura confirms the connection
|
|
|
|
// this is useful in case of a connection invalidation
|
|
|
|
if messageType == "connection_ack" {
|
|
|
|
handleConnectionAckMessage(hc, messageMap, fromHasuraToBrowserChannel, fromBrowserToHasuraChannel)
|
|
|
|
} else {
|
|
|
|
// Forward the message to browser
|
|
|
|
fromHasuraToBrowserChannel.Send(messageMap)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleSubscriptionMessage(hc *common.HasuraConnection, messageMap map[string]interface{}, subscription common.GraphQlSubscription, queryId string) bool {
|
|
|
|
if payload, okPayload := messageMap["payload"].(map[string]interface{}); okPayload {
|
|
|
|
if data, okData := payload["data"].(map[string]interface{}); okData {
|
|
|
|
for dataKey, dataItem := range data {
|
|
|
|
if currentDataProp, okCurrentDataProp := dataItem.([]interface{}); okCurrentDataProp {
|
|
|
|
if dataAsJson, err := json.Marshal(currentDataProp); err == nil {
|
|
|
|
//Check whether ReceivedData is different from the LastReceivedData
|
|
|
|
//Otherwise stop forwarding this message
|
2024-02-03 01:37:32 +08:00
|
|
|
dataChecksum := crc32.ChecksumIEEE(dataAsJson)
|
|
|
|
if subscription.LastReceivedDataChecksum == dataChecksum {
|
2024-02-02 23:36:27 +08:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2024-02-03 01:37:32 +08:00
|
|
|
//Store LastReceivedData Checksum
|
|
|
|
subscription.LastReceivedDataChecksum = dataChecksum
|
2024-01-24 02:28:32 +08:00
|
|
|
hc.Browserconn.ActiveSubscriptionsMutex.Lock()
|
|
|
|
hc.Browserconn.ActiveSubscriptions[queryId] = subscription
|
|
|
|
hc.Browserconn.ActiveSubscriptionsMutex.Unlock()
|
|
|
|
|
2024-02-02 23:36:27 +08:00
|
|
|
//Apply msg patch when it supports it
|
|
|
|
if subscription.JsonPatchSupported {
|
|
|
|
msgpatch.PatchMessage(&messageMap, queryId, dataKey, dataAsJson, hc.Browserconn)
|
|
|
|
}
|
|
|
|
}
|
2024-01-24 02:28:32 +08:00
|
|
|
}
|
2023-05-10 02:37:58 +08:00
|
|
|
}
|
2024-02-02 23:36:27 +08:00
|
|
|
}
|
|
|
|
}
|
2023-05-10 02:37:58 +08:00
|
|
|
|
2024-02-02 23:36:27 +08:00
|
|
|
return true
|
|
|
|
}
|
2024-01-24 07:20:16 +08:00
|
|
|
|
2024-02-02 23:36:27 +08:00
|
|
|
func handleStreamingMessage(hc *common.HasuraConnection, messageMap map[string]interface{}, subscription common.GraphQlSubscription, queryId string) {
|
|
|
|
lastCursor := common.GetLastStreamCursorValueFromReceivedMessage(messageMap, subscription.StreamCursorField)
|
|
|
|
if lastCursor != nil && subscription.StreamCursorCurrValue != lastCursor {
|
|
|
|
subscription.StreamCursorCurrValue = lastCursor
|
|
|
|
|
|
|
|
hc.Browserconn.ActiveSubscriptionsMutex.Lock()
|
|
|
|
hc.Browserconn.ActiveSubscriptions[queryId] = subscription
|
|
|
|
hc.Browserconn.ActiveSubscriptionsMutex.Unlock()
|
2023-04-27 09:03:40 +08:00
|
|
|
}
|
|
|
|
}
|
2024-02-02 23:36:27 +08:00
|
|
|
|
|
|
|
func handleCompleteMessage(hc *common.HasuraConnection, queryId string) {
|
|
|
|
hc.Browserconn.ActiveSubscriptionsMutex.Lock()
|
2024-03-13 07:12:55 +08:00
|
|
|
queryType := hc.Browserconn.ActiveSubscriptions[queryId].Type
|
|
|
|
operationName := hc.Browserconn.ActiveSubscriptions[queryId].OperationName
|
2024-02-02 23:36:27 +08:00
|
|
|
delete(hc.Browserconn.ActiveSubscriptions, queryId)
|
|
|
|
hc.Browserconn.ActiveSubscriptionsMutex.Unlock()
|
2024-03-13 07:12:55 +08:00
|
|
|
log.Debugf("%s (%s) with Id %s finished by Hasura.", queryType, operationName, queryId)
|
2024-02-02 23:36:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleConnectionAckMessage(hc *common.HasuraConnection, messageMap map[string]interface{}, fromHasuraToBrowserChannel *common.SafeChannel, fromBrowserToHasuraChannel *common.SafeChannel) {
|
|
|
|
log.Debugf("Received connection_ack")
|
|
|
|
//Hasura connection was initialized, now it's able to send new messages to Hasura
|
|
|
|
fromBrowserToHasuraChannel.UnfreezeChannel()
|
|
|
|
|
|
|
|
//Avoid to send `connection_ack` to the browser when it's a reconnection
|
|
|
|
if hc.Browserconn.ConnAckSentToBrowser == false {
|
|
|
|
fromHasuraToBrowserChannel.Send(messageMap)
|
|
|
|
hc.Browserconn.ConnAckSentToBrowser = true
|
|
|
|
}
|
|
|
|
|
|
|
|
go retransmiter.RetransmitSubscriptionStartMessages(hc, fromBrowserToHasuraChannel)
|
|
|
|
}
|