-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.go
612 lines (555 loc) · 15 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
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
package main
import (
"context"
"embed"
"encoding/json"
"fmt"
"io/fs"
"net"
"net/http"
"os"
"os/signal"
"path/filepath"
"regexp"
"runtime"
"strings"
"sync"
"time"
humanize "github.com/dustin/go-humanize"
"github.com/fanaticscripter/EggLedger/db"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"github.com/sirupsen/logrus/hooks/writer"
"github.com/skratchdot/open-golang/open"
"github.com/zserge/lorca"
"golang.org/x/sync/semaphore"
"gopkg.in/natefinch/lumberjack.v2"
)
var (
//go:embed VERSION
_appVersion string
//go:embed www
_fs embed.FS
_rootDir string
_internalDir string
_appIsInForbiddenDirectory bool
// macOS Gateway security feature which executed apps with xattr
// com.apple.quarantine in certain locations (like ~/Downloads) in a jailed
// readonly environment. The jail looks like:
// /private/var/folders/<...>/<...>/T/AppTranslocation/<UUID>/d/internal
_appIsTranslocated bool
_devMode = os.Getenv("DEV_MODE") != ""
)
const (
_requestInterval = 3 * time.Second
)
type UI struct {
lorca.UI
}
func (u UI) MustLoad(url string) {
err := u.Load(url)
if err != nil {
log.Fatal(err)
}
}
func (u UI) MustBind(name string, f interface{}) {
err := u.Bind(name, f)
if err != nil {
log.Fatal(err)
}
}
type AppState string
//nolint:deadcode
const (
AppState_AWAITING_INPUT AppState = "AwaitingInput"
AppState_FETCHING_SAVE AppState = "FetchingSave"
AppState_FETCHING_MISSIONS AppState = "FetchingMissions"
AppState_EXPORTING_DATA AppState = "ExportingData"
AppState_SUCCESS AppState = "Success"
AppState_FAILED AppState = "Failed"
AppState_INTERRUPTED AppState = "Interrupted"
)
type MissionProgress struct {
Total int `json:"total"`
Finished int `json:"finished"`
FinishedPercentage string `json:"finishedPercentage"`
ExpectedFinishTimestamp float64 `json:"expectedFinishTimestamp"`
}
type worker struct {
*semaphore.Weighted
ctx context.Context
cancel context.CancelFunc
ctxlock sync.Mutex
}
func init() {
log.SetLevel(log.InfoLevel)
// Send a copy of logs to $TMPDIR/EggLedger.log in case the app crashes
// before we can even set up persistent logging.
tmplog, err := os.OpenFile(filepath.Join(os.TempDir(), "EggLedger.log"),
os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
if err != nil {
log.Error(err)
}
log.AddHook(&writer.Hook{
Writer: tmplog,
LogLevels: log.AllLevels,
})
path, err := os.Executable()
if err != nil {
log.Fatal(err)
}
path, err = filepath.EvalSymlinks(path)
if err != nil {
log.Fatal(err)
}
_rootDir = filepath.Dir(path)
if runtime.GOOS == "darwin" {
// Locate parent dir of app bundle if we're inside a Mac app.
parent, dir1 := filepath.Split(_rootDir)
parent = filepath.Clean(parent)
parent, dir2 := filepath.Split(parent)
parent = filepath.Clean(parent)
if dir1 == "MacOS" && dir2 == "Contents" && strings.HasSuffix(parent, ".app") {
_rootDir = filepath.Dir(parent)
}
}
log.Infof("root dir: %s", _rootDir)
_internalDir = filepath.Join(_rootDir, "internal")
// Make sure the app isn't located in the system/user app directory or
// downloads dir.
if runtime.GOOS == "darwin" {
if _rootDir == "/Applications" {
_appIsInForbiddenDirectory = true
} else {
pattern := regexp.MustCompile(`^/Users/[^/]+/(Applications|Downloads)$`)
if pattern.MatchString(_rootDir) {
_appIsInForbiddenDirectory = true
}
}
} else {
// On non-macOS platforms, just check whether the root dir ends in "/Downloads".
pattern := regexp.MustCompile(`[\/]Downloads$`)
if pattern.MatchString(_rootDir) {
_appIsInForbiddenDirectory = true
}
}
if _appIsInForbiddenDirectory {
log.Error("app is in a forbidden directory")
return
}
if runtime.GOOS == "darwin" {
if strings.HasPrefix(_rootDir, "/private/var/folders/") {
_appIsTranslocated = true
}
}
if _appIsTranslocated {
log.Error("app is translocated")
return
}
if err := os.MkdirAll(_internalDir, 0755); err != nil {
log.Fatal(err)
}
if err := hide(_internalDir); err != nil {
log.Errorf("error hiding internal directory: %s", err)
}
// Set up persistent logging.
logdir := filepath.Join(_rootDir, "logs")
if err := os.MkdirAll(logdir, 0755); err != nil {
log.Error(err)
} else {
logfile := filepath.Join(logdir, "app.log")
logger := &lumberjack.Logger{
Filename: logfile,
MaxSize: 5, // megabytes
MaxAge: 7, // days
LocalTime: true,
Compress: true,
}
log.AddHook(&writer.Hook{
Writer: logger,
LogLevels: log.AllLevels,
})
}
storageInit()
dataInit()
}
func main() {
if _devMode {
log.Info("starting app in dev mode")
}
chrome := lorca.LocateChrome()
if chrome == "" {
lorca.PromptDownload()
log.Fatal("unable to locate Chrome")
return
}
args := []string{}
if runtime.GOOS == "linux" {
args = append(args, "--class=Lorca")
}
u, err := lorca.New("", "", 600, 600, args...)
if err != nil {
log.Fatal(err)
}
ui := UI{u}
defer ui.Close()
updateKnownAccounts := func(accounts []Account) {
encoded, err := json.Marshal(accounts)
if err != nil {
log.Error(err)
return
}
ui.Eval(fmt.Sprintf("window.updateKnownAccounts(%s)", encoded))
}
updateState := func(state AppState) {
ui.Eval(fmt.Sprintf("window.updateState('%s')", state))
}
updateMissionProgress := func(progress MissionProgress) {
encoded, err := json.Marshal(progress)
if err != nil {
log.Error(err)
return
}
ui.Eval(fmt.Sprintf("window.updateMissionProgress(%s)", encoded))
}
updateExportedFiles := func(files []string) {
encoded, err := json.Marshal(files)
if err != nil {
log.Error(err)
return
}
ui.Eval(fmt.Sprintf("window.updateExportedFiles(%s)", encoded))
}
emitMessage := func(message string, isError bool) {
encoded, err := json.Marshal(message)
if err != nil {
log.Error(err)
return
}
ui.Eval(fmt.Sprintf("window.emitMessage(%s, %t)", encoded, isError))
}
pinfo := func(args ...interface{}) {
log.Info(args...)
emitMessage(fmt.Sprint(args...), false)
}
perror := func(args ...interface{}) {
log.Error(args...)
emitMessage(fmt.Sprint(args...), true)
}
ui.MustBind("appVersion", func() string {
return _appVersion
})
ui.MustBind("appDirectory", func() string {
return _rootDir
})
ui.MustBind("appIsInForbiddenDirectory", func() bool {
return _appIsInForbiddenDirectory
})
ui.MustBind("appIsTranslocated", func() bool {
return _appIsTranslocated
})
ui.MustBind("knownAccounts", func() []Account {
_storage.Lock()
defer _storage.Unlock()
return _storage.KnownAccounts
})
w := &worker{
Weighted: semaphore.NewWeighted(1),
}
ui.MustBind("fetchPlayerData", func(playerId string) {
go func() {
if !w.TryAcquire(1) {
perror("already fetching player data, cannot accept new work")
return
}
defer w.Release(1)
ctx, cancel := context.WithCancel(context.Background())
w.ctxlock.Lock()
w.ctx = ctx
w.cancel = cancel
w.ctxlock.Unlock()
checkInterrupt := func() bool {
select {
case <-ctx.Done():
perror("interrupted")
updateState(AppState_INTERRUPTED)
return true
default:
return false
}
}
updateState(AppState_FETCHING_SAVE)
fc, err := fetchFirstContactWithContext(w.ctx, playerId)
if err != nil {
perror(err)
if !checkInterrupt() {
updateState(AppState_FAILED)
}
return
}
nickname := fc.GetBackup().GetUserName()
msg := fmt.Sprintf("successfully fetched backup for %s", playerId)
if nickname != "" {
msg += fmt.Sprintf(" (%s)", nickname)
}
pinfo(msg)
lastBackupTime := fc.GetBackup().GetSettings().GetLastBackupTime()
if lastBackupTime != 0 {
t := unixToTime(lastBackupTime)
now := time.Now()
if t.After(now) {
t = now
}
msg := fmt.Sprintf("backup is from %s", humanize.Time(t))
pinfo(msg)
} else {
perror("backup is from unknown time")
}
_storage.AddKnownAccount(Account{Id: playerId, Nickname: nickname})
_storage.Lock()
updateKnownAccounts(_storage.KnownAccounts)
_storage.Unlock()
if checkInterrupt() {
return
}
missions := fc.GetCompletedMissions()
existingMissionIds, err := db.RetrievePlayerCompleteMissionIds(playerId)
if err != nil {
perror(err)
updateState(AppState_FAILED)
return
}
seen := make(map[string]struct{})
for _, id := range existingMissionIds {
seen[id] = struct{}{}
}
var newMissionIds []string
var newMissionStartTimestamps []float64
for _, mission := range missions {
id := mission.GetIdentifier()
if _, exists := seen[id]; !exists {
newMissionIds = append(newMissionIds, id)
newMissionStartTimestamps = append(newMissionStartTimestamps, mission.GetStartTimeDerived())
}
}
pinfo(fmt.Sprintf("found %d completed missions, need to fetch %d",
len(missions), len(newMissionIds)))
total := len(newMissionIds)
if total > 0 {
updateState(AppState_FETCHING_MISSIONS)
reportProgress := func(finished int) {
updateMissionProgress(MissionProgress{
Total: total,
Finished: finished,
FinishedPercentage: fmt.Sprintf("%.1f%%", float64(finished)/float64(total)*100),
ExpectedFinishTimestamp: timeToUnix(time.Now().Add(time.Duration(total-finished) * _requestInterval)),
})
}
reportProgress(0)
finishedCh := make(chan struct{}, total)
go func() {
finished := 0
for range finishedCh {
finished++
reportProgress(finished)
}
}()
errored := 0
var wg sync.WaitGroup
MissionsLoop:
for i := 0; i < total; i++ {
if i != 0 {
select {
case <-ctx.Done():
break MissionsLoop
case <-time.After(_requestInterval):
}
}
wg.Add(1)
go func(missionId string, startTimestamp float64) {
defer wg.Done()
_, err := fetchCompleteMissionWithContext(w.ctx, playerId, missionId, startTimestamp)
if err != nil {
perror(err)
errored++
}
finishedCh <- struct{}{}
}(newMissionIds[i], newMissionStartTimestamps[i])
}
wg.Wait()
close(finishedCh)
if checkInterrupt() {
return
}
if errored > 0 {
perror(fmt.Sprintf("%d of %d missions failed to fetch", errored, total))
updateState(AppState_FAILED)
return
} else {
pinfo(fmt.Sprintf("successfully fetched %d missions", total))
}
}
updateState(AppState_EXPORTING_DATA)
completeMissions, err := db.RetrievePlayerCompleteMissions(playerId)
if err != nil {
perror(err)
updateState(AppState_FAILED)
return
}
var exportMissions []*mission
for _, m := range completeMissions {
exportMissions = append(exportMissions, newMission(m))
}
if checkInterrupt() {
return
}
exportDir := filepath.Join(_rootDir, "exports", "missions")
if err := os.MkdirAll(exportDir, 0755); err != nil {
perror(errors.Wrap(err, "failed to create export directory"))
updateState(AppState_FAILED)
return
}
// Determine the last exported pair of xlsx and csv for future comparison.
filenamePattern := regexp.QuoteMeta(playerId) + `\.\d{8}_\d{6}`
lastExportedXlsxFile, err := findLastMatchingFile(exportDir, filenamePattern+`\.xlsx`)
if err != nil {
log.Errorf("error locating last exported .xlsx file: %s", err)
}
lastExportedCsvFile, err := findLastMatchingFile(exportDir, filenamePattern+`\.csv`)
if err != nil {
log.Errorf("error locating last exported .csv file: %s", err)
}
if filenameWithoutExt(lastExportedXlsxFile) != filenameWithoutExt(lastExportedCsvFile) {
// If the xlsx and csv files aren't a pair, just leave them alone.
lastExportedXlsxFile = ""
lastExportedCsvFile = ""
}
filenameTimestamp := time.Now().Format("20060102_150405")
xlsxFile := filepath.Join(exportDir, playerId+"."+filenameTimestamp+".xlsx")
if err := exportMissionsToXlsx(exportMissions, xlsxFile); err != nil {
perror(err)
updateState(AppState_FAILED)
return
}
if checkInterrupt() {
return
}
csvFile := filepath.Join(exportDir, playerId+"."+filenameTimestamp+".csv")
if err := exportMissionsToCsv(exportMissions, csvFile); err != nil {
perror(err)
updateState(AppState_FAILED)
return
}
if checkInterrupt() {
return
}
// Check if both exports are unchanged compared to the last exported pair.
exportsUnchanged := lastExportedXlsxFile != "" && lastExportedCsvFile != "" && func() bool {
xlsxUnchanged, err := cmpZipFiles(xlsxFile, lastExportedXlsxFile)
if err != nil {
log.Error(err)
return false
}
if !xlsxUnchanged {
return false
}
csvUnchanged, err := cmpFiles(csvFile, lastExportedCsvFile)
if err != nil {
log.Error(err)
return false
}
if !csvUnchanged {
return false
}
return true
}()
if exportsUnchanged {
log.Info("exports unchanged, using last exported files and deleting new ones")
emitMessage("exports identical with existing data files, reusing", false)
err = os.Remove(xlsxFile)
if err != nil {
log.Errorf("error removing %s: %s", xlsxFile, err)
}
err = os.Remove(csvFile)
if err != nil {
log.Errorf("error removing %s: %s", csvFile, err)
}
xlsxFile = lastExportedXlsxFile
csvFile = lastExportedCsvFile
}
xlsxFileRel, _ := filepath.Rel(_rootDir, xlsxFile)
csvFileRel, _ := filepath.Rel(_rootDir, csvFile)
updateExportedFiles([]string{xlsxFileRel, csvFileRel})
pinfo("done.")
updateState(AppState_SUCCESS)
}()
})
ui.MustBind("stopFetchingPlayerData", func() {
w.ctxlock.Lock()
defer w.ctxlock.Unlock()
if w.cancel != nil {
w.cancel()
}
})
ui.MustBind("openFile", func(file string) {
path := filepath.Join(_rootDir, file)
if err := open.Start(path); err != nil {
log.Errorf("opening %s: %s", path, err)
}
})
ui.MustBind("openFileInFolder", func(file string) {
path := filepath.Join(_rootDir, file)
if err := openFolderAndSelect(path); err != nil {
log.Errorf("opening %s in folder: %s", path, err)
}
})
ui.MustBind("openURL", func(url string) {
if err := open.Start(url); err != nil {
log.Errorf("opening %s: %s", url, err)
}
})
ui.MustBind("checkForUpdates", func() bool {
log.Info("checking for updates...")
newVersion, err := checkForUpdates()
if err != nil {
log.Error(err)
return false
}
if newVersion == "" {
log.Infof("no new version found")
return false
} else {
log.Infof("new version found: %s", newVersion)
return true
}
})
ln, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
log.Fatal(err)
}
defer ln.Close()
go func() {
var httpfs http.FileSystem
if _devMode {
httpfs = http.Dir("www")
} else {
wwwfs, err := fs.Sub(_fs, "www")
if err != nil {
log.Fatal(err)
}
httpfs = http.FS(wwwfs)
}
err := http.Serve(ln, http.FileServer(httpfs))
if err != nil {
log.Fatal(err)
}
}()
ui.MustLoad(fmt.Sprintf("http://%s/", ln.Addr()))
// Wait until the interrupt signal arrives or browser window is closed.
sigc := make(chan os.Signal, 1)
signal.Notify(sigc, os.Interrupt)
select {
case <-sigc:
case <-ui.Done():
}
}