-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
gui.go
663 lines (589 loc) · 17.4 KB
/
gui.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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
//go:build !cli
/*
* SPDX-License-Identifier: GPL-3.0
* Vencord Installer, a cross platform gui/cli app for installing Vencord
* Copyright (c) 2023 Vendicated and Vencord contributors
*/
package main
import (
"bytes"
_ "embed"
"errors"
g "github.com/AllenDang/giu"
"github.com/AllenDang/imgui-go"
"image"
"image/color"
"vencordinstaller/buildinfo"
// png decoder for icon
_ "image/png"
"os"
path "path/filepath"
"runtime"
"strconv"
"strings"
)
var (
discords []any
radioIdx int
customChoiceIdx int
customDir string
autoCompleteDir string
autoCompleteFile string
autoCompleteCandidates []string
autoCompleteIdx int
lastAutoComplete string
didAutoComplete bool
modalId = 0
modalTitle = "Oh No :("
modalMessage = "You should never see this"
acceptedOpenAsar bool
showedUpdatePrompt bool
win *g.MasterWindow
)
//go:embed winres/icon.png
var iconBytes []byte
func init() {
LogLevel = LevelDebug
}
func main() {
InitGithubDownloader()
discords = FindDiscords()
customChoiceIdx = len(discords)
go func() {
<-GithubDoneChan
g.Update()
}()
go func() {
<-SelfUpdateCheckDoneChan
g.Update()
}()
win = g.NewMasterWindow("Vencord Installer", 1200, 800, 0)
icon, _, err := image.Decode(bytes.NewReader(iconBytes))
if err != nil {
Log.Warn("Failed to load application icon", err)
Log.Debug(iconBytes, len(iconBytes))
} else {
win.SetIcon([]image.Image{icon})
}
win.Run(loop)
}
type CondWidget struct {
predicate bool
ifWidget func() g.Widget
elseWidget func() g.Widget
}
func (w *CondWidget) Build() {
if w.predicate {
w.ifWidget().Build()
} else if w.elseWidget != nil {
w.elseWidget().Build()
}
}
func getChosenInstall() *DiscordInstall {
var choice *DiscordInstall
if radioIdx == customChoiceIdx {
choice = ParseDiscord(customDir, "")
if choice == nil {
g.OpenPopup("#invalid-custom-location")
}
} else {
choice = discords[radioIdx].(*DiscordInstall)
}
return choice
}
func InstallLatestBuilds() (err error) {
if IsDevInstall {
return
}
err = installLatestBuilds()
if err != nil {
ShowModal("Uh Oh!", "Failed to install the latest Vencord builds from GitHub:\n"+err.Error())
}
return
}
func handlePatch() {
choice := getChosenInstall()
if choice != nil {
choice.Patch()
}
}
func handleUnpatch() {
choice := getChosenInstall()
if choice != nil {
choice.Unpatch()
}
}
func handleOpenAsar() {
if acceptedOpenAsar || getChosenInstall().IsOpenAsar() {
handleOpenAsarConfirmed()
return
}
g.OpenPopup("#openasar-confirm")
}
func handleOpenAsarConfirmed() {
choice := getChosenInstall()
if choice != nil {
if choice.IsOpenAsar() {
if err := choice.UninstallOpenAsar(); err != nil {
handleErr(choice, err, "uninstall OpenAsar from")
} else {
g.OpenPopup("#openasar-unpatched")
g.Update()
}
} else {
if err := choice.InstallOpenAsar(); err != nil {
handleErr(choice, err, "install OpenAsar on")
} else {
g.OpenPopup("#openasar-patched")
g.Update()
}
}
}
}
func handleErr(di *DiscordInstall, err error, action string) {
if errors.Is(err, os.ErrPermission) {
switch runtime.GOOS {
case "windows":
err = errors.New("Permission denied. Make sure your Discord is fully closed (from the tray)!")
case "darwin":
// FIXME: This text is not selectable which is a bit mehhh
command := "sudo chown -R \"${USER}:wheel\" " + di.path
err = errors.New("Permission denied. Please grant the installer Full Disk Access in the system settings (privacy & security page).\n\nIf that also doesn't work, try running the following command in your terminal:\n" + command)
default:
err = errors.New("Permission denied. Maybe try running me as Administrator/Root?")
}
}
ShowModal("Failed to "+action+" this Install", err.Error())
}
func HandleScuffedInstall() {
g.OpenPopup("#scuffed-install")
}
func (di *DiscordInstall) Patch() {
if CheckScuffedInstall() {
return
}
if err := di.patch(); err != nil {
handleErr(di, err, "patch")
} else {
g.OpenPopup("#patched")
}
}
func (di *DiscordInstall) Unpatch() {
if err := di.unpatch(); err != nil {
handleErr(di, err, "unpatch")
} else {
g.OpenPopup("#unpatched")
}
}
func onCustomInputChanged() {
p := customDir
if len(p) != 0 {
// Select the custom option for people
radioIdx = customChoiceIdx
}
dir := path.Dir(p)
isNewDir := strings.HasSuffix(p, "/")
wentUpADir := !isNewDir && dir != autoCompleteDir
if isNewDir || wentUpADir {
autoCompleteDir = dir
// reset all the funnies
autoCompleteIdx = 0
lastAutoComplete = ""
autoCompleteFile = ""
autoCompleteCandidates = nil
// Generate autocomplete items
files, err := os.ReadDir(dir)
if err == nil {
for _, file := range files {
autoCompleteCandidates = append(autoCompleteCandidates, file.Name())
}
}
} else if !didAutoComplete {
// reset auto complete and update our file
autoCompleteFile = path.Base(p)
lastAutoComplete = ""
}
if wentUpADir {
autoCompleteFile = path.Base(p)
}
didAutoComplete = false
}
// go can you give me []any?
// to pass to giu RangeBuilder?
// yeeeeees
// actually returns []string like a boss
func makeAutoComplete() []any {
input := strings.ToLower(autoCompleteFile)
var candidates []any
for _, e := range autoCompleteCandidates {
file := strings.ToLower(e)
if autoCompleteFile == "" || strings.HasPrefix(file, input) {
candidates = append(candidates, e)
}
}
return candidates
}
func makeRadioOnChange(i int) func() {
return func() {
radioIdx = i
}
}
func Tooltip(label string) g.Widget {
return g.Style().
SetStyle(g.StyleVarWindowPadding, 10, 8).
SetStyleFloat(g.StyleVarWindowRounding, 8).
To(
g.Tooltip(label),
)
}
func InfoModal(id, title, description string) g.Widget {
return RawInfoModal(id, title, description, false)
}
func RawInfoModal(id, title, description string, isOpenAsar bool) g.Widget {
isDynamic := strings.HasPrefix(id, "#modal") && !strings.Contains(description, "\n")
return g.Style().
SetStyle(g.StyleVarWindowPadding, 30, 30).
SetStyleFloat(g.StyleVarWindowRounding, 12).
To(
g.PopupModal(id).
Flags(g.WindowFlagsNoTitleBar | Ternary(isDynamic, g.WindowFlagsAlwaysAutoResize, 0)).
Layout(
g.Align(g.AlignCenter).To(
g.Style().SetFontSize(30).To(
g.Label(title),
),
g.Style().SetFontSize(20).To(
g.Label(description).Wrapped(isDynamic),
),
&CondWidget{id == "#scuffed-install", func() g.Widget {
return g.Column(
g.Dummy(0, 10),
g.Button("Take me there!").OnClick(func() {
// this issue only exists on windows so using Windows specific path is oki
username := os.Getenv("USERNAME")
programData := os.Getenv("PROGRAMDATA")
g.OpenURL("file://" + path.Join(programData, username))
}).Size(200, 30),
)
}, nil},
g.Dummy(0, 20),
&CondWidget{isOpenAsar,
func() g.Widget {
return g.Row(
g.Button("Accept").
OnClick(func() {
acceptedOpenAsar = true
g.CloseCurrentPopup()
}).
Size(100, 30),
g.Button("Cancel").
OnClick(func() {
g.CloseCurrentPopup()
}).
Size(100, 30),
)
},
func() g.Widget {
return g.Button("Ok").
OnClick(func() {
g.CloseCurrentPopup()
}).
Size(100, 30)
},
},
),
),
)
}
func UpdateModal() g.Widget {
return g.Style().
SetStyle(g.StyleVarWindowPadding, 30, 30).
SetStyleFloat(g.StyleVarWindowRounding, 12).
To(
g.PopupModal("#update-prompt").
Flags(g.WindowFlagsNoTitleBar | g.WindowFlagsAlwaysAutoResize).
Layout(
g.Align(g.AlignCenter).To(
g.Style().SetFontSize(30).To(
g.Label("Your Installer is outdated!"),
),
g.Style().SetFontSize(20).To(
g.Label(
"Would you like to update now?\n\n"+
"Once you press Update Now, the new installer will automatically be downloaded.\n"+
"The installer will temporarily seem unresponsive. Just wait!\n"+
"Once the update is done, the Installer will automatically reopen.\n\n"+
"On MacOs, Auto updates are not supported, so it will instead open in browser.",
),
),
g.Row(
g.Button("Update Now").
OnClick(func() {
if runtime.GOOS == "darwin" {
g.CloseCurrentPopup()
g.OpenURL(GetInstallerDownloadLink())
return
}
err := UpdateSelf()
g.CloseCurrentPopup()
if err != nil {
ShowModal("Failed to update self!", err.Error())
} else {
if err = RelaunchSelf(); err != nil {
ShowModal("Failed to restart self! Please do it manually.", err.Error())
}
}
}).
Size(100, 30),
g.Button("Later").
OnClick(func() {
g.CloseCurrentPopup()
}).
Size(100, 30),
),
),
),
)
}
func ShowModal(title, desc string) {
modalTitle = title
modalMessage = desc
modalId++
g.OpenPopup("#modal" + strconv.Itoa(modalId))
}
func renderInstaller() g.Widget {
candidates := makeAutoComplete()
wi, _ := win.GetSize()
w := float32(wi) - 96
var currentDiscord *DiscordInstall
if radioIdx != customChoiceIdx {
currentDiscord = discords[radioIdx].(*DiscordInstall)
}
var isOpenAsar = currentDiscord != nil && currentDiscord.IsOpenAsar()
if CanUpdateSelf() && !showedUpdatePrompt {
showedUpdatePrompt = true
g.OpenPopup("#update-prompt")
}
layout := g.Layout{
g.Dummy(0, 20),
g.Separator(),
g.Dummy(0, 5),
g.Style().SetFontSize(20).To(
renderErrorCard(
DiscordYellow,
"**Github** and **vencord.dev** are the only official places to get Vencord. Any other site claiming to be us is malicious.\n"+
"If you downloaded from any other source, you should delete / uninstall everything immediately, run a malware scan and change your Discord password.",
90,
),
),
g.Dummy(0, 5),
g.Style().SetFontSize(30).To(
g.Label("Please select an install to patch"),
),
&CondWidget{len(discords) == 0, func() g.Widget {
s := "No Discord installs found. You first need to install Discord."
if runtime.GOOS == "linux" {
s += " snap is not supported."
}
return g.Label(s)
}, nil},
g.Style().SetFontSize(20).To(
g.RangeBuilder("Discords", discords, func(i int, v any) g.Widget {
d := v.(*DiscordInstall)
//goland:noinspection GoDeprecation
text := strings.Title(d.branch) + " - " + d.path
if d.isPatched {
text += " [PATCHED]"
}
return g.RadioButton(text, radioIdx == i).
OnChange(makeRadioOnChange(i))
}),
g.RadioButton("Custom Install Location", radioIdx == customChoiceIdx).
OnChange(makeRadioOnChange(customChoiceIdx)),
),
g.Dummy(0, 5),
g.Style().
SetStyle(g.StyleVarFramePadding, 16, 16).
SetFontSize(20).
To(
g.InputText(&customDir).Hint("The custom location").
Size(w - 16).
Flags(g.InputTextFlagsCallbackCompletion).
OnChange(onCustomInputChanged).
// this library has its own autocomplete but it's broken
Callback(
func(data imgui.InputTextCallbackData) int32 {
if len(candidates) == 0 {
return 0
}
// just wrap around
if autoCompleteIdx >= len(candidates) {
autoCompleteIdx = 0
}
// used by change handler
didAutoComplete = true
start := len(customDir)
// Delete previous auto complete
if lastAutoComplete != "" {
start -= len(lastAutoComplete)
data.DeleteBytes(start, len(lastAutoComplete))
} else if autoCompleteFile != "" { // delete partial input
start -= len(autoCompleteFile)
data.DeleteBytes(start, len(autoCompleteFile))
}
// Insert auto complete
lastAutoComplete = candidates[autoCompleteIdx].(string)
data.InsertBytes(start, []byte(lastAutoComplete))
autoCompleteIdx++
return 0
},
),
),
g.RangeBuilder("AutoComplete", candidates, func(i int, v any) g.Widget {
dir := v.(string)
return g.Label(dir)
}),
g.Dummy(0, 20),
g.Style().SetFontSize(20).To(
g.Row(
g.Style().
SetColor(g.StyleColorButton, DiscordGreen).
SetDisabled(GithubError != nil).
To(
g.Button("Install").
OnClick(handlePatch).
Size((w-40)/4, 50),
Tooltip("Patch the selected Discord Install"),
),
g.Style().
SetColor(g.StyleColorButton, DiscordBlue).
SetDisabled(GithubError != nil).
To(
g.Button("Reinstall / Repair").
OnClick(func() {
if IsDevInstall {
handlePatch()
} else {
err := InstallLatestBuilds()
if err == nil {
handlePatch()
}
}
}).
Size((w-40)/4, 50),
Tooltip("Reinstall & Update Vencord"),
),
g.Style().
SetColor(g.StyleColorButton, DiscordRed).
To(
g.Button("Uninstall").
OnClick(handleUnpatch).
Size((w-40)/4, 50),
Tooltip("Unpatch the selected Discord Install"),
),
g.Style().
SetColor(g.StyleColorButton, Ternary(isOpenAsar, DiscordRed, DiscordGreen)).
To(
g.Button(Ternary(isOpenAsar, "Uninstall OpenAsar", Ternary(currentDiscord != nil, "Install OpenAsar", "(Un-)Install OpenAsar"))).
OnClick(handleOpenAsar).
Size((w-40)/4, 50),
Tooltip("Manage OpenAsar"),
),
),
),
InfoModal("#patched", "Successfully Patched", "If Discord is still open, fully close it first.\n"+
"Then, start it and verify Vencord installed successfully by looking for its category in Discord Settings"),
InfoModal("#unpatched", "Successfully Unpatched", "If Discord is still open, fully close it first. Then start it again, it should be back to stock!"),
InfoModal("#scuffed-install", "Hold On!", "You have a broken Discord Install.\n"+
"Sometimes Discord decides to install to the wrong location for some reason!\n"+
"You need to fix this before patching, otherwise Vencord will likely not work.\n\n"+
"Use the below button to jump there and delete any folder called Discord or Squirrel.\n"+
"If the folder is now empty, feel free to go back a step and delete that folder too.\n"+
"Then see if Discord still starts. If not, reinstall it"),
RawInfoModal("#openasar-confirm", "OpenAsar", "OpenAsar is an open-source alternative of Discord desktop's app.asar.\n"+
"Vencord is in no way affiliated with OpenAsar.\n"+
"You're installing OpenAsar at your own risk. If you run into issues with OpenAsar,\n"+
"no support will be provided, join the OpenAsar Server instead!\n\n"+
"To install OpenAsar, press Accept and click 'Install OpenAsar' again.", true),
InfoModal("#openasar-patched", "Successfully Installed OpenAsar", "If Discord is still open, fully close it first. Then start it again and verify OpenAsar installed successfully!"),
InfoModal("#openasar-unpatched", "Successfully Uninstalled OpenAsar", "If Discord is still open, fully close it first. Then start it again and it should be back to stock!"),
InfoModal("#invalid-custom-location", "Invalid Location", "The specified location is not a valid Discord install.\nMake sure you select the base folder.\n\nHint: Discord snap is not supported. use flatpak or .deb"),
InfoModal("#modal"+strconv.Itoa(modalId), modalTitle, modalMessage),
UpdateModal(),
}
return layout
}
func renderErrorCard(col color.Color, message string, height float32) g.Widget {
return g.Style().
SetColor(g.StyleColorChildBg, col).
SetStyleFloat(g.StyleVarAlpha, 0.9).
SetStyle(g.StyleVarWindowPadding, 10, 10).
SetStyleFloat(g.StyleVarChildRounding, 5).
To(
g.Child().
Size(g.Auto, height).
Layout(
g.Row(
g.Style().SetColor(g.StyleColorText, color.Black).To(
g.Markdown(&message),
),
),
),
)
}
func loop() {
g.PushWindowPadding(48, 48)
g.SingleWindow().
RegisterKeyboardShortcuts(
g.WindowShortcut{Key: g.KeyUp, Callback: func() {
if radioIdx > 0 {
radioIdx--
}
}},
g.WindowShortcut{Key: g.KeyDown, Callback: func() {
if radioIdx < customChoiceIdx {
radioIdx++
}
}},
).
Layout(
g.Align(g.AlignCenter).To(
g.Style().SetFontSize(40).To(
g.Label("Vencord Installer"),
),
),
g.Dummy(0, 20),
g.Style().SetFontSize(20).To(
g.Row(
g.Label(Ternary(IsDevInstall, "Dev Install: ", "Vencord will be downloaded to: ")+VencordAsarPath),
g.Style().
SetColor(g.StyleColorButton, DiscordBlue).
SetStyle(g.StyleVarFramePadding, 4, 4).
To(
g.Button("Open Directory").OnClick(func() {
g.OpenURL("file://" + path.Dir(VencordAsarPath))
}),
),
),
&CondWidget{!IsDevInstall, func() g.Widget {
return g.Label("To customise this location, set the environment variable 'VENCORD_USER_DATA_DIR' and restart me").Wrapped(true)
}, nil},
g.Dummy(0, 10),
g.Label("Installer Version: "+buildinfo.InstallerTag+" ("+buildinfo.InstallerGitHash+")"+Ternary(IsSelfOutdated, " - OUTDATED", "")),
g.Label("Local Vencord Version: "+InstalledHash),
&CondWidget{
GithubError == nil,
func() g.Widget {
if IsDevInstall {
return g.Label("Not updating Vencord due to being in DevMode")
}
return g.Label("Latest Vencord Version: " + LatestHash)
}, func() g.Widget {
return renderErrorCard(DiscordRed, "Failed to fetch Info from GitHub: "+GithubError.Error(), 40)
},
},
),
renderInstaller(),
)
g.PopStyle()
}