-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.go
548 lines (445 loc) · 11.9 KB
/
user.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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
package main
import (
"errors"
"fmt"
"strconv"
"strings"
"sync"
"github.com/deltachat/deltachat-rpc-client-go/deltachat"
"github.com/rs/zerolog"
"maunium.net/go/mautrix"
"maunium.net/go/mautrix/appservice"
"maunium.net/go/mautrix/bridge"
"maunium.net/go/mautrix/bridge/bridgeconfig"
"maunium.net/go/mautrix/event"
"maunium.net/go/mautrix/id"
"go.mau.fi/mautrix-deltachat/database"
)
var (
ErrNotConnected = errors.New("not connected")
ErrNotLoggedIn = errors.New("not logged in")
)
type User struct {
*database.User
sync.Mutex
bridge *DeltaChatBridge
log zerolog.Logger
account *deltachat.Account
accountEvents <-chan *deltachat.Event
contacts map[deltachat.ContactId]*deltachat.Contact
PermissionLevel bridgeconfig.PermissionLevel
BridgeState *bridge.BridgeStateQueue
bridgeStateLock sync.Mutex
}
func (user *User) NewPuppet(contactID deltachat.ContactId) *Puppet {
dbPuppet := user.bridge.DB.Puppet.New()
dbPuppet.AccountID = *user.AccountID
dbPuppet.ContactID = contactID
return user.bridge.NewPuppet(dbPuppet)
}
func (user *User) NewPortal(chatID deltachat.ChatId) *Portal {
dbPortal := user.bridge.DB.Portal.New()
dbPortal.AccountID = *user.AccountID
dbPortal.ChatID = chatID
return user.bridge.NewPortal(dbPortal)
}
func (user *User) GetPuppetID(contactID deltachat.ContactId) database.PuppetID {
if user.AccountID == nil {
return database.PuppetID{}
}
return database.PuppetID{
AccountID: *user.AccountID,
ContactID: contactID,
}
}
func (user *User) GetPortalID(chatID deltachat.ChatId) database.PortalID {
if user.AccountID == nil {
return database.PortalID{}
}
return database.PortalID{
AccountID: *user.AccountID,
ChatID: chatID,
}
}
func (user *User) GetRemoteID() string {
if user.account == nil {
return ""
}
return strconv.FormatInt(int64(user.account.Id), 10)
}
func (user *User) GetRemoteName() string {
if user.account == nil {
return ""
}
return user.account.Me().String()
}
func (user *User) GetPermissionLevel() bridgeconfig.PermissionLevel {
return user.PermissionLevel
}
func (user *User) GetManagementRoomID() id.RoomID {
return user.ManagementRoom
}
func (user *User) GetMXID() id.UserID {
return user.MXID
}
func (user *User) GetCommandState() map[string]interface{} {
return nil
}
func (user *User) GetIDoublePuppet() bridge.DoublePuppet {
return nil
}
func (user *User) GetIGhost() bridge.Ghost {
return nil
}
var _ bridge.User = (*User)(nil)
func (br *DeltaChatBridge) loadUser(dbUser *database.User, mxid *id.UserID) *User {
if dbUser == nil {
if mxid == nil {
return nil
}
dbUser = br.DB.User.New()
dbUser.MXID = *mxid
dbUser.Insert()
}
user := br.NewUser(dbUser)
br.usersByMXID[user.MXID] = user
if user.ManagementRoom != "" {
br.managementRoomsLock.Lock()
br.managementRooms[user.ManagementRoom] = user
br.managementRoomsLock.Unlock()
}
return user
}
func (br *DeltaChatBridge) GetUserByMXID(userID id.UserID) *User {
if userID == br.Bot.UserID || br.IsGhost(userID) {
return nil
}
br.usersLock.Lock()
defer br.usersLock.Unlock()
user, ok := br.usersByMXID[userID]
if !ok {
return br.loadUser(br.DB.User.GetByMXID(userID), &userID)
}
return user
}
func (br *DeltaChatBridge) GetUserByAccountID(accountID deltachat.AccountId) *User {
br.usersLock.Lock()
defer br.usersLock.Unlock()
user, ok := br.usersByAccountID[accountID]
if !ok {
return br.loadUser(br.DB.User.GetByAccountID(accountID), nil)
}
return user
}
func (br *DeltaChatBridge) NewUser(dbUser *database.User) *User {
user := &User{
User: dbUser,
bridge: br,
log: br.ZLog.With().Str("user_id", string(dbUser.MXID)).Logger(),
contacts: map[deltachat.ContactId]*deltachat.Contact{},
PermissionLevel: br.Config.Bridge.Permissions.Get(dbUser.MXID),
}
user.BridgeState = br.NewBridgeStateQueue(user)
return user
}
func (user *User) Import() error {
user.Lock()
defer user.Unlock()
if user.AccountID == nil {
// FIXME: error
return nil
}
// check that all contacts are mapped to puppets
acct, err := user.getAccount()
if err != nil {
return err
}
chats, err := acct.ChatListEntries()
if err != nil {
return err
}
for _, chat := range chats {
// fetching each portal will implicitly create them and invite the user
user.bridge.GetPortalByID(database.PortalID{AccountID: *user.AccountID, ChatID: chat.Id})
}
return nil
}
func (user *User) SetManagementRoom(roomID id.RoomID) {
user.bridge.managementRoomsLock.Lock()
defer user.bridge.managementRoomsLock.Unlock()
existing, ok := user.bridge.managementRooms[roomID]
if ok {
existing.ManagementRoom = ""
existing.Update()
}
user.ManagementRoom = roomID
user.bridge.managementRooms[user.ManagementRoom] = user
user.Update()
}
func (user *User) GetSpaceRoom() id.RoomID {
return id.RoomID("")
}
func (user *User) GetDMSpaceRoom() id.RoomID {
return id.RoomID("")
}
func (user *User) ViewingChannel(portal *Portal) bool {
return false
}
func (user *User) Account() (*deltachat.Account, error) {
return user.getAccount()
}
func (user *User) getAccount() (*deltachat.Account, error) {
if user.account == nil {
if user.AccountID == nil {
acc, err := user.bridge.AccountManager.AddAccount()
if err != nil {
return nil, err
}
user.account = acc
accountID := acc.Id
user.AccountID = &accountID
user.Update()
}
accounts, err := user.bridge.AccountManager.Accounts()
if err != nil {
return nil, err
}
for _, acc := range accounts {
if acc.Id == *user.AccountID {
user.account = acc
}
}
if user.account == nil {
panic("account not found")
}
}
return user.account, nil
}
func (user *User) SetConfig(key, value string) error {
acct, err := user.getAccount()
if err != nil {
return err
}
return acct.SetConfig(key, value)
}
func (user *User) GetConfig(key string) (string, error) {
acct, err := user.getAccount()
if err != nil {
return "", err
}
return acct.GetConfig(key)
}
func (user *User) Login() error {
user.Lock()
defer user.Unlock()
acct, err := user.getAccount()
if err != nil {
return err
}
err = acct.Configure()
if err != nil {
return err
}
return nil
}
func (user *User) IsLoggedIn() bool {
user.Lock()
defer user.Unlock()
acct, err := user.getAccount()
if err != nil {
user.log.Err(err).Msg("Failed to get account")
return false
}
ok, err := acct.IsConfigured()
if err != nil {
user.log.Err(err).Msg("Failed to check if configured")
return false
}
return ok
}
func (user *User) Logout(isOverwriting bool) {
err := user.Disconnect()
if err != nil && err != ErrNotConnected {
user.log.Err(err).Msg("Failed to disconnect on logout")
return
}
user.Lock()
defer user.Unlock()
_, err = user.getAccount()
if err != nil {
user.log.Err(err).Msg("Failed to get account")
return
}
// FIXME: delete account data?
}
func (user *User) Connected() bool {
acct, err := user.getAccount()
if err != nil {
user.log.Err(err).Msg("Failed to get account")
return false
}
conn, err := acct.Connectivity()
if err != nil {
user.log.Err(err).Msg("Failed to get connectivity")
return false
}
// anything not disconnected is probably connected
return conn >= DC_CONNECTIVITY_CONNECTING
}
func (user *User) Connect() error {
user.Lock()
defer user.Unlock()
acct, err := user.getAccount()
if err != nil {
return err
}
if ok, err := acct.IsConfigured(); err != nil {
return err
} else if !ok {
return ErrNotLoggedIn
}
if err = acct.StartIO(); err != nil {
return err
}
go user.processAccountEvents(user.account.GetEventChannel())
return nil
}
const DC_CONNECTIVITY_NOT_CONNECTED = 1000
const DC_CONNECTIVITY_CONNECTING = 2000
const DC_CONNECTIVITY_WORKING = 3000
const DC_CONNECTIVITY_CONNECTED = 4000
func (user *User) processAccountEvents(eventsChan <-chan *deltachat.Event) {
log := user.log.With().Str("component", "account_events").Logger()
acct, err := user.getAccount()
if err != nil {
log.Fatal().Err(err).Msg("Failed to get account in event loop")
}
for {
evt, ok := <-eventsChan
if !ok {
break
}
var message string
switch evt.Type {
case deltachat.EVENT_INFO:
log.Trace().Msg(evt.Msg)
case deltachat.EVENT_ERROR:
log.Error().Msg(evt.Msg)
message = fmt.Sprintf("%s: %s", evt.Type, evt.Msg)
case deltachat.EVENT_WARNING:
log.Warn().Msg(evt.Msg)
message = fmt.Sprintf("%s: %s", evt.Type, evt.Msg)
case deltachat.EVENT_CONFIGURE_PROGRESS:
message = fmt.Sprintf("%s: %d", evt.Type, evt.Progress)
case deltachat.EVENT_CONNECTIVITY_CHANGED:
conn, err := user.account.Connectivity()
if err != nil {
log.Err(err).Msg("Connectivity check failed")
}
status := "Disconnected."
if conn >= DC_CONNECTIVITY_CONNECTED {
status = "Connected!"
} else if conn >= DC_CONNECTIVITY_WORKING {
status = "Working..."
} else if conn >= DC_CONNECTIVITY_CONNECTING {
status = "Connecting..."
} else if conn >= DC_CONNECTIVITY_NOT_CONNECTED {
status = "Not connected..."
}
message = status
case deltachat.EVENT_INCOMING_MSG:
msg := deltachat.Message{Account: user.account, Id: evt.MsgId}
snap, err := msg.Snapshot()
if err != nil {
user.log.Err(err).Msg("Failed to get incoming message snapshot")
break
}
portal := user.bridge.GetPortalByID(database.PortalID{AccountID: acct.Id, ChatID: snap.ChatId})
portal.ReceiveDeltaChatMessage(snap)
case deltachat.EVENT_INCOMING_MSG_BUNCH:
// not used
case deltachat.EVENT_CONTACTS_CHANGED:
puppet := user.bridge.GetPuppetByID(database.PuppetID{AccountID: acct.Id, ContactID: evt.ContactId})
err := puppet.Update()
if err != nil {
user.log.Err(err).Msg("Failed to update puppet")
break
}
case deltachat.EVENT_CHAT_MODIFIED:
portal := user.bridge.GetPortalByID(database.PortalID{AccountID: acct.Id, ChatID: evt.ChatId})
portal.Update()
if err != nil {
user.log.Err(err).Msg("Failed to update portal")
break
}
default:
log.Warn().Str("type", evt.Type).Msg("Account event ignored")
// FIXME hide these later
message = fmt.Sprintf("%s?", evt.Type)
}
if message != "" {
user.bridge.AS.BotIntent().SendMessageEvent(user.GetManagementRoomID(), event.EventMessage, event.MessageEventContent{
MsgType: event.MsgNotice,
Body: message,
})
}
}
user.log.Debug().Msg("Account event loop exit.")
}
func (user *User) Disconnect() error {
user.Lock()
defer user.Unlock()
if !user.Connected() {
return ErrNotConnected
}
acct, err := user.getAccount()
if err != nil {
return err
}
err = acct.StopIO()
if err != nil {
return err
}
return nil
}
func (user *User) ensureInvited(intent *appservice.IntentAPI, roomID id.RoomID, isDirect bool) bool {
if intent == nil {
intent = user.bridge.Bot
}
ret := false
inviteContent := event.Content{
Parsed: &event.MemberEventContent{
Membership: event.MembershipInvite,
IsDirect: isDirect,
},
Raw: map[string]interface{}{},
}
/*
customPuppet := user.bridge.GetPuppetByCustomMXID(user.MXID)
if customPuppet != nil && customPuppet.CustomIntent() != nil {
inviteContent.Raw["fi.mau.will_auto_accept"] = true
}
*/
_, err := intent.SendStateEvent(roomID, event.StateMember, user.MXID.String(), &inviteContent)
var httpErr mautrix.HTTPError
if err != nil && errors.As(err, &httpErr) && httpErr.RespError != nil && strings.Contains(httpErr.RespError.Err, "is already in the room") {
user.bridge.StateStore.SetMembership(roomID, user.MXID, event.MembershipJoin)
ret = true
} else if err != nil {
user.log.Error().Err(err).Str("room_id", roomID.String()).Msg("Failed to invite user to room")
} else {
ret = true
}
/*
if customPuppet != nil && customPuppet.CustomIntent() != nil {
err = customPuppet.CustomIntent().EnsureJoined(roomID, appservice.EnsureJoinedParams{IgnoreCache: true})
if err != nil {
user.log.Warn().Err(err).Str("room_id", roomID.String()).Msg("Failed to auto-join room")
ret = false
} else {
ret = true
}
}
*/
return ret
}