Remove unused code

This commit is contained in:
Deluan 2020-04-26 11:56:43 -04:00 committed by Deluan Quintão
parent 6bf7c751a1
commit 95790b9eff
2 changed files with 1 additions and 32 deletions

View file

@ -80,10 +80,6 @@ func (b *browser) Artist(ctx context.Context, id string) (*DirectoryInfo, error)
return nil, err return nil, err
} }
log.Debug(ctx, "Found Artist", "id", id, "name", a.Name) log.Debug(ctx, "Found Artist", "id", id, "name", a.Name)
var albumIds []string
for _, al := range albums {
albumIds = append(albumIds, al.ID)
}
return b.buildArtistDir(a, albums), nil return b.buildArtistDir(a, albums), nil
} }
@ -93,11 +89,6 @@ func (b *browser) Album(ctx context.Context, id string) (*DirectoryInfo, error)
return nil, err return nil, err
} }
log.Debug(ctx, "Found Album", "id", id, "name", al.Name) log.Debug(ctx, "Found Album", "id", id, "name", al.Name)
var mfIds []string
for _, mf := range tracks {
mfIds = append(mfIds, mf.ID)
}
return b.buildAlbumDir(al, tracks), nil return b.buildAlbumDir(al, tracks), nil
} }

View file

@ -106,18 +106,6 @@ type listGenerator struct {
npRepo NowPlayingRepository npRepo NowPlayingRepository
} }
func (g *listGenerator) query(ctx context.Context, qo model.QueryOptions) (Entries, error) {
albums, err := g.ds.Album(ctx).GetAll(qo)
if err != nil {
return nil, err
}
albumIds := make([]string, len(albums))
for i, al := range albums {
albumIds[i] = al.ID
}
return FromAlbums(albums), err
}
func (g *listGenerator) GetSongs(ctx context.Context, offset, size int, filter ListFilter) (Entries, error) { func (g *listGenerator) GetSongs(ctx context.Context, offset, size int, filter ListFilter) (Entries, error) {
qo := model.QueryOptions(filter) qo := model.QueryOptions(filter)
qo.Offset = offset qo.Offset = offset
@ -170,16 +158,6 @@ func (g *listGenerator) GetAllStarred(ctx context.Context) (artists Entries, alb
return nil, nil, nil, err return nil, nil, nil, err
} }
var mfIds []string
for _, mf := range mfs {
mfIds = append(mfIds, mf.ID)
}
var artistIds []string
for _, ar := range ars {
artistIds = append(artistIds, ar.ID)
}
artists = FromArtists(ars) artists = FromArtists(ars)
albums = FromAlbums(als) albums = FromAlbums(als)
mediaFiles = FromMediaFiles(mfs) mediaFiles = FromMediaFiles(mfs)
@ -200,7 +178,7 @@ func (g *listGenerator) GetNowPlaying(ctx context.Context) (Entries, error) {
} }
entries[i] = FromMediaFile(mf) entries[i] = FromMediaFile(mf)
entries[i].UserName = np.Username entries[i].UserName = np.Username
entries[i].MinutesAgo = int(time.Now().Sub(np.Start).Minutes()) entries[i].MinutesAgo = int(time.Since(np.Start).Minutes())
entries[i].PlayerId = np.PlayerId entries[i].PlayerId = np.PlayerId
entries[i].PlayerName = np.PlayerName entries[i].PlayerName = np.PlayerName