summaryrefslogtreecommitdiffstats
path: root/pkg/protocol/messages.go
blob: c8f6398f92ad918eda0867dabd542eb9c20d297d (plain) (blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// Package protocol defines the message structures and types for NoshiTalk communication.
package protocol

import (
	"encoding/json"
	"time"
)

// Message types
const (
	TypeMessage      = "message"
	TypePrivate      = "private"
	TypeSystem       = "system"
	TypeError        = "error"
	TypeUserList     = "user_list"
	TypeUserJoin     = "user_join"
	TypeUserLeave    = "user_leave"
	TypeHandshake    = "handshake"
	TypePublic       = "public"
	TypeKeyRotation  = "key_rotation"
	TypeFileOffer    = "file_offer"
	TypeFileChunk    = "file_chunk"
	TypeFileAccept   = "file_accept"
	TypeFileReject   = "file_reject"
	TypeFileComplete = "file_complete"
)

// Message represents a chat message.
type Message struct {
	From    string `json:"from"`
	To      string `json:"to,omitempty"`
	Content string `json:"content"`
	Time    string `json:"time"`
	Type    string `json:"type"`
}

// UserListMessage represents a list of online users.
type UserListMessage struct {
	Type  string   `json:"type"`
	Users []string `json:"users"`
	Time  string   `json:"time"`
}

// FileOfferMessage represents a file transfer offer.
type FileOfferMessage struct {
	Type        string `json:"type"`
	From        string `json:"from"`
	To          string `json:"to"`
	FileID      string `json:"file_id"`
	Filename    string `json:"filename"`
	Size        int64  `json:"size"`
	TotalChunks int    `json:"total_chunks"`
	SHA256      string `json:"sha256"`
	Compressed  bool   `json:"compressed"`
	Time        string `json:"time"`
}

// FileChunkMessage represents a chunk of file data.
type FileChunkMessage struct {
	Type        string `json:"type"`
	FileID      string `json:"file_id"`
	ChunkIndex  int    `json:"chunk_index"`
	TotalChunks int    `json:"total_chunks"`
	Data        string `json:"data"`
	Time        string `json:"time"`
}

// FileResponseMessage represents a response to a file transfer.
type FileResponseMessage struct {
	Type    string `json:"type"`
	FileID  string `json:"file_id"`
	From    string `json:"from"`
	Status  string `json:"status"`
	Message string `json:"message"`
	SHA256  string `json:"sha256,omitempty"`
	Time    string `json:"time"`
}

// KeyRotationMessage represents a key rotation request.
type KeyRotationMessage struct {
	Type      string `json:"type"`
	PublicKey []byte `json:"public_key"`
	Nonce     []byte `json:"nonce"`
	Signature []byte `json:"signature"`
	Time      string `json:"time"`
}

// NewMessage creates a new message with the current timestamp.
func NewMessage(from, to, content, msgType string) *Message {
	return &Message{
		From:    from,
		To:      to,
		Content: content,
		Time:    time.Now().Format("15:04:05"),
		Type:    msgType,
	}
}

// NewSystemMessage creates a new system message.
func NewSystemMessage(content string) *Message {
	return NewMessage("System", "", content, TypeSystem)
}

// NewErrorMessage creates a new error message.
func NewErrorMessage(content string) *Message {
	return NewMessage("System", "", content, TypeError)
}

// NewUserListMessage creates a new user list message.
func NewUserListMessage(users []string) *UserListMessage {
	return &UserListMessage{
		Type:  TypeUserList,
		Users: users,
		Time:  time.Now().Format("15:04:05"),
	}
}

// ToJSON marshals the message to JSON.
func (m *Message) ToJSON() ([]byte, error) {
	return json.Marshal(m)
}

// ToJSON marshals the user list message to JSON.
func (m *UserListMessage) ToJSON() ([]byte, error) {
	return json.Marshal(m)
}

// ToJSON marshals the file offer message to JSON.
func (m *FileOfferMessage) ToJSON() ([]byte, error) {
	return json.Marshal(m)
}

// ToJSON marshals the file chunk message to JSON.
func (m *FileChunkMessage) ToJSON() ([]byte, error) {
	return json.Marshal(m)
}

// ToJSON marshals the file response message to JSON.
func (m *FileResponseMessage) ToJSON() ([]byte, error) {
	return json.Marshal(m)
}

// ToJSON marshals the key rotation message to JSON.
func (m *KeyRotationMessage) ToJSON() ([]byte, error) {
	return json.Marshal(m)
}

// ParseMessage parses a JSON message and returns its type and raw data.
func ParseMessage(data []byte) (string, map[string]interface{}, error) {
	var generic map[string]interface{}
	if err := json.Unmarshal(data, &generic); err != nil {
		return "", nil, err
	}

	msgType, ok := generic["type"].(string)
	if !ok {
		msgType = TypeMessage
	}

	return msgType, generic, nil
}

// ParseAsMessage parses JSON data as a Message.
func ParseAsMessage(data []byte) (*Message, error) {
	var msg Message
	if err := json.Unmarshal(data, &msg); err != nil {
		return nil, err
	}
	return &msg, nil
}

// ParseAsUserList parses JSON data as a UserListMessage.
func ParseAsUserList(data []byte) (*UserListMessage, error) {
	var msg UserListMessage
	if err := json.Unmarshal(data, &msg); err != nil {
		return nil, err
	}
	return &msg, nil
}

// ParseAsFileOffer parses JSON data as a FileOfferMessage.
func ParseAsFileOffer(data []byte) (*FileOfferMessage, error) {
	var msg FileOfferMessage
	if err := json.Unmarshal(data, &msg); err != nil {
		return nil, err
	}
	return &msg, nil
}

// ParseAsFileChunk parses JSON data as a FileChunkMessage.
func ParseAsFileChunk(data []byte) (*FileChunkMessage, error) {
	var msg FileChunkMessage
	if err := json.Unmarshal(data, &msg); err != nil {
		return nil, err
	}
	return &msg, nil
}

// ParseAsFileResponse parses JSON data as a FileResponseMessage.
func ParseAsFileResponse(data []byte) (*FileResponseMessage, error) {
	var msg FileResponseMessage
	if err := json.Unmarshal(data, &msg); err != nil {
		return nil, err
	}
	return &msg, nil
}