2022-10-22 14:41:48 +02:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"forge.redroom.link/yves/meowlib"
|
|
|
|
"github.com/go-redis/redis"
|
2022-10-22 22:40:03 +02:00
|
|
|
"google.golang.org/protobuf/proto"
|
2022-10-22 14:41:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type RedisRouter struct {
|
2023-08-31 23:38:03 +02:00
|
|
|
Name string
|
|
|
|
ServerIdentity *Identity
|
|
|
|
Client *redis.Client
|
|
|
|
InvitationTimeout int
|
|
|
|
Context context.Context
|
2022-10-22 14:41:48 +02:00
|
|
|
}
|
|
|
|
|
2023-08-31 23:43:36 +02:00
|
|
|
func NewRedisRouter(server *Identity, redisUrl string, password string, db int, invitationTimeout int) *RedisRouter {
|
2022-10-22 14:41:48 +02:00
|
|
|
var r RedisRouter
|
|
|
|
r.ServerIdentity = server
|
|
|
|
r.Name = "Redis"
|
|
|
|
r.Client = redis.NewClient(&redis.Options{
|
2023-08-31 23:43:36 +02:00
|
|
|
Addr: redisUrl,
|
2022-10-22 14:41:48 +02:00
|
|
|
Password: password,
|
|
|
|
DB: db,
|
|
|
|
})
|
2023-08-31 23:43:36 +02:00
|
|
|
r.InvitationTimeout = invitationTimeout
|
2022-10-22 14:41:48 +02:00
|
|
|
r.Context = context.Background()
|
|
|
|
return &r
|
|
|
|
}
|
|
|
|
|
2022-10-22 22:40:03 +02:00
|
|
|
func (r *RedisRouter) Route(msg *meowlib.ToServerMessage) (*meowlib.FromServerMessage, error) {
|
2022-10-22 14:41:48 +02:00
|
|
|
var from_server meowlib.FromServerMessage
|
2023-08-31 23:38:03 +02:00
|
|
|
// user message
|
|
|
|
if len(msg.Messages) > 0 {
|
2022-10-22 14:41:48 +02:00
|
|
|
for _, usrmsg := range msg.Messages {
|
2022-10-22 22:40:03 +02:00
|
|
|
// serialize the message to store it as byte array into redis
|
2022-12-17 21:37:48 +01:00
|
|
|
out, err := proto.Marshal(usrmsg)
|
2022-10-22 22:40:03 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-12-27 16:59:52 +01:00
|
|
|
r.Client.ZAdd(usrmsg.Destination, redis.Z{Score: float64(time.Now().Unix()), Member: out})
|
2022-10-22 14:41:48 +02:00
|
|
|
}
|
|
|
|
from_server.UuidAck = msg.Uuid
|
|
|
|
}
|
2023-08-31 23:38:03 +02:00
|
|
|
// check for messages
|
2022-10-22 14:41:48 +02:00
|
|
|
if len(msg.PullRequest) > 0 {
|
|
|
|
for _, rq := range msg.PullRequest {
|
2022-10-22 22:40:03 +02:00
|
|
|
msgcnt, err := r.Client.ZCount(rq.LookupKey, "-inf", "+inf").Result()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
res, err := r.Client.ZPopMin(rq.LookupKey, msgcnt).Result()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, redismsg := range res {
|
2022-12-18 19:47:44 +01:00
|
|
|
//println(redismsg.Score)
|
2022-12-17 12:56:34 +01:00
|
|
|
val := redismsg.Member
|
2022-12-17 13:00:28 +01:00
|
|
|
test := val.(string)
|
2022-10-22 22:40:03 +02:00
|
|
|
var usrmsg meowlib.PackedUserMessage
|
2022-12-17 13:00:28 +01:00
|
|
|
err := proto.Unmarshal([]byte(test), &usrmsg)
|
2022-10-22 22:40:03 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// add server timestamp
|
|
|
|
usrmsg.ServerTimestamp = append(usrmsg.ServerTimestamp, int64(redismsg.Score))
|
|
|
|
|
|
|
|
from_server.Chat = append(from_server.Chat, &usrmsg)
|
|
|
|
}
|
|
|
|
|
2022-10-22 14:41:48 +02:00
|
|
|
}
|
2022-10-24 18:44:21 +02:00
|
|
|
}
|
2023-08-31 23:38:03 +02:00
|
|
|
// manage Matriochka
|
2022-12-27 16:59:52 +01:00
|
|
|
if msg.MatriochkaMessage != nil {
|
|
|
|
out, err := proto.Marshal(msg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
r.Client.ZAdd("mtk", redis.Z{Score: float64(time.Now().Unix()), Member: out})
|
|
|
|
if msg.MatriochkaMessage.LookupKey != "" {
|
|
|
|
//r.Client.ZAdd("trk:" + msg.MatriochkaMessage.Next.Uuid,{})
|
|
|
|
}
|
|
|
|
from_server.UuidAck = msg.Uuid
|
|
|
|
}
|
2023-08-31 23:38:03 +02:00
|
|
|
// Server list exchange
|
2022-10-24 18:44:21 +02:00
|
|
|
if len(msg.KnownServers) > 0 {
|
|
|
|
|
2023-08-31 23:38:03 +02:00
|
|
|
}
|
|
|
|
// Through server invitation process
|
|
|
|
if msg.Invitation != nil {
|
|
|
|
switch msg.Invitation.Step {
|
|
|
|
case 1: // create invitation
|
|
|
|
url, expiry := r.CreateInvitation(msg.Invitation.Payload, int(msg.Invitation.Timeout), msg.Invitation.Password, r.InvitationTimeout, int(msg.Invitation.Urllen))
|
|
|
|
from_server.Invitation.Url = url
|
|
|
|
from_server.Invitation.Expiry = expiry.UTC().Unix()
|
|
|
|
case 2: // get invitation
|
|
|
|
invitation, err := r.GetInvitation(msg.Invitation.Url, msg.Invitation.Password)
|
|
|
|
if err != nil {
|
|
|
|
if err.Error() == "auth failed" {
|
|
|
|
from_server.Invitation.Payload = []byte("authentication failure")
|
|
|
|
} else {
|
|
|
|
from_server.Invitation.Payload = []byte("invitation expired")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
from_server.Invitation.Payload = invitation
|
|
|
|
}
|
|
|
|
case 3: // answer invitation
|
|
|
|
expiry := r.AnswerInvitation(msg.Invitation.Url, int(msg.Invitation.Timeout), msg.Invitation.Payload, r.InvitationTimeout)
|
|
|
|
from_server.Invitation.Expiry = expiry.UTC().Unix()
|
|
|
|
case 4: // get answer
|
|
|
|
answer, err := r.GetInvitationAnswer(msg.Invitation.Url)
|
|
|
|
if err != nil {
|
|
|
|
from_server.Invitation.Payload = []byte("invitation expired")
|
|
|
|
} else {
|
|
|
|
from_server.Invitation.Payload = answer
|
|
|
|
}
|
|
|
|
}
|
2022-10-22 14:41:48 +02:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
|
|
|
|
case "s": // servers list
|
2022-10-22 22:40:03 +02:00
|
|
|
breakmsgs
|
2022-10-22 14:41:48 +02:00
|
|
|
|
|
|
|
case "m": // matriochka
|
|
|
|
break
|
|
|
|
case "b": // broadcast
|
|
|
|
break
|
|
|
|
case "a": // admin
|
|
|
|
break
|
|
|
|
}
|
|
|
|
*/
|
2022-10-22 22:40:03 +02:00
|
|
|
return &from_server, nil
|
2022-10-22 14:41:48 +02:00
|
|
|
}
|