Refactor: move some playback-related functions to backend package
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
package helpers
|
package helpers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
"github.com/dweymouth/supersonic/backend/mediaprovider"
|
"github.com/dweymouth/supersonic/backend/mediaprovider"
|
||||||
"github.com/dweymouth/supersonic/sharedutil"
|
"github.com/dweymouth/supersonic/sharedutil"
|
||||||
)
|
)
|
||||||
@@ -8,7 +10,6 @@ import (
|
|||||||
func GetSimilarSongsFallback(mp mediaprovider.MediaProvider, track *mediaprovider.Track, count int) []*mediaprovider.Track {
|
func GetSimilarSongsFallback(mp mediaprovider.MediaProvider, track *mediaprovider.Track, count int) []*mediaprovider.Track {
|
||||||
var tracks []*mediaprovider.Track
|
var tracks []*mediaprovider.Track
|
||||||
if len(track.ArtistIDs) > 0 {
|
if len(track.ArtistIDs) > 0 {
|
||||||
tracks, _ = mp.GetSimilarTracks(track.ArtistIDs[0], count)
|
|
||||||
}
|
}
|
||||||
if len(tracks) == 0 {
|
if len(tracks) == 0 {
|
||||||
tracks, _ = mp.GetRandomTracks(track.Genre, count)
|
tracks, _ = mp.GetRandomTracks(track.Genre, count)
|
||||||
@@ -19,3 +20,19 @@ func GetSimilarSongsFallback(mp mediaprovider.MediaProvider, track *mediaprovide
|
|||||||
return t.ID != track.ID
|
return t.ID != track.ID
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GetArtistTracks(mp mediaprovider.MediaProvider, artistID string) ([]*mediaprovider.Track, error) {
|
||||||
|
artist, err := mp.GetArtist(artistID)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("error getting artist tracks: %v", err.Error())
|
||||||
|
}
|
||||||
|
var allTracks []*mediaprovider.Track
|
||||||
|
for _, album := range artist.Albums {
|
||||||
|
album, err := mp.GetAlbum(album.ID)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("error loading album tracks: %v", err.Error())
|
||||||
|
}
|
||||||
|
allTracks = append(allTracks, album.Tracks...)
|
||||||
|
}
|
||||||
|
return allTracks, nil
|
||||||
|
}
|
||||||
@@ -145,6 +145,10 @@ func (j *jellyfinMediaProvider) GetArtist(artistID string) (*mediaprovider.Artis
|
|||||||
return artist, nil
|
return artist, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (j *jellyfinMediaProvider) GetArtistTracks(artistID string) ([]*mediaprovider.Track, error) {
|
||||||
|
return helpers.GetArtistTracks(j, artistID)
|
||||||
|
}
|
||||||
|
|
||||||
func (j *jellyfinMediaProvider) GetArtistInfo(artistID string) (*mediaprovider.ArtistInfo, error) {
|
func (j *jellyfinMediaProvider) GetArtistInfo(artistID string) (*mediaprovider.ArtistInfo, error) {
|
||||||
ar, err := j.client.GetArtist(artistID)
|
ar, err := j.client.GetArtist(artistID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
@@ -181,6 +181,8 @@ type MediaProvider interface {
|
|||||||
|
|
||||||
GetArtist(artistID string) (*ArtistWithAlbums, error)
|
GetArtist(artistID string) (*ArtistWithAlbums, error)
|
||||||
|
|
||||||
|
GetArtistTracks(artistID string) ([]*Track, error)
|
||||||
|
|
||||||
GetArtistInfo(artistID string) (*ArtistInfo, error)
|
GetArtistInfo(artistID string) (*ArtistInfo, error)
|
||||||
|
|
||||||
GetPlaylist(playlistID string) (*PlaylistWithTracks, error)
|
GetPlaylist(playlistID string) (*PlaylistWithTracks, error)
|
||||||
|
|||||||
@@ -121,6 +121,10 @@ func (s *subsonicMediaProvider) GetArtist(artistID string) (*mediaprovider.Artis
|
|||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *subsonicMediaProvider) GetArtistTracks(artistID string) ([]*mediaprovider.Track, error) {
|
||||||
|
return helpers.GetArtistTracks(s, artistID)
|
||||||
|
}
|
||||||
|
|
||||||
func (s *subsonicMediaProvider) GetArtistInfo(artistID string) (*mediaprovider.ArtistInfo, error) {
|
func (s *subsonicMediaProvider) GetArtistInfo(artistID string) (*mediaprovider.ArtistInfo, error) {
|
||||||
info, err := s.client.GetArtistInfo2(artistID, map[string]string{})
|
info, err := s.client.GetArtistInfo2(artistID, map[string]string{})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"log"
|
"log"
|
||||||
|
"math/rand"
|
||||||
|
|
||||||
"github.com/dweymouth/supersonic/backend/mediaprovider"
|
"github.com/dweymouth/supersonic/backend/mediaprovider"
|
||||||
"github.com/dweymouth/supersonic/backend/player"
|
"github.com/dweymouth/supersonic/backend/player"
|
||||||
@@ -168,6 +169,47 @@ func (p *PlaybackManager) PlayTrack(trackID string) error {
|
|||||||
return p.PlayFromBeginning()
|
return p.PlayFromBeginning()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *PlaybackManager) ShuffleArtistAlbums(artistID string) {
|
||||||
|
artist, err := p.engine.sm.Server.GetArtist(artistID)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if len(artist.Albums) == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
rand.Shuffle(len(artist.Albums), func(i, j int) {
|
||||||
|
artist.Albums[i], artist.Albums[j] = artist.Albums[j], artist.Albums[i]
|
||||||
|
})
|
||||||
|
p.StopAndClearPlayQueue()
|
||||||
|
for _, al := range artist.Albums {
|
||||||
|
p.LoadAlbum(al.ID, Append, false)
|
||||||
|
}
|
||||||
|
|
||||||
|
if p.engine.replayGainCfg.Mode == ReplayGainAuto {
|
||||||
|
p.SetReplayGainMode(player.ReplayGainAlbum)
|
||||||
|
}
|
||||||
|
p.PlayFromBeginning()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *PlaybackManager) PlayArtistDiscography(artistID string, shuffleTracks bool) {
|
||||||
|
tr, err := p.engine.sm.Server.GetArtistTracks(artistID)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
p.LoadTracks(tr, Replace, shuffleTracks)
|
||||||
|
if p.engine.replayGainCfg.Mode == ReplayGainAuto {
|
||||||
|
if shuffleTracks {
|
||||||
|
p.SetReplayGainMode(player.ReplayGainTrack)
|
||||||
|
} else {
|
||||||
|
p.SetReplayGainMode(player.ReplayGainAlbum)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.PlayFromBeginning()
|
||||||
|
}
|
||||||
|
|
||||||
func (p *PlaybackManager) PlayFromBeginning() error {
|
func (p *PlaybackManager) PlayFromBeginning() error {
|
||||||
return p.engine.PlayTrackAt(0)
|
return p.engine.PlayTrackAt(0)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -319,7 +319,7 @@ func NewArtistPageHeader(page *ArtistPage) *ArtistPageHeader {
|
|||||||
}
|
}
|
||||||
a.favoriteBtn = widgets.NewFavoriteButton(func() { go a.toggleFavorited() })
|
a.favoriteBtn = widgets.NewFavoriteButton(func() { go a.toggleFavorited() })
|
||||||
a.playBtn = widget.NewButtonWithIcon("Play Discography", theme.MediaPlayIcon(), func() {
|
a.playBtn = widget.NewButtonWithIcon("Play Discography", theme.MediaPlayIcon(), func() {
|
||||||
go a.artistPage.contr.PlayArtistDiscography(a.artistID, false /*shuffle*/)
|
go a.artistPage.pm.PlayArtistDiscography(a.artistID, false /*shuffle*/)
|
||||||
})
|
})
|
||||||
a.playRadioBtn = widget.NewButtonWithIcon("Play Artist Radio", myTheme.ShuffleIcon, func() {
|
a.playRadioBtn = widget.NewButtonWithIcon("Play Artist Radio", myTheme.ShuffleIcon, func() {
|
||||||
// must not pass playArtistRadio func directly to NewButton
|
// must not pass playArtistRadio func directly to NewButton
|
||||||
@@ -332,11 +332,11 @@ func NewArtistPageHeader(page *ArtistPage) *ArtistPageHeader {
|
|||||||
a.menuBtn.OnTapped = func() {
|
a.menuBtn.OnTapped = func() {
|
||||||
if pop == nil {
|
if pop == nil {
|
||||||
shuffleTracks := fyne.NewMenuItem("Shuffle tracks", func() {
|
shuffleTracks := fyne.NewMenuItem("Shuffle tracks", func() {
|
||||||
go a.artistPage.contr.PlayArtistDiscography(a.artistID, true /*shuffle*/)
|
go a.artistPage.pm.PlayArtistDiscography(a.artistID, true /*shuffle*/)
|
||||||
})
|
})
|
||||||
shuffleTracks.Icon = myTheme.TracksIcon
|
shuffleTracks.Icon = myTheme.TracksIcon
|
||||||
shuffleAlbums := fyne.NewMenuItem("Shuffle albums", func() {
|
shuffleAlbums := fyne.NewMenuItem("Shuffle albums", func() {
|
||||||
go a.artistPage.contr.ShuffleArtistAlbums(a.artistID)
|
go a.artistPage.pm.ShuffleArtistAlbums(a.artistID)
|
||||||
})
|
})
|
||||||
shuffleAlbums.Icon = myTheme.AlbumIcon
|
shuffleAlbums.Icon = myTheme.AlbumIcon
|
||||||
menu := fyne.NewMenu("", shuffleTracks, shuffleAlbums)
|
menu := fyne.NewMenu("", shuffleTracks, shuffleAlbums)
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ import (
|
|||||||
"image"
|
"image"
|
||||||
"io"
|
"io"
|
||||||
"log"
|
"log"
|
||||||
"math/rand"
|
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@@ -210,7 +209,7 @@ func (m *Controller) ConnectArtistGridActions(grid *widgets.GridView) {
|
|||||||
grid.OnPlayNext = func(artistID string) {
|
grid.OnPlayNext = func(artistID string) {
|
||||||
go m.App.PlaybackManager.LoadTracks(m.GetArtistTracks(artistID), backend.InsertNext, false)
|
go m.App.PlaybackManager.LoadTracks(m.GetArtistTracks(artistID), backend.InsertNext, false)
|
||||||
}
|
}
|
||||||
grid.OnPlay = func(artistID string, shuffle bool) { go m.PlayArtistDiscography(artistID, shuffle) }
|
grid.OnPlay = func(artistID string, shuffle bool) { go m.App.PlaybackManager.PlayArtistDiscography(artistID, shuffle) }
|
||||||
grid.OnAddToQueue = func(artistID string) {
|
grid.OnAddToQueue = func(artistID string) {
|
||||||
go m.App.PlaybackManager.LoadTracks(m.GetArtistTracks(artistID), backend.Append, false)
|
go m.App.PlaybackManager.LoadTracks(m.GetArtistTracks(artistID), backend.Append, false)
|
||||||
}
|
}
|
||||||
@@ -235,62 +234,15 @@ func (m *Controller) ConnectArtistGridActions(grid *widgets.GridView) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (m *Controller) GetArtistTracks(artistID string) []*mediaprovider.Track {
|
func (m *Controller) GetArtistTracks(artistID string) []*mediaprovider.Track {
|
||||||
server := m.App.ServerManager.Server
|
if mp := m.App.ServerManager.Server; mp != nil {
|
||||||
if server == nil {
|
if tr, err := mp.GetArtistTracks(artistID); err != nil {
|
||||||
log.Println("error playing artist discography: logged out")
|
log.Println(err.Error())
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
artist, err := server.GetArtist(artistID)
|
|
||||||
if err != nil {
|
|
||||||
log.Printf("error getting artist discography: %v", err.Error())
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
var allTracks []*mediaprovider.Track
|
|
||||||
for _, album := range artist.Albums {
|
|
||||||
album, err := server.GetAlbum(album.ID)
|
|
||||||
if err != nil {
|
|
||||||
log.Printf("error loading album tracks: %v", err.Error())
|
|
||||||
return nil
|
return nil
|
||||||
}
|
|
||||||
allTracks = append(allTracks, album.Tracks...)
|
|
||||||
}
|
|
||||||
return allTracks
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *Controller) PlayArtistDiscography(artistID string, shuffleTracks bool) {
|
|
||||||
m.App.PlaybackManager.LoadTracks(m.GetArtistTracks(artistID), backend.Replace, shuffleTracks)
|
|
||||||
if m.App.Config.ReplayGain.Mode == backend.ReplayGainAuto {
|
|
||||||
if shuffleTracks {
|
|
||||||
m.App.PlaybackManager.SetReplayGainMode(player.ReplayGainTrack)
|
|
||||||
} else {
|
} else {
|
||||||
m.App.PlaybackManager.SetReplayGainMode(player.ReplayGainAlbum)
|
return tr
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
m.App.PlaybackManager.PlayFromBeginning()
|
return nil
|
||||||
}
|
|
||||||
|
|
||||||
func (m *Controller) ShuffleArtistAlbums(artistID string) {
|
|
||||||
artist, err := m.App.ServerManager.Server.GetArtist(artistID)
|
|
||||||
if err != nil {
|
|
||||||
log.Printf("error getting artist discography: %v", err.Error())
|
|
||||||
}
|
|
||||||
if len(artist.Albums) == 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
rand.Shuffle(len(artist.Albums), func(i, j int) {
|
|
||||||
artist.Albums[i], artist.Albums[j] = artist.Albums[j], artist.Albums[i]
|
|
||||||
})
|
|
||||||
m.App.PlaybackManager.StopAndClearPlayQueue()
|
|
||||||
for _, al := range artist.Albums {
|
|
||||||
m.App.PlaybackManager.LoadAlbum(al.ID, backend.Append, false)
|
|
||||||
}
|
|
||||||
|
|
||||||
if m.App.Config.ReplayGain.Mode == backend.ReplayGainAuto {
|
|
||||||
m.App.PlaybackManager.SetReplayGainMode(player.ReplayGainAlbum)
|
|
||||||
}
|
|
||||||
m.App.PlaybackManager.PlayFromBeginning()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Controller) PromptForFirstServer() {
|
func (m *Controller) PromptForFirstServer() {
|
||||||
|
|||||||
Reference in New Issue
Block a user