mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-10-30 01:26:32 +00:00
287 lines
5.7 KiB
Go
287 lines
5.7 KiB
Go
package server
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"grain/events"
|
|
"time"
|
|
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
"golang.org/x/net/websocket"
|
|
)
|
|
|
|
type Subscription struct {
|
|
ID string
|
|
Filters []Filter
|
|
}
|
|
|
|
// Filter represents the criteria used to query events
|
|
type Filter struct {
|
|
IDs []string `json:"ids"`
|
|
Authors []string `json:"authors"`
|
|
Kinds []int `json:"kinds"`
|
|
Tags map[string][]string `json:"tags"`
|
|
Since *time.Time `json:"since"`
|
|
Until *time.Time `json:"until"`
|
|
Limit *int `json:"limit"`
|
|
}
|
|
|
|
var subscriptions = make(map[string]Subscription)
|
|
var client *mongo.Client
|
|
|
|
func SetClient(mongoClient *mongo.Client) {
|
|
client = mongoClient
|
|
}
|
|
|
|
func Handler(ws *websocket.Conn) {
|
|
defer ws.Close()
|
|
|
|
var msg string
|
|
for {
|
|
err := websocket.Message.Receive(ws, &msg)
|
|
if err != nil {
|
|
fmt.Println("Error receiving message:", err)
|
|
return
|
|
}
|
|
fmt.Println("Received message:", msg)
|
|
|
|
var message []interface{}
|
|
err = json.Unmarshal([]byte(msg), &message)
|
|
if err != nil {
|
|
fmt.Println("Error parsing message:", err)
|
|
continue
|
|
}
|
|
|
|
if len(message) < 2 {
|
|
fmt.Println("Invalid message format")
|
|
continue
|
|
}
|
|
|
|
messageType, ok := message[0].(string)
|
|
if !ok {
|
|
fmt.Println("Invalid message type")
|
|
continue
|
|
}
|
|
|
|
switch messageType {
|
|
case "EVENT":
|
|
handleEvent(ws, message)
|
|
case "REQ":
|
|
handleReq(ws, message)
|
|
case "CLOSE":
|
|
handleClose(ws, message)
|
|
default:
|
|
fmt.Println("Unknown message type:", messageType)
|
|
}
|
|
}
|
|
}
|
|
|
|
func handleEvent(ws *websocket.Conn, message []interface{}) {
|
|
if len(message) != 2 {
|
|
fmt.Println("Invalid EVENT message format")
|
|
return
|
|
}
|
|
|
|
eventData, ok := message[1].(map[string]interface{})
|
|
if !ok {
|
|
fmt.Println("Invalid event data format")
|
|
return
|
|
}
|
|
eventBytes, err := json.Marshal(eventData)
|
|
if err != nil {
|
|
fmt.Println("Error marshaling event data:", err)
|
|
return
|
|
}
|
|
|
|
var evt events.Event
|
|
err = json.Unmarshal(eventBytes, &evt)
|
|
if err != nil {
|
|
fmt.Println("Error unmarshaling event data:", err)
|
|
return
|
|
}
|
|
|
|
err = events.HandleEvent(context.TODO(), evt)
|
|
if err != nil {
|
|
fmt.Println("Error handling event:", err)
|
|
return
|
|
}
|
|
|
|
fmt.Println("Event processed:", evt.ID)
|
|
}
|
|
|
|
func handleReq(ws *websocket.Conn, message []interface{}) {
|
|
if len(message) < 3 {
|
|
fmt.Println("Invalid REQ message format")
|
|
return
|
|
}
|
|
|
|
subID, ok := message[1].(string)
|
|
if !ok {
|
|
fmt.Println("Invalid subscription ID format")
|
|
return
|
|
}
|
|
|
|
filters := make([]Filter, len(message)-2)
|
|
for i, filter := range message[2:] {
|
|
filterData, ok := filter.(map[string]interface{})
|
|
if !ok {
|
|
fmt.Println("Invalid filter format")
|
|
return
|
|
}
|
|
|
|
var f Filter
|
|
f.IDs = toStringArray(filterData["ids"])
|
|
f.Authors = toStringArray(filterData["authors"])
|
|
f.Kinds = toIntArray(filterData["kinds"])
|
|
f.Tags = toTagsMap(filterData["tags"])
|
|
f.Since = toTime(filterData["since"])
|
|
f.Until = toTime(filterData["until"])
|
|
f.Limit = toInt(filterData["limit"])
|
|
|
|
filters[i] = f
|
|
}
|
|
|
|
subscriptions[subID] = Subscription{ID: subID, Filters: filters}
|
|
fmt.Println("Subscription added:", subID)
|
|
|
|
// Query the database with filters and send back the results
|
|
events, err := QueryEvents(filters, client, "grain", "event-kind0")
|
|
if err != nil {
|
|
fmt.Println("Error querying events:", err)
|
|
return
|
|
}
|
|
|
|
for _, evt := range events {
|
|
msg := []interface{}{"EVENT", subID, evt}
|
|
msgBytes, _ := json.Marshal(msg)
|
|
err = websocket.Message.Send(ws, string(msgBytes))
|
|
if err != nil {
|
|
fmt.Println("Error sending event:", err)
|
|
return
|
|
}
|
|
}
|
|
|
|
// Indicate end of stored events
|
|
eoseMsg := []interface{}{"EOSE", subID}
|
|
eoseBytes, _ := json.Marshal(eoseMsg)
|
|
err = websocket.Message.Send(ws, string(eoseBytes))
|
|
if err != nil {
|
|
fmt.Println("Error sending EOSE:", err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func handleClose(ws *websocket.Conn, message []interface{}) {
|
|
if len(message) != 2 {
|
|
fmt.Println("Invalid CLOSE message format")
|
|
return
|
|
}
|
|
|
|
subID, ok := message[1].(string)
|
|
if !ok {
|
|
fmt.Println("Invalid subscription ID format")
|
|
return
|
|
}
|
|
|
|
delete(subscriptions, subID)
|
|
fmt.Println("Subscription closed:", subID)
|
|
|
|
closeMsg := []interface{}{"CLOSED", subID, "Subscription closed"}
|
|
closeBytes, _ := json.Marshal(closeMsg)
|
|
err := websocket.Message.Send(ws, string(closeBytes))
|
|
if err != nil {
|
|
fmt.Println("Error sending CLOSE message:", err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func toStringArray(i interface{}) []string {
|
|
if i == nil {
|
|
return nil
|
|
}
|
|
arr, ok := i.([]interface{})
|
|
if !ok {
|
|
return nil
|
|
}
|
|
var result []string
|
|
for _, v := range arr {
|
|
str, ok := v.(string)
|
|
if ok {
|
|
result = append(result, str)
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
func toIntArray(i interface{}) []int {
|
|
if i == nil {
|
|
return nil
|
|
}
|
|
arr, ok := i.([]interface{})
|
|
if !ok {
|
|
return nil
|
|
}
|
|
var result []int
|
|
for _, v := range arr {
|
|
num, ok := v.(float64)
|
|
if ok {
|
|
result = append(result, int(num))
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
func toTagsMap(i interface{}) map[string][]string {
|
|
if i == nil {
|
|
return nil
|
|
}
|
|
tags, ok := i.(map[string]interface{})
|
|
if !ok {
|
|
return nil
|
|
}
|
|
result := make(map[string][]string)
|
|
for k, v := range tags {
|
|
result[k] = toStringArray(v)
|
|
}
|
|
return result
|
|
}
|
|
|
|
func toInt64(i interface{}) *int64 {
|
|
if i == nil {
|
|
return nil
|
|
}
|
|
num, ok := i.(float64)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
val := int64(num)
|
|
return &val
|
|
}
|
|
|
|
func toInt(i interface{}) *int {
|
|
if i == nil {
|
|
return nil
|
|
}
|
|
num, ok := i.(float64)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
val := int(num)
|
|
return &val
|
|
}
|
|
|
|
func toTime(data interface{}) *time.Time {
|
|
if data == nil {
|
|
return nil
|
|
}
|
|
// Ensure data is a float64 which MongoDB uses for numbers
|
|
timestamp, ok := data.(float64)
|
|
if !ok {
|
|
fmt.Println("Invalid timestamp format")
|
|
return nil
|
|
}
|
|
t := time.Unix(int64(timestamp), 0).UTC()
|
|
return &t
|
|
}
|