-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gui.go
466 lines (386 loc) · 11.9 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
package main
import (
"strings"
"time"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/widget"
"github.com/sirupsen/logrus"
"io/ioutil"
"os/exec"
"path/filepath"
"fmt"
"log"
"os"
"sync"
"fyne.io/fyne/v2/canvas"
"github.com/hajimehoshi/go-mp3"
"github.com/hajimehoshi/oto"
)
var currentSelectedFilePath string
var (
currentPlayer *oto.Player
playerMutex sync.Mutex
playbackInProgress bool
)
func playAudioMP3(filePath string, done chan bool) {
file, err := os.Open(filePath)
if err != nil {
errorMessage := fmt.Sprintf("Error al abrir el archivo MP3 '%s': %s", filePath, err)
logError(errorMessage)
return
}
defer file.Close()
mp3Decoder, err := mp3.NewDecoder(file)
if err != nil {
errorMessage := fmt.Sprintf("Error al decodificar el archivo MP3 '%s': %s", filePath, err)
logError(errorMessage)
return
}
otoContext, err := oto.NewContext(44100, 2, 2, 8192)
if err != nil {
errorMessage := fmt.Sprintf("Error al crear el contexto de audio Oto: %s", err)
logError(errorMessage)
return
}
defer otoContext.Close()
player := otoContext.NewPlayer()
defer player.Close()
// Guarda la referencia al reproductor actual de manera segura con un mutex
playerMutex.Lock()
currentPlayer = player
playbackInProgress = true
playerMutex.Unlock()
bufferSize := 1
buffer := make([]byte, bufferSize)
for {
select {
case <-done:
// Se recibió la señal de finalización
return
default:
// Sigue leyendo y reproduciendo el audio
_, err := mp3Decoder.Read(buffer)
if err != nil {
// Fin del archivo MP3
done <- true
return
}
// Utiliza el mutex para garantizar operaciones atómicas en currentPlayer
playerMutex.Lock()
player.Write(buffer)
playerMutex.Unlock()
}
}
}
// Función para detener la reproducción actual
func stopPlayback() {
playerMutex.Lock()
defer playerMutex.Unlock()
if currentPlayer != nil {
// Detén y cierra el reproductor actual
currentPlayer.Close()
currentPlayer = nil
playbackInProgress = false
}
}
// Función para verificar si hay una reproducción en curso
func isPlaybackInProgress() bool {
playerMutex.Lock()
defer playerMutex.Unlock()
return playbackInProgress
}
func isMP3File(fileName string) bool {
ext := strings.ToLower(filepath.Ext(fileName))
return ext == ".mp3"
}
func (c *Config) mGUI(m string) *fyne.Container {
date := widget.NewEntry()
date.SetText(time.Now().Format("2006-01-02"))
song1box := widget.NewEntry()
song1box.SetPlaceHolder("Canción #1")
song2box := widget.NewEntry()
song2box.SetPlaceHolder("Canción #2")
song3box := widget.NewEntry()
song3box.SetPlaceHolder("Canción #3")
fetchOtherMedia := widget.NewCheck("Obtener otros medios (imágenes y videos)", func(f bool) {
c.FetchOtherMedia = f
c.writeConfigToFile()
})
fetchOtherMedia.SetChecked(c.FetchOtherMedia)
if c.AutoFetchMeetingData {
if m == MM {
song1box.Disabled()
}
song2box.Disabled()
song3box.Disabled()
fetchOtherMedia.Enable()
} else {
if m == MM {
song1box.Enable()
}
song2box.Enable()
song3box.Enable()
fetchOtherMedia.Disable()
}
autoFetchMeetingData := widget.NewCheck("Obtener automáticamente los datos de la reunión", func(f bool) {
c.AutoFetchMeetingData = f
c.writeConfigToFile()
if f {
if m == MM {
song1box.Disable()
}
song2box.Disable()
song3box.Disable()
fetchOtherMedia.Enable()
} else {
if m == MM {
song1box.Enable()
}
song2box.Enable()
song3box.Enable()
fetchOtherMedia.Disable()
}
})
autoFetchMeetingData.SetChecked(c.AutoFetchMeetingData)
playlistOption := widget.NewCheck("Crear lista de reproducción para usar con VLC", func(p bool) {
c.CreatePlaylist = p
c.writeConfigToFile()
})
playlistOption.SetChecked(c.CreatePlaylist)
fetchButton := widget.NewButton("Buscar", func() {
dateToSet, err := time.Parse("2006-01-02", date.Text)
if err != nil {
logrus.Fatal(err)
}
c.Date = WeekOf(dateToSet)
c.SongsToGet = []string{song1box.Text, song2box.Text, song3box.Text}
if err := c.fetchMeetingStuff(m); err == nil {
fyne.CurrentApp().SendNotification(&fyne.Notification{
Title: "Attendant Zoom",
Content: "Descarga completada",
})
} else {
fyne.CurrentApp().SendNotification(&fyne.Notification{
Title: "Attendant Zoom",
Content: "Error en la descarga...",
})
}
c.Pictures = []file{}
c.Videos = []video{}
c.SongsToGet = []string{}
c.SongsNames = []string{}
})
mmBox := container.NewVBox(
date,
autoFetchMeetingData,
fetchOtherMedia,
song1box,
song2box,
song3box,
playlistOption,
fetchButton,
c.Progress.ProgressBar,
)
return mmBox
}
func (c *Config) settingsGUI() *fyne.Container {
resPicker := widget.NewRadioGroup([]string{
RES240,
RES360,
RES480,
RES720,
}, func(res string) {
c.Resolution = res
})
resPicker.SetSelected(c.Resolution)
targetDir := widget.NewEntry()
targetDir.SetPlaceHolder("Ruta de descarga...")
targetDir.SetText(c.SaveLocation)
cacheDir := widget.NewEntry()
cacheDir.SetPlaceHolder("Ruta de caché...")
cacheDir.SetText(c.CacheLocation)
purgeDir := widget.NewCheck("Eliminar contenido anterior antes de descargar nuevo", func(d bool) {
c.PurgeSaveDir = d
})
purgeDir.SetChecked(c.PurgeSaveDir)
lang := widget.NewEntry()
lang.SetPlaceHolder("Idioma del contenido multimedia (ej. S para Español)")
lang.SetText(c.Language)
pubs := widget.NewEntry()
pubs.SetPlaceHolder("Símbolos de publicaciones para el contenido multimedia (ej. th, lff)")
var pubSymbolString string
for i, s := range c.PubSymbols {
if i != 0 {
pubSymbolString += ", "
}
pubSymbolString += s
}
pubs.SetText(pubSymbolString)
save := widget.NewButton("Guardar", func() {
c.SaveLocation = targetDir.Text
c.CacheLocation = cacheDir.Text
c.Language = lang.Text
var pubSymbolSlice []string
for _, p := range strings.Split(pubs.Text, ",") {
pubSymbolSlice = append(pubSymbolSlice, strings.TrimSpace(strings.ToLower(p)))
}
c.PubSymbols = pubSymbolSlice
c.writeConfigToFile()
})
settingsBox := container.NewVBox(
resPicker,
targetDir,
cacheDir,
purgeDir,
lang,
pubs,
save,
)
return settingsBox
}
func (c *Config) createDownloadedFilesView(mediaviewer fyne.Window) *fyne.Container {
downloadedFolderPath := c.SaveLocation
currentSelectedFilePath := ""
files, err := ioutil.ReadDir(downloadedFolderPath)
if err != nil {
logrus.Warn(err)
}
var fileNames []string
for _, file := range files {
fileNames = append(fileNames, file.Name())
}
fileList := widget.NewList(
func() int {
return len(fileNames)
},
func() fyne.CanvasObject {
label := widget.NewLabel("")
return label
},
func(i widget.ListItemID, obj fyne.CanvasObject) {
label := obj.(*widget.Label)
label.SetText(fileNames[i])
},
)
fileList.OnSelected = func(id widget.ListItemID) {
fileList.Refresh()
if id < 0 || int(id) >= len(fileNames) {
logrus.Warnf("Selección fuera de rango: %d", id)
return
}
logrus.Infof("OnSelected controlador activado para el elemento %d", id)
selectedFileName := fileNames[id]
newSelectedFilePath := filepath.Join(downloadedFolderPath, selectedFileName)
if isImageFile(selectedFileName) {
// Limpia las rutas antes de compararlas
newSelectedFilePath = filepath.Clean(newSelectedFilePath)
currentSelectedFilePath = filepath.Clean(currentSelectedFilePath)
// Agrega mensajes de registro para verificar las rutas antes de la comparación
logrus.Infof("newSelectedFilePath antes de la comparación: %s", newSelectedFilePath)
logrus.Infof("currentSelectedFilePath antes de la comparación: %s", currentSelectedFilePath)
if newSelectedFilePath == currentSelectedFilePath {
// Si la imagen seleccionada es la misma que la actual, quítala
currentSelectedFilePath = ""
backgroundImage := canvas.NewImageFromFile("resources/yeartext.png")
backgroundImage.Resize(fyne.NewSize(640, 360))
containerv := container.NewMax(backgroundImage)
containerv.Resize(fyne.NewSize(640, 360))
mediaviewer.SetContent(containerv)
// Deselecciona el elemento
fileList.Unselect(id)
logrus.Infof("Ocultar imagen seleccionada")
} else {
// Si la imagen seleccionada es diferente, muéstrala y actualiza la selección actual
currentSelectedFilePath = newSelectedFilePath
setImageInView(mediaviewer, currentSelectedFilePath)
// Deselecciona el elemento
fileList.Unselect(id)
logrus.Infof("Mostrar nueva imagen seleccionada")
}
} else if isMP3File(selectedFileName) {
newSelectedFilePath = filepath.Clean(newSelectedFilePath)
currentSelectedFilePath = filepath.Clean(currentSelectedFilePath)
if newSelectedFilePath == currentSelectedFilePath {
// Si el audio seleccionado es el mismo que el actual, detenlo
if isPlaybackInProgress() {
stopPlayback()
}
fileList.Unselect(id)
} else {
// Si el audio seleccionado es diferente, reproduce y actualiza la selección actual
if isPlaybackInProgress() {
stopPlayback()
}
done := make(chan bool)
go func() {
defer close(done)
playAudioMP3(newSelectedFilePath, done)
}()
// Espera a que la reproducción anterior finalice antes de deseleccionar
<-done
fileList.Unselect(id)
logrus.Infof("Archivo de audio reproduciendo: %s", newSelectedFilePath)
}
} else if isVideoFile(selectedFileName) {
newSelectedFilePath = filepath.Clean(newSelectedFilePath)
currentSelectedFilePath = filepath.Clean(currentSelectedFilePath)
if newSelectedFilePath == currentSelectedFilePath {
// Si el video seleccionado es el mismo que el actual, detenlo
if isPlaybackInProgress() {
stopPlayback()
}
fileList.Unselect(id)
} else {
// Si el video seleccionado es diferente, reproduce y actualiza la selección actual
if isPlaybackInProgress() {
stopPlayback()
}
// Agrega mensajes de registro para verificar la ruta antes de reproducir
logrus.Infof("Reproduciendo video: %s", newSelectedFilePath)
// Lanza ffplay con el video seleccionado
cmd := exec.Command("ffplay", "-fs", newSelectedFilePath)
err := cmd.Run()
if err != nil {
logrus.Errorf("Error al reproducir el video: %v", err)
}
fileList.Unselect(id)
}
}
}
fileListContainer := container.NewScroll(fileList)
viewContainer := container.NewMax(
fileListContainer,
)
return viewContainer
}
func setImageInView(mediaviewer fyne.Window, imagePath string) {
image := canvas.NewImageFromFile(imagePath)
mediaviewer.SetContent(container.NewMax(image))
logrus.Infof("currentSelectedFilePath antes de la actualización: %s", currentSelectedFilePath)
currentSelectedFilePath = imagePath
logrus.Infof("currentSelectedFilePath después de la actualización: %s", currentSelectedFilePath)
}
func isImageFile(fileName string) bool {
ext := strings.ToLower(filepath.Ext(fileName))
return ext == ".png" || ext == ".jpg" || ext == ".jpeg"
}
func isVideoFile(fileName string) bool {
ext := strings.ToLower(filepath.Ext(fileName))
return ext == ".mp4"
}
func logError(errorMessage string) {
logFolder := "logs"
if _, err := os.Stat(logFolder); os.IsNotExist(err) {
os.Mkdir(logFolder, os.ModeDir)
}
logFileName := filepath.Join(logFolder, time.Now().Format("2006-01-02_15-04-05")+".log")
logFile, err := os.OpenFile(logFileName, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
if err != nil {
fmt.Println("Error al abrir el archivo de registro:", err)
return
}
defer logFile.Close()
log.SetOutput(logFile)
log.Println(errorMessage)
}