summaryrefslogtreecommitdiffstats
path: root/core/data.go
blob: 4705c750b361b1bc956e39629d4eaa3903e0ba1a (plain)
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
package core

import (
	"bytes"
	"encoding/binary"
	"fmt"
	"io"
	"strings"
	"time"
)

type Wrapper interface {
	Wrap() (PayloadType, []any)
}

type PayloadType uint8

const (
	PayloadUnknown    PayloadType = 0x00
	PayloadSuccess                = 0x01
	PayloadError                  = 0x02
	PayloadHandshake              = 0x03
	PayloadUserAuth               = 0x04
	PayloadMessage                = 0x05
	PayloadServerAuth             = 0x06
	PayloadUsermode               = 0x07
	PayloadHistory                = 0x08
	PayloadList                   = 0x09
	PayloadListItem               = 0x10
	PayloadTest                   = 0xFF
)

type ErrorType uint8

const (
	ErrorUnknown      ErrorType = 0x00
	ErrorAuthFailed             = 0x01
	ErrorNotFound               = 0x02
	ErrorUnauthorized           = 0x03
)

type ConnType uint8

const (
	ConnTypeUnknown ConnType = 0x00
	ConnTypeUser             = 0x01
	ConnTypeServer           = 0x02
)

type UsermodeType uint8

const (
	UsermodeNone      UsermodeType = 0x00
	UsermodeInChannel              = 0x01
)

type Frame struct {
	Length  uint16
	Type    PayloadType
	Payload []any
}

type Binary struct {
	Length  uint16
	Payload []byte
}

func Encode(w Wrapper) ([]byte, error) {
	payloadType, payload := w.Wrap()
	buf := bytes.NewBuffer(make([]byte, 3))

	for _, p := range payload {
		switch v := p.(type) {
		case string:
			strBytes := []byte(v)
			err := binary.Write(buf, binary.BigEndian, uint16(len(strBytes)))
			if err != nil {
				return []byte{}, fmt.Errorf("cannot encode string length: %v", err)
			}

			_, err = buf.Write(strBytes)
			if err != nil {
				return []byte{}, fmt.Errorf("cannot encode string: %v", err)
			}

		case []byte:
			err := binary.Write(buf, binary.BigEndian, uint16(len(v)))
			if err != nil {
				return []byte{}, fmt.Errorf("cannot encode byte slice length: %v", err)
			}

			_, err = buf.Write(v)
			if err != nil {
				return []byte{}, fmt.Errorf("cannot encode byte slice: %v", err)
			}

		case time.Time:
			err := binary.Write(buf, binary.BigEndian, uint64(v.UnixMilli()))
			if err != nil {
				return []byte{}, fmt.Errorf("cannot encode time: %v", err)
			}

		default:
			err := binary.Write(buf, binary.BigEndian, v)
			if err != nil {
				return []byte{}, fmt.Errorf("cannot encode: %v", err)
			}
		}
	}

	frame := buf.Bytes()
	frame[0] = uint8(payloadType)
	binary.BigEndian.PutUint16(frame[1:], uint16(len(frame)-3))

	return frame, nil
}

func Decode(buf io.Reader) (any, error) {
	var pTypeByte uint8

	err := binary.Read(buf, binary.BigEndian, &pTypeByte)
	if err != nil {
		return nil, fmt.Errorf("cannot read payload type: %w", err)
	}

	pType := PayloadType(pTypeByte)

	var pLen uint16
	err = binary.Read(buf, binary.BigEndian, &pLen)
	if err != nil {
		return nil, fmt.Errorf("cannot read payload length: %w", err)
	}

	switch pType {
	case PayloadSuccess:
		return Success{}, nil
	case PayloadError:
		return DecodeError(buf)
	case PayloadHandshake:
		return DecodeHandshake(buf)
	case PayloadUserAuth:
		return DecodeUserAuth(buf)
	case PayloadServerAuth:
		return DecodeServerAuth(buf)
	case PayloadMessage:
		return DecodeMessage(buf)
	case PayloadUsermode:
		return DecodeUsermode(buf)
	case PayloadHistory:
		return DecodeHistory(buf)
	case PayloadList:
		return DecodeList(buf)
	case PayloadListItem:
		return DecodeListItem(buf)
	case PayloadTest:
		return DecodeTest(buf)
	default:
		return nil, fmt.Errorf("invalid payload type: %v", pType)
	}
}

func decodeNumeric(buf io.Reader, ptr any) error {
	err := binary.Read(buf, binary.BigEndian, ptr)
	if err != nil {
		return fmt.Errorf("cannot decode: %v", err)
	}
	return nil
}

func decodeTime(buf io.Reader, ptr *time.Time) error {
	var timeBuf uint64
	err := binary.Read(buf, binary.BigEndian, &timeBuf)
	if err != nil {
		return fmt.Errorf("cannot decode time: %v", err)
	}

	*ptr = time.UnixMilli(int64(timeBuf))
	return nil
}

func decodeBin(buf io.Reader, ptr *[]byte) error {
	var payloadLen uint16

	err := binary.Read(buf, binary.BigEndian, &payloadLen)
	if err != nil {
		return fmt.Errorf("cannot decode payload length: %v", err)
	}

	payload := make([]byte, payloadLen)

	_, err = buf.Read(payload)
	if err != nil {
		return fmt.Errorf("cannot decode payload: %v", err)
	}

	*ptr = payload
	return nil
}

func decodeString(buf io.Reader, ptr *string) error {
	var strBytes []byte
	err := decodeBin(buf, &strBytes)
	if err != nil {
		return err
	}

	*ptr = string(strBytes)
	return nil
}

type Addr struct {
	Channel string
	Host    string
	Type    AddrType
}

type AddrType string

const (
	AddrUser  AddrType = "user"
	AddrGroup          = "group"
)

func ReadAddr(addrStr string) (Addr, error) {
	var (
		addr Addr
		ok   bool
	)

	addr.Channel, addr.Host, ok = strings.Cut(addrStr, "@")
	if !ok {
		return addr, ErrInvalidAddress
	}

	rest, ok := strings.CutPrefix(addr.Channel, "#")
	if ok {
		addr.Channel = rest
		addr.Type = AddrGroup
	} else {
		addr.Type = AddrUser
	}

	return addr, nil
}

func (a Addr) String() string {
	var prefix string
	if a.Type == AddrGroup {
		prefix = "#"
	}

	return fmt.Sprintf("%s%s@%s", prefix, a.Channel, a.Host)
}