forked from katzenpost/catchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatchat.go
206 lines (179 loc) · 5.44 KB
/
catchat.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
package main
import (
"flag"
"fmt"
"os"
"syscall"
"time"
"github.com/katzenpost/catshadow"
catconfig "github.com/katzenpost/catshadow/config"
"github.com/katzenpost/client"
clientConfig "github.com/katzenpost/client/config"
gap "github.com/muesli/go-app-paths"
"github.com/therecipe/qt/core"
"github.com/therecipe/qt/gui"
"github.com/therecipe/qt/qml"
"github.com/therecipe/qt/quickcontrols2"
"golang.org/x/crypto/ssh/terminal"
)
const (
initialPKIConsensusTimeout = 45 * time.Second
)
var (
config Config
configFile string
contactListModel = NewContactListModel(nil)
conversationModel = NewConversationModel(nil)
)
// runApp loads and executes the QML UI
func runApp(config Config) {
var theme string
switch config.Theme {
case "System":
theme = ""
case "Light":
theme = "Default"
default:
theme = config.Theme
}
if theme != "" {
quickcontrols2.QQuickStyle_SetStyle(theme)
}
app := qml.NewQQmlApplicationEngine(nil)
app.RootContext().SetContextProperty("accountBridge", accountBridge)
app.RootContext().SetContextProperty("settings", configBridge)
app.Load(core.NewQUrl3("qrc:/qml/catchat.qml", 0))
gui.QGuiApplication_Exec()
}
func main() {
generate := flag.Bool("g", false, "Generate the state file and then run client.")
cfgFile := flag.String("f", "katzenpost.toml", "Path to the client config file.")
stateFile := flag.String("s", "catshadow_statefile", "The catshadow state file path.")
flag.Parse()
// Set the umask to something "paranoid".
syscall.Umask(0077)
fmt.Println("Katzenpost is still pre-alpha. DO NOT DEPEND ON IT FOR STRONG SECURITY OR ANONYMITY.")
core.QCoreApplication_SetApplicationName("catchat")
core.QCoreApplication_SetOrganizationName("katzenpost")
core.QCoreApplication_SetAttribute(core.Qt__AA_EnableHighDpiScaling, true)
ga := gui.NewQGuiApplication(len(os.Args), os.Args)
ga.SetWindowIcon(gui.NewQIcon5(":/qml/images/katzenpost_logo.png"))
// load config
scope := gap.NewScope(gap.User, "katzenpost", "catchat")
configDir, err := scope.ConfigPath("")
if err != nil {
panic(err)
}
os.MkdirAll(configDir, 0700)
configFile, err = scope.ConfigPath("catchat.conf")
if err != nil {
panic(err)
}
config = LoadConfig(configFile)
if config.Theme == "" {
config.Theme = "Material"
}
if config.Style == "" {
config.Style = "Dark"
}
configBridge.SetTheme(config.Theme)
configBridge.SetStyle(config.Style)
configBridge.SetFirstRun(config.FirstRun)
configBridge.SetPositionX(config.PositionX)
configBridge.SetPositionY(config.PositionY)
configBridge.SetWidth(config.Width)
configBridge.SetHeight(config.Height)
// Prepare catshadow client instance.
// Load catshadow config file.
catshadowCfg, err := catconfig.LoadFile(*cfgFile)
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to load config file '%v': %v\n", *cfgFile, err)
os.Exit(-1)
}
// Decrypt and load the catshadow state file.
fmt.Print("Enter statefile decryption passphrase: ")
passphrase, err := terminal.ReadPassword(int(syscall.Stdin))
if err != nil {
panic(err)
}
fmt.Print("\n")
var stateWorker *catshadow.StateWriter
var state *catshadow.State
var catShadowClient *catshadow.Client
cfg, err := catshadowCfg.ClientConfig()
if err != nil {
panic(err)
}
if *generate {
if _, err := os.Stat(*stateFile); !os.IsNotExist(err) {
panic("cannot generate state file, already exists")
}
cfg, linkKey := client.AutoRegisterRandomClient(cfg)
c, err := client.New(cfg)
if err != nil {
panic(err)
}
// Create statefile.
stateWorker, err = catshadow.NewStateWriter(c.GetLogger("catshadow_state"), *stateFile, passphrase)
if err != nil {
panic(err)
}
fmt.Println("creating remote message receiver spool")
backendLog, err := catshadowCfg.InitLogBackend()
if err != nil {
panic(err)
}
user := fmt.Sprintf("%x", linkKey.PublicKey().Bytes())
catShadowClient, err = catshadow.NewClientAndRemoteSpool(backendLog, c, stateWorker, user, linkKey)
if err != nil {
panic(err)
}
fmt.Println("catshadow client successfully created")
} else {
cfg, _ := client.AutoRegisterRandomClient(cfg)
// Load previous state to setup our current client state.
backendLog, err := catshadowCfg.InitLogBackend()
if err != nil {
panic(err)
}
stateWorker, state, err = catshadow.LoadStateWriter(backendLog.GetLogger("state_worker"), *stateFile, passphrase)
if err != nil {
panic(err)
}
cfg.Account = &clientConfig.Account{
User: state.User,
Provider: state.Provider,
}
// Run a Client.
c, err := client.New(cfg)
if err != nil {
panic(err)
}
// Make a catshadow Client.
catShadowClient, err = catshadow.New(c.GetBackendLog(), c, stateWorker, state)
if err != nil {
panic(err)
}
}
// Start catshadow client.
stateWorker.Start()
catShadowClient.Start()
// Start graphical user interface.
setupQmlBridges(catShadowClient)
nickNames := catShadowClient.GetNicknames()
loadContactList(contactListModel, nickNames)
accountBridge.SetContactListModel(contactListModel)
accountBridge.SetConversationModel(conversationModel)
runApp(config)
// Shutdown client after graphical user interface is halted.
catShadowClient.Shutdown()
// Save QT user interface config on clean shutdown.
config.Theme = configBridge.Theme()
config.Style = configBridge.Style()
config.PositionX = configBridge.PositionX()
config.PositionY = configBridge.PositionY()
config.Width = configBridge.Width()
config.Height = configBridge.Height()
config.FirstRun = false
SaveConfig(configFile, config)
}