-
Notifications
You must be signed in to change notification settings - Fork 33
/
message.go
47 lines (40 loc) · 965 Bytes
/
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
package main
import (
"encoding/json"
"log"
"github.com/jeroendk/chatApplication/models"
)
const SendMessageAction = "send-message"
const JoinRoomAction = "join-room"
const LeaveRoomAction = "leave-room"
const UserJoinedAction = "user-join"
const UserLeftAction = "user-left"
const JoinRoomPrivateAction = "join-room-private"
const RoomJoinedAction = "room-joined"
type Message struct {
Action string `json:"action"`
Message string `json:"message"`
Target *Room `json:"target"`
Sender models.User `json:"sender"`
}
func (message *Message) encode() []byte {
json, err := json.Marshal(message)
if err != nil {
log.Println(err)
}
return json
}
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
}