-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathmain.go
190 lines (162 loc) · 5.33 KB
/
main.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
// beeper-imessage - A Matrix-iMessage puppeting bridge.
// Copyright (C) 2022 Tulir Asokan
// Copyright (C) 2023 Beeper, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package main
import (
"context"
_ "embed"
"encoding/json"
"errors"
"sync"
"go.mau.fi/util/configupgrade"
"maunium.net/go/mautrix/bridge"
"maunium.net/go/mautrix/bridge/commands"
"maunium.net/go/mautrix/bridge/status"
"maunium.net/go/mautrix/id"
"github.com/beeper/imessage/analytics"
"github.com/beeper/imessage/config"
"github.com/beeper/imessage/database"
_ "github.com/beeper/imessage/imessage/direct"
"github.com/beeper/imessage/imessage/direct/ids"
)
var (
// These are filled at build time with the -X linker flag
Tag = "unknown"
Commit = "unknown"
BuildTime = "unknown"
)
//go:embed example-config.yaml
var ExampleConfig string
type IMBridge struct {
bridge.Bridge
Config *config.Config
DB *database.Database
Provisioning *ProvisioningAPI
portalsByMXID map[id.RoomID]*Portal
portalsByKey map[database.Key]*Portal
portalsLock sync.Mutex
usersByMXID map[id.UserID]*User
usersByRowID map[int]*User
managementRooms map[id.RoomID]*User
usersLock sync.Mutex
puppetsByKey map[database.Key]*Puppet
puppetsLock sync.Mutex
}
func (br *IMBridge) GetExampleConfig() string {
return ExampleConfig
}
func (br *IMBridge) GetConfigPtr() interface{} {
br.Config = &config.Config{
BaseConfig: &br.Bridge.Config,
}
br.Config.BaseConfig.Bridge = &br.Config.Bridge
return br.Config
}
func (br *IMBridge) CreatePrivatePortal(roomID id.RoomID, user bridge.User, ghost bridge.Ghost) {
// TODO implement
}
func (br *IMBridge) Init() {
br.CommandProcessor = commands.NewProcessor(&br.Bridge)
br.RegisterCommands()
br.DB = database.New(br.Bridge.DB)
analytics.Init(br.Config.Analytics, br.ZLog.With().Str("component", "analytics").Logger(), analytics.BridgeTypeCloud, nil)
analytics.Version = br.Version
br.Bridge.BeeperNetworkName = "imessage"
br.Bridge.BeeperServiceName = "imessagego"
ids.DeviceName = br.Config.IMessage.DeviceName
ss := br.Config.Bridge.Provisioning.SharedSecret
if len(ss) > 0 && ss != "disable" {
br.Provisioning = &ProvisioningAPI{bridge: br}
}
}
func (br *IMBridge) Start() {
br.ZLog.Debug().Msg("Starting users")
for _, user := range br.GetAllUsersWithDoublePuppet() {
// TODO handle error
user.StartCustomMXID(true)
}
startedAnyUsers := false
for _, user := range br.GetAllUsersWithSession() {
if !user.HasCredentials() {
continue
}
startedAnyUsers = true
err := user.Start()
if errors.Is(err, ErrNoNAC) {
user.zlog.Warn().Msg("NAC not configured, logging out user")
state := status.BridgeState{StateEvent: status.StateBadCredentials, Error: "im-nacserv-not-configured"}
stateForDB := state.Fill(user)
user.BridgeState.Send(state)
data, _ := json.Marshal(&stateForDB)
br.DB.KV.Set(database.KVHackyNACErrorPersistence, string(data))
user.AppleRegistration = nil
// TODO don't ignore errors
user.Update(context.TODO())
} else if err == nil {
user.tryAutomaticDoublePuppeting()
}
}
if !startedAnyUsers {
if hackyNACErrorPersistence := br.DB.KV.Get(database.KVHackyNACErrorPersistence); hackyNACErrorPersistence != "" {
var state status.BridgeState
_ = json.Unmarshal([]byte(hackyNACErrorPersistence), &state)
br.ZLog.Debug().Interface("bridge_state", state).Msg("Sending cached NAC error state")
br.GetUserByMXID(state.UserID).BridgeState.Send(state)
} else {
br.SendGlobalBridgeState(status.BridgeState{StateEvent: status.StateUnconfigured})
}
}
br.WaitWebsocketConnected()
if br.Provisioning != nil {
br.ZLog.Debug().Msg("Initializing provisioning API")
br.Provisioning.Init()
}
br.ZLog.Info().Msg("Initialization complete")
}
func (br *IMBridge) Stop() {
br.ZLog.Debug().Msg("Stopping users")
for _, user := range br.usersByMXID {
if user.IM != nil {
user.Stop()
}
}
}
func main() {
br := &IMBridge{
portalsByMXID: make(map[id.RoomID]*Portal),
portalsByKey: make(map[database.Key]*Portal),
puppetsByKey: make(map[database.Key]*Puppet),
usersByMXID: make(map[id.UserID]*User),
usersByRowID: make(map[int]*User),
managementRooms: make(map[id.RoomID]*User),
}
br.Bridge = bridge.Bridge{
Name: "beeper-imessage",
URL: "https://github.com/beeper/imessage",
Description: "A Matrix-iMessage puppeting bridge.",
Version: "0.1.0",
ProtocolName: "iMessage",
CryptoPickleKey: "go.mau.fi/mautrix-imessage",
ConfigUpgrader: &configupgrade.StructUpgrader{
SimpleUpgrader: configupgrade.SimpleUpgrader(config.DoUpgrade),
Blocks: config.SpacedBlocks,
Base: ExampleConfig,
},
Child: br,
}
br.InitVersion(Tag, Commit, BuildTime)
br.Main()
}