| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package server
- import (
- "encoding/json"
- "github.com/go-redis/redis/v7"
- )
- type ActionType string
- const (
- StateSet ActionType = "STATE_SET"
- ClientListUpdated = "CLIENT_LIST_UPDATED"
- )
- type Action struct {
- Type ActionType `json:"type"`
- FromClient *string `json:"fromClient"`
- Payload interface{} `json:"payload"`
- }
- func broadcastAction(thisPodClients *map[string]*Client, action *Action) []error {
- var errors []error
- for _, client := range(*thisPodClients) {
- if err := client.send(action); err != nil {
- errors = append(errors, err)
- }
- }
- return errors
- }
- func publishAction(rdb *redis.Client, action *Action) error {
- pubsubPayload, err := json.Marshal(action)
- if err != nil {
- return err
- }
- if _, err := rdb.Publish(TOPIC_BROADCAST, pubsubPayload).Result(); err != nil {
- return err
- }
- return nil
- }
|