mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-10 20:28:13 +08:00
230 lines
6.0 KiB
Go
230 lines
6.0 KiB
Go
package webinfo
|
|
|
|
import (
|
|
"AynaLivePlayer/config"
|
|
"AynaLivePlayer/controller"
|
|
"AynaLivePlayer/event"
|
|
"AynaLivePlayer/gui"
|
|
"AynaLivePlayer/i18n"
|
|
"AynaLivePlayer/logger"
|
|
"AynaLivePlayer/player"
|
|
"AynaLivePlayer/util"
|
|
"fmt"
|
|
"fyne.io/fyne/v2"
|
|
"fyne.io/fyne/v2/container"
|
|
"fyne.io/fyne/v2/data/binding"
|
|
"fyne.io/fyne/v2/theme"
|
|
"fyne.io/fyne/v2/widget"
|
|
"github.com/aynakeya/go-mpv"
|
|
)
|
|
|
|
const MODULE_PLGUIN_WEBINFO = "plugin.webinfo"
|
|
|
|
var lg = logger.Logger.WithField("Module", MODULE_PLGUIN_WEBINFO)
|
|
|
|
type WebInfo struct {
|
|
Port int
|
|
server *WebInfoServer
|
|
panel fyne.CanvasObject
|
|
}
|
|
|
|
func NewWebInfo() *WebInfo {
|
|
return &WebInfo{
|
|
Port: 4000,
|
|
}
|
|
}
|
|
|
|
func (w *WebInfo) Name() string {
|
|
return "WebInfo"
|
|
}
|
|
|
|
func (w *WebInfo) Title() string {
|
|
return i18n.T("plugin.webinfo.title")
|
|
}
|
|
|
|
func (w *WebInfo) Description() string {
|
|
return i18n.T("plugin.webinfo.description")
|
|
}
|
|
|
|
func (w *WebInfo) Enable() error {
|
|
config.LoadConfig(w)
|
|
w.server = NewWebInfoServer(w.Port)
|
|
lg.Info("starting web backend server")
|
|
w.server.Start()
|
|
w.registerHandlers()
|
|
gui.AddConfigLayout(w)
|
|
lg.Info("webinfo loaded")
|
|
return nil
|
|
}
|
|
|
|
func (w *WebInfo) Disable() error {
|
|
lg.Info("closing webinfo backend server")
|
|
if err := w.server.Stop(); err != nil {
|
|
lg.Warnf("stop webinfo server encouter an error: %s", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (t *WebInfo) registerHandlers() {
|
|
controller.MainPlayer.EventHandler.RegisterA(player.EventPlay, "plugin.webinfo.current", func(event *event.Event) {
|
|
t.server.Info.Current = MediaInfo{
|
|
Index: 0,
|
|
Title: event.Data.(player.PlayEvent).Media.Title,
|
|
Artist: event.Data.(player.PlayEvent).Media.Artist,
|
|
Album: event.Data.(player.PlayEvent).Media.Album,
|
|
Cover: event.Data.(player.PlayEvent).Media.Cover,
|
|
Username: event.Data.(player.PlayEvent).Media.ToUser().Name,
|
|
}
|
|
t.server.SendInfo(
|
|
OutInfoC,
|
|
OutInfo{Current: t.server.Info.Current},
|
|
)
|
|
})
|
|
if controller.MainPlayer.ObserveProperty("time-pos", func(property *mpv.EventProperty) {
|
|
if property.Data == nil {
|
|
t.server.Info.CurrentTime = 0
|
|
return
|
|
}
|
|
ct := int(property.Data.(mpv.Node).Value.(float64))
|
|
if ct == t.server.Info.CurrentTime {
|
|
return
|
|
}
|
|
t.server.Info.CurrentTime = ct
|
|
t.server.SendInfo(
|
|
OutInfoCT,
|
|
OutInfo{CurrentTime: t.server.Info.CurrentTime},
|
|
)
|
|
}) != nil {
|
|
lg.Error("register time-pos handler failed")
|
|
}
|
|
if controller.MainPlayer.ObserveProperty("duration", func(property *mpv.EventProperty) {
|
|
if property.Data == nil {
|
|
t.server.Info.TotalTime = 0
|
|
return
|
|
}
|
|
t.server.Info.TotalTime = int(property.Data.(mpv.Node).Value.(float64))
|
|
t.server.SendInfo(
|
|
OutInfoTT,
|
|
OutInfo{TotalTime: t.server.Info.TotalTime},
|
|
)
|
|
}) != nil {
|
|
lg.Error("fail to register handler for total time with property duration")
|
|
}
|
|
controller.UserPlaylist.Handler.RegisterA(player.EventPlaylistUpdate, "plugin.webinfo.playlist", func(event *event.Event) {
|
|
pl := make([]MediaInfo, 0)
|
|
e := event.Data.(player.PlaylistUpdateEvent)
|
|
e.Playlist.Lock.RLock()
|
|
for index, m := range e.Playlist.Playlist {
|
|
pl = append(pl, MediaInfo{
|
|
Index: index,
|
|
Title: m.Title,
|
|
Artist: m.Artist,
|
|
Album: m.Album,
|
|
Username: m.ToUser().Name,
|
|
})
|
|
}
|
|
e.Playlist.Lock.RUnlock()
|
|
t.server.Info.Playlist = pl
|
|
t.server.SendInfo(
|
|
OutInfoPL,
|
|
OutInfo{Playlist: t.server.Info.Playlist},
|
|
)
|
|
})
|
|
controller.CurrentLyric.Handler.RegisterA(player.EventLyricUpdate, "plugin.webinfo.lyric", func(event *event.Event) {
|
|
lrcLine := event.Data.(player.LyricUpdateEvent).Lyric
|
|
t.server.Info.Lyric = lrcLine.Lyric
|
|
t.server.SendInfo(
|
|
OutInfoL,
|
|
OutInfo{Lyric: t.server.Info.Lyric},
|
|
)
|
|
})
|
|
}
|
|
|
|
func (w *WebInfo) getServerStatusText() string {
|
|
if w.server.Running {
|
|
return i18n.T("plugin.webinfo.server_status.running")
|
|
} else {
|
|
return i18n.T("plugin.webinfo.server_status.stopped")
|
|
}
|
|
}
|
|
|
|
func (w *WebInfo) getServerUrl() string {
|
|
return fmt.Sprintf("http://localhost:%d/#/previewV2", w.Port)
|
|
}
|
|
|
|
func (w *WebInfo) CreatePanel() fyne.CanvasObject {
|
|
if w.panel != nil {
|
|
return w.panel
|
|
}
|
|
statusText := widget.NewLabel("")
|
|
serverStatus := container.NewHBox(
|
|
widget.NewLabel(i18n.T("plugin.webinfo.server_status")),
|
|
statusText,
|
|
)
|
|
statusText.SetText(w.getServerStatusText())
|
|
serverPort := container.NewBorder(nil, nil,
|
|
widget.NewLabel(i18n.T("plugin.webinfo.port")), nil,
|
|
widget.NewEntryWithData(binding.IntToString(binding.BindInt(&w.Port))),
|
|
)
|
|
serverUrl := widget.NewHyperlink(w.getServerUrl(), util.UrlMustParse(w.getServerUrl()))
|
|
serverPreview := container.NewHBox(
|
|
widget.NewLabel(i18n.T("plugin.webinfo.server_preview")),
|
|
serverUrl,
|
|
)
|
|
stopBtn := gui.NewAsyncButtonWithIcon(
|
|
i18n.T("plugin.webinfo.server_control.stop"),
|
|
theme.MediaStopIcon(),
|
|
func() {
|
|
if !w.server.Running {
|
|
return
|
|
}
|
|
lg.Info("User try stop webinfo server")
|
|
err := w.server.Stop()
|
|
if err != nil {
|
|
lg.Warnf("stop server have error: %s", err)
|
|
return
|
|
}
|
|
statusText.SetText(w.getServerStatusText())
|
|
},
|
|
)
|
|
startBtn := gui.NewAsyncButtonWithIcon(
|
|
i18n.T("plugin.webinfo.server_control.start"),
|
|
theme.MediaPlayIcon(),
|
|
func() {
|
|
if w.server.Running {
|
|
return
|
|
}
|
|
lg.Infof("User try start webinfo server with port %d", w.Port)
|
|
w.server.Port = w.Port
|
|
w.server.Start()
|
|
statusText.SetText(w.getServerStatusText())
|
|
serverUrl.SetText(w.getServerUrl())
|
|
_ = serverUrl.SetURLFromString(w.getServerUrl())
|
|
},
|
|
)
|
|
restartBtn := gui.NewAsyncButtonWithIcon(
|
|
i18n.T("plugin.webinfo.server_control.restart"),
|
|
theme.MediaReplayIcon(),
|
|
func() {
|
|
lg.Infof("User try restart webinfo server with port %d", w.Port)
|
|
if w.server.Running {
|
|
if err := w.server.Stop(); err != nil {
|
|
lg.Warnf("stop server have error: %s", err)
|
|
return
|
|
}
|
|
}
|
|
w.server.Port = w.Port
|
|
w.server.Start()
|
|
statusText.SetText(w.getServerStatusText())
|
|
serverUrl.SetText(w.getServerUrl())
|
|
_ = serverUrl.SetURLFromString(w.getServerUrl())
|
|
},
|
|
)
|
|
ctrlBtns := container.NewHBox(
|
|
widget.NewLabel(i18n.T("plugin.webinfo.server_control")),
|
|
startBtn, stopBtn, restartBtn,
|
|
)
|
|
w.panel = container.NewVBox(serverStatus, serverPreview, serverPort, ctrlBtns)
|
|
return w.panel
|
|
}
|