This repository was archived by the owner on Jan 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
82 lines (62 loc) · 1.71 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
package main
import (
"encoding/base64"
"log"
"database/sql"
"time"
)
var config Config = getConfig()
var database *sql.DB
var currentTrackID string
func main() {
// Files and paths
rekordboxConfig := getRekordboxConfig(config.Rekordbox.OptionsFile)
asarFilePath := getAsarFilePath(config.Rekordbox.ApplicationPath)
dataPath := getDataPath()
databaseFilePath := getDatabaseFilePath(dataPath)
// Database decryption
encodedPasswordData := getEncryptedPasswordDataFromConfig(rekordboxConfig)
decodedPasswordData, err := base64.StdEncoding.DecodeString(encodedPasswordData)
passwordString := getEncryptedPassword(asarFilePath)
password := []byte(passwordString)
decryptedBytes := decrypt(decodedPasswordData, password)
encryptionKey := string(decryptedBytes)
// Open the Database
dsn := getDatabaseDSN(databaseFilePath, encryptionKey)
db, err := sql.Open("sqlite3", dsn)
if err != nil {
panic(err)
}
database = db
defer database.Close()
// Start polling
pollingInterval, err := time.ParseDuration(config.PollingInterval)
if err != nil {
panic(err)
}
startTimer(pollingInterval)
}
func startTimer(pollingInterval time.Duration) {
run()
tick := time.Tick(pollingInterval)
for range tick {
run()
}
}
func run() {
track := getRecentTrack(database, config)
if track.ID == currentTrackID {
return
}
currentTrackID = track.ID
log.Printf("%+v\n", track)
if config.Output.AudioHijackStyleFile != "" {
writeAudioHijackFileOutput(track, config.Output.AudioHijackStyleFile)
}
if config.Output.JSONStyleFile != "" {
writeNowPlayingJSONOutput(track, config.Output.JSONStyleFile)
}
if config.Output.OBSStyleFileTemplate != "" {
writeOBSFilesOutput(track, config.Output.OBSStyleFileTemplate)
}
}