-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.go
50 lines (43 loc) · 1.04 KB
/
message.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package main
import (
"encoding/json"
"log"
"github.com/1024casts/minichat/models"
)
const (
SendMessageAction = "send-message"
JoinRoomAction = "join-room"
LeaveRoomAction = "leave-room"
JoinRoomPrivateAction = "join-room-private"
RoomJoinedAction = "room-joined"
UserJoinedAction = "user-join"
UserLeftAction = "user-left"
)
type Message struct {
Action string `json:"action"`
Message string `json:"message"`
Target *Room `json:"target"`
Sender models.User `json:"sender"` // Use model.User interface
}
func (message *Message) encode() []byte {
data, err := json.Marshal(message)
if err != nil {
log.Println(err)
}
return data
}
// UnmarshalJSON custom unmarshel to create a Client instance for Sender
func (message *Message) UnmarshalJSON(data []byte) error {
type Alias Message
msg := &struct {
Sender Client `json:"sender"`
*Alias
}{
Alias: (*Alias)(message),
}
if err := json.Unmarshal(data, &msg); err != nil {
return err
}
message.Sender = &msg.Sender
return nil
}