This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
groups.go
512 lines (463 loc) · 12 KB
/
groups.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
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
// Copyright (c) 2014 Canonical Ltd.
// Licensed under the GPLv3, see the COPYING file for details.
// Groups v1 only working with tel numbers
package textsecure
import (
"bytes"
"encoding/hex"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
log "github.com/sirupsen/logrus"
"github.com/signal-golang/textsecure/config"
"github.com/signal-golang/textsecure/contacts"
"github.com/signal-golang/textsecure/groupsv2"
groupsV2 "github.com/signal-golang/textsecure/groupsv2"
signalservice "github.com/signal-golang/textsecure/protobuf"
"gopkg.in/yaml.v2"
)
// Group holds group metadata.
type Group struct {
ID []byte
Hexid string
Flags uint32
Name string
Members []string
Avatar []byte
}
var (
groupDir string
groups = map[string]*Group{}
)
// idToHex returns the hex representation of the group id byte-slice
// to be used as both keys in the map and for naming the files.
func idToHex(id []byte) string {
return hex.EncodeToString(id)
}
// idToPath returns the path of the file for storing a group's state
func idToPath(hexid string) string {
return filepath.Join(groupDir, hexid)
}
// FIXME: for now using unencrypted YAML files for group state,
// should be definitely encrypted and maybe another format.
// saveGroup stores a group's state in a file.
func saveGroup(hexid string) error {
log.Debugln("[textsecure] save groupv1 ", hexid)
b, err := yaml.Marshal(groups[hexid])
if err != nil {
return err
}
return ioutil.WriteFile(idToPath(hexid), b, 0600)
}
// loadGroup loads a group's state from a file.
func loadGroup(path string) error {
_, hexid := filepath.Split(path)
b, err := os.ReadFile(path)
if err != nil {
return err
}
group := &Group{}
err = yaml.Unmarshal(b, group)
if err != nil {
return err
}
groups[hexid] = group
return nil
}
// RemoveGroupKey removes the group key
func RemoveGroupKey(hexid string) error {
err := os.Remove(config.ConfigFile.StorageDir + "/groups/" + hexid)
if err != nil {
return err
}
return nil
}
// setupGroups reads all groups' state from storage.
func setupGroups() error {
groupsv2.SetupGroups(config.ConfigFile.StorageDir)
groupDir = filepath.Join(config.ConfigFile.StorageDir, "groups")
if err := os.MkdirAll(groupDir, 0700); err != nil {
return err
}
filepath.Walk(groupDir, func(path string, fi os.FileInfo, err error) error {
if !fi.IsDir() {
if !strings.Contains(path, "avatar") {
loadGroup(path)
}
}
return nil
})
return nil
}
// removeMember removes a given number from a list.
func removeMember(tel string, members []string) []string {
for i, m := range members {
if m == tel {
members = append(members[:i], members[i+1:]...)
break
}
}
return members
}
// updateGroup updates a group's state based on an incoming message.
func updateGroup(gr *signalservice.GroupContext) error {
log.Debugln("[textsecure] updateGroup ", gr.GetName())
hexid := idToHex(gr.GetId())
var r io.Reader
av := gr.GetAvatar()
buf := new(bytes.Buffer)
if av != nil {
att, err := handleSingleAttachment(av)
if err != nil {
return err
}
r = att.R
buf.ReadFrom(r)
}
groups[hexid] = &Group{
ID: gr.GetId(),
Hexid: hexid,
Name: gr.GetName(),
Members: gr.GetMembersE164(),
Avatar: buf.Bytes(),
}
return saveGroup(hexid)
}
// UnknownGroupIDError is returned when an unknown group id is encountered
type UnknownGroupIDError struct {
id string
}
func (err UnknownGroupIDError) Error() string {
return fmt.Sprintf("unknown group ID %s", err.id)
}
// quitGroup removes a quitting member from the local group state.
func quitGroup(src string, hexid string) error {
gr, ok := groups[hexid]
if !ok {
return UnknownGroupIDError{hexid}
}
gr.Members = removeMember(src, gr.Members)
return saveGroup(hexid)
}
// GroupUpdateFlag signals that this message updates the group membership or name.
var GroupUpdateFlag uint32 = 1
// GroupLeaveFlag signals that this message is a group leave message
var GroupLeaveFlag uint32 = 2
// handleGroups is the main entry point for handling the group metadata on messages.
func handleGroupsV2(src string, dm *signalservice.DataMessage) (*groupsv2.GroupV2, error) {
gr := dm.GetGroupV2()
if gr == nil {
return nil, nil
}
hexid := idToHex(gr.GetMasterKey())
log.Debugln("[textsecure] handle groupv2", hexid)
// TODO handle group changes
return groupsv2.FindGroup(hexid), nil
}
type groupMessage struct {
id []byte
name string
members []string
typ signalservice.GroupContext_Type
}
func GetContactForTel(tel string) *contacts.Contact {
for _, c := range contacts.Contacts {
if c.Tel == tel {
return &c
}
}
return nil
}
func sendGroupV2Helper(hexid string, msg string, attachmentPointer *attachmentPointerV3, timer uint32) (uint64, error) {
var ts uint64
var err error
g := groupsV2.FindGroup(hexid)
if g == nil {
return 0, fmt.Errorf("group not found %s", hexid)
}
g.CheckJoinStatus()
if g == nil {
log.Infoln("[textsecure] sendGroupv2Helper unknown group id")
return 0, UnknownGroupIDError{hexid}
}
if g.JoinStatus != groupsV2.GroupV2JoinsStatusMember {
return 0, fmt.Errorf("Sending messages to a invited group is not allowed.")
}
if g.DecryptedGroup == nil {
err = g.UpdateGroupFromServer()
if err != nil {
return 0, err
}
}
if len(g.DecryptedGroup.Members) == 0 {
return 0, fmt.Errorf("[textsecure] sendGroupV2Helper empty members list")
}
timestamp := uint64(time.Now().UnixNano() / 1000000)
groupsV2Context := &signalservice.GroupContextV2{
MasterKey: g.MasterKey,
Revision: &g.DecryptedGroup.Revision,
}
for _, m := range g.DecryptedGroup.Members {
omsg := &outgoingMessage{
destination: idToHexUUID(m.Uuid),
msg: msg,
attachment: attachmentPointer,
expireTimer: timer,
timestamp: ×tamp,
groupV2: groupsV2Context,
}
ts, err = sendMessage(omsg)
if err != nil {
log.Errorln("[textsecure] sendGroupV2Helper", err, omsg.destination)
return 0, err
}
log.Debugln("[textsecure] sendGroupV2Helper message to group sent", omsg.destination)
}
return ts, nil
}
func sendGroupHelper(hexid string, msg string, attachmentPointer *attachmentPointerV3, timer uint32) (uint64, error) {
var ts uint64
var err error
g, ok := groups[hexid]
if !ok {
log.Infoln("[textsecure] sendGroupHelper unknown group id")
ts, err = sendGroupV2Helper(hexid, msg, attachmentPointer, timer)
if err != nil {
return 0, UnknownGroupIDError{hexid}
}
return ts, nil
}
// if len is 0 smth is obviously wrong
if len(g.Members) == 0 {
err := RemoveGroupKey(hexid)
if err != nil {
log.Errorln("[textsecure] sendGroupHelper", err)
}
setupGroups()
log.Infoln("[textsecure] sendGroupHelper", g)
RequestGroupInfo(g)
return 0, fmt.Errorf("[textsecure] sendGroupHelper: need someone in the group to send you a message")
}
timestamp := uint64(time.Now().UnixNano() / 1000000)
for _, m := range g.Members {
if m != config.ConfigFile.Tel {
c := GetContactForTel(m)
if c != nil && c.UUID != "" && c.UUID != "0" && (c.UUID[0] != 0 || c.UUID[len(c.UUID)-1] != 0) {
m = c.UUID
}
omsg := &outgoingMessage{
destination: m,
msg: msg,
attachment: attachmentPointer,
expireTimer: timer,
timestamp: ×tamp,
group: &groupMessage{
id: g.ID,
typ: signalservice.GroupContext_DELIVER,
},
}
ts, err = sendMessage(omsg)
if err != nil {
log.Errorln("[textsecure] sendGroupHelper", err, m)
return 0, err
}
log.Debugln("[textsecure] sendGroupHelper message to group sent", m)
}
}
return ts, nil
}
// SendGroupMessage sends a text message to a given group.
func SendGroupMessage(hexid string, msg string, timer uint32) (uint64, error) {
return sendGroupHelper(hexid, msg, nil, timer)
}
// SendGroupAttachment sends an attachment to a given group.
func SendGroupAttachment(hexid string, msg string, r io.Reader, timer uint32) (uint64, error) {
ct, r := MIMETypeFromReader(r)
attachmentPointer, err := uploadAttachment(r, ct)
if err != nil {
return 0, err
}
return sendGroupHelper(hexid, msg, attachmentPointer, timer)
}
// SendGroupVoiceNote sends an voice note to a group
func SendGroupVoiceNote(hexid string, msg string, r io.Reader, timer uint32) (uint64, error) {
ct, r := MIMETypeFromReader(r)
attachmentPointer, err := uploadVoiceNote(r, ct)
if err != nil {
return 0, err
}
return sendGroupHelper(hexid, msg, attachmentPointer, timer)
}
func newGroupID() []byte {
id := make([]byte, 16)
randBytes(id)
return id
}
func newPartlyGroup(id []byte) (*Group, error) {
hexid := idToHex(id)
groups[hexid] = &Group{
ID: id,
Hexid: hexid,
Name: "",
Members: nil,
Avatar: nil,
}
err := saveGroup(hexid)
if err != nil {
return nil, err
}
return groups[hexid], nil
}
func changeGroup(hexid, name string, members []string) (*Group, error) {
g, ok := groups[hexid]
if !ok {
return nil, UnknownGroupIDError{hexid}
}
g.Name = name
g.Members = append(members, config.ConfigFile.Tel)
saveGroup(hexid)
return g, nil
}
func sendUpdate(g *Group) error {
for _, m := range g.Members {
if m != config.ConfigFile.Tel {
omsg := &outgoingMessage{
destination: m,
group: &groupMessage{
id: g.ID,
name: g.Name,
members: g.Members,
typ: signalservice.GroupContext_UPDATE,
},
}
_, err := sendMessage(omsg)
if err != nil {
return err
}
}
}
return nil
}
func newGroup(name string, members []string) (*Group, error) {
id := newGroupID()
hexid := idToHex(id)
log.Debugln("[textsecure] create new group v1 ", hexid)
groups[hexid] = &Group{
ID: id,
Hexid: hexid,
Name: name,
Members: append(members, config.ConfigFile.Tel),
}
err := saveGroup(hexid)
if err != nil {
return nil, err
}
return groups[hexid], nil
}
// RequestGroupInfo updates the info for the group like members or the avatat
func RequestGroupInfo(g *Group) error {
log.Debugln("[textsecure] request group update", g.Hexid)
for _, m := range g.Members {
if m != config.ConfigFile.Tel {
omsg := &outgoingMessage{
destination: m,
group: &groupMessage{
id: g.ID,
typ: signalservice.GroupContext_REQUEST_INFO,
},
}
_, err := sendMessage(omsg)
if err != nil {
return err
}
}
}
if len(g.Members) == 0 {
omsg := &outgoingMessage{
destination: config.ConfigFile.Tel,
group: &groupMessage{
id: g.ID,
typ: signalservice.GroupContext_REQUEST_INFO,
},
}
_, err := sendMessage(omsg)
if err != nil {
return err
}
}
return nil
}
// NewGroup creates a group and notifies its members.
// Our phone number is automatically added to members.
func NewGroup(name string, members []string) (*Group, error) {
g, err := newGroup(name, members)
if err != nil {
return nil, err
}
return g, sendUpdate(g)
}
// UpdateGroup updates the group name and/or membership.
// Our phone number is automatically added to members.
func UpdateGroup(hexid, name string, members []string) (*Group, error) {
g, err := changeGroup(hexid, name, members)
if err != nil {
return nil, err
}
return g, sendUpdate(g)
}
func removeGroup(id []byte) error {
hexid := idToHex(id)
err := os.Remove(idToPath(hexid))
if err != nil {
return err
}
return nil
}
// GetGroupById returns a group by it's id
func GetGroupById(hexID string) (*Group, error) {
g, ok := groups[hexID]
if !ok {
return nil, UnknownGroupIDError{hexID}
}
return g, nil
}
// LeaveGroup sends a group quit message to the other members of the given group.
func LeaveGroup(hexid string) error {
g, ok := groups[hexid]
if !ok {
return UnknownGroupIDError{hexid}
}
for _, m := range g.Members {
if m != config.ConfigFile.Tel {
omsg := &outgoingMessage{
destination: m,
group: &groupMessage{
id: g.ID,
typ: signalservice.GroupContext_QUIT,
},
}
_, err := sendMessage(omsg)
if err != nil {
return err
}
}
}
removeGroup(g.ID)
return nil
}
func JoinGroup(hexID string) (*groupsv2.GroupV2, error) {
log.Debugln("[textsecure] join group", hexID)
g := groupsv2.FindGroup(hexID)
if g == nil {
return nil, UnknownGroupIDError{hexID}
}
err := g.JoinGroup()
if err != nil {
return g, err
}
return g, nil
}