-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
229 lines (202 loc) · 5.66 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
package main
import (
_ "embed"
"encoding/json"
"fmt"
"io/fs"
"io/ioutil"
"log"
"os"
"os/exec"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/dialog"
"fyne.io/fyne/v2/widget"
)
//go:embed Recordurbate/recordurbate/bot.py
var botPy []byte
//go:embed Recordurbate/recordurbate/config.py
var configPy []byte
//go:embed Recordurbate/recordurbate/daemon.py
var daemonPy []byte
//go:embed Recordurbate/recordurbate/Recordurbate.py
var recordurbatePy []byte
type Config struct {
YoutubeDlCmd string `json:"youtube-dl_cmd"`
YoutubeDlConfig string `json:"youtube-dl_config"`
AutoReloadConfig bool `json:"auto_reload_config"`
RateLimit bool `json:"rate_limit"`
RateLimitTime int `json:"rate_limit_time"`
DefaultExportLocation string `json:"default_export_location"`
Streamers []string `json:"streamers"`
}
var defaultConfig = `{
"youtube-dl_cmd": "youtube-dl",
"youtube-dl_config": "configs/youtube-dl.config",
"auto_reload_config": true,
"rate_limit": true,
"rate_limit_time": 5,
"default_export_location": "./list.txt",
"streamers": []
}`
var defaultYtDlConfig = `
-o "videos/%(id)s/%(title)s.%(ext)s"
# To reduce output video filesize, use the following instead to limit to [height<1080][fps<?60]
#-f 'best[height<1080][fps<?60]' -o "videos/%(id)s/%(title)s.%(ext)s"
# --quiet
`
var recordingActive bool
var config Config
var configFile = "configs/config.json"
var logFile = "configs/rb.log"
func loadConfig() error {
data, err := ioutil.ReadFile(configFile)
if err != nil {
return err
}
return json.Unmarshal(data, &config)
}
func saveConfig() error {
data, err := json.MarshalIndent(config, "", " ")
if err != nil {
return err
}
return ioutil.WriteFile(configFile, data, 0644)
}
func main() {
_, err := os.ReadDir("configs")
if err != nil {
os.Mkdir("configs", 0755)
os.Create("configs/rb.log")
os.Create("configs/youtube-dl.config")
os.Create("configs/config.json")
err = os.WriteFile("configs/config.json", []byte(defaultConfig), 0755)
err = os.WriteFile("configs/youtube-dl.config", []byte(defaultYtDlConfig), 0755)
if err != nil {
fmt.Println(err)
}
_, err = os.ReadDir("configs")
if err != nil {
fmt.Println(err)
}
}
// Write embedded Python files to runtime directory
if err := writeEmbeddedFiles(); err != nil {
log.Fatalf("Failed to write embedded files: %v", err)
}
// Update rootPath to runtime directory
// Load initial config
if err := loadConfig(); err != nil {
log.Fatalf("Failed to load config: %v", err)
}
// Create Fyne application
a := app.New()
w := a.NewWindow("Streamers Manager")
// Streamers list
streamersList := widget.NewList(
func() int {
return len(config.Streamers)
},
func() fyne.CanvasObject {
return widget.NewLabel("Streamer")
},
func(i widget.ListItemID, item fyne.CanvasObject) {
item.(*widget.Label).SetText(config.Streamers[i])
},
)
// Add streamer
addStreamerButton := widget.NewButton("Add Streamer", func() {
entry := widget.NewEntry()
entry.SetPlaceHolder("Enter streamer name")
dialog.ShowForm("Add Streamer", "Add", "Cancel", []*widget.FormItem{
widget.NewFormItem("Streamer", entry),
}, func(confirmed bool) {
if confirmed && entry.Text != "" {
config.Streamers = append(config.Streamers, entry.Text)
streamersList.Refresh()
if err := saveConfig(); err != nil {
dialog.ShowError(err, w)
}
}
}, w)
})
// Remove streamer
removeStreamerButton := widget.NewButton("Remove Streamer", func() {
selectedIdx := streamersList.Length()
fmt.Println(selectedIdx)
if selectedIdx >= 0 && selectedIdx < len(config.Streamers) {
config.Streamers = append(config.Streamers[:selectedIdx], config.Streamers[selectedIdx+1:]...)
streamersList.Refresh()
if err := saveConfig(); err != nil {
dialog.ShowError(err, w)
}
} else {
dialog.ShowInformation("Error", "No streamer selected", w)
}
})
// Change export location
changeExportLocationButton := widget.NewButton("Change Export Location", func() {
entry := widget.NewEntry()
entry.SetText(config.DefaultExportLocation)
dialog.ShowForm("Set Export Location", "Save", "Cancel", []*widget.FormItem{
widget.NewFormItem("Location", entry),
}, func(confirmed bool) {
if confirmed {
config.DefaultExportLocation = entry.Text
if err := saveConfig(); err != nil {
dialog.ShowError(err, w)
}
}
}, w)
})
// Start app
startRecordingButton := widget.NewButton("Restart recording", func() {
if recordingActive {
return
}
if runCMDwithArgs("python3", "Recordurbate.py", "restart") != nil {
return
}
recordingActive = true
})
// Layout
buttons := container.NewVBox(
addStreamerButton,
removeStreamerButton,
changeExportLocationButton,
startRecordingButton,
)
content := container.NewBorder(nil, nil, nil, buttons, streamersList)
w.SetContent(content)
w.Resize(fyne.NewSize(500, 400))
w.ShowAndRun()
}
func runCMDwithArgs(command string, args ...string) error {
if len(args) > 0 {
fmt.Println("Script:", args[0])
}
cmd := exec.Command(command, args...)
err := cmd.Run()
if err != nil {
fmt.Println("Error:", err)
return err
}
return nil
}
// writeEmbeddedFiles writes all embedded Python files to the filesystem.
func writeEmbeddedFiles() error {
files := map[string][]byte{
"bot.py": botPy,
"config.py": configPy,
"daemon.py": daemonPy,
"Recordurbate.py": recordurbatePy,
}
for name, content := range files {
outputPath := name
if err := os.WriteFile(outputPath, content, fs.ModePerm); err != nil {
return fmt.Errorf("failed to write %s: %w", name, err)
}
}
return nil
}