refactor: add GetStarred to artists

This commit is contained in:
Deluan 2020-01-31 15:58:17 -05:00 committed by Deluan Quintão
parent 5a4c763510
commit a260e65307
3 changed files with 26 additions and 11 deletions

View file

@ -76,8 +76,7 @@ func (r *artistRepository) GetAll(options ...model.QueryOptions) (model.Artists,
// TODO Cache the index (recalculate when there are changes to the DB) // TODO Cache the index (recalculate when there are changes to the DB)
func (r *artistRepository) GetIndex() (model.ArtistIndexes, error) { func (r *artistRepository) GetIndex() (model.ArtistIndexes, error) {
sq := Select("artist_id as id", "artist as name", "count(distinct album_id) as album_count"). sq := r.selectArtist().OrderBy("name")
From("media_file").GroupBy("artist_id").OrderBy("name")
var all model.Artists var all model.Artists
// TODO Paginate // TODO Paginate
err := r.queryAll(sq, &all) err := r.queryAll(sq, &all)
@ -93,7 +92,7 @@ func (r *artistRepository) GetIndex() (model.ArtistIndexes, error) {
idx = &model.ArtistIndex{ID: ax} idx = &model.ArtistIndex{ID: ax}
fullIdx[ax] = idx fullIdx[ax] = idx
} }
idx.Artists = append(idx.Artists, model.Artist(a)) idx.Artists = append(idx.Artists, a)
} }
var result model.ArtistIndexes var result model.ArtistIndexes
for _, idx := range fullIdx { for _, idx := range fullIdx {
@ -158,7 +157,10 @@ where f.artist_id in ('%s') group by f.artist_id order by f.id`, strings.Join(id
} }
func (r *artistRepository) GetStarred(options ...model.QueryOptions) (model.Artists, error) { func (r *artistRepository) GetStarred(options ...model.QueryOptions) (model.Artists, error) {
return nil, nil // TODO sq := r.selectArtist(options...).Where("starred = true")
var starred model.Artists
err := r.queryAll(sq, &starred)
return starred, err
} }
func (r *artistRepository) PurgeEmpty() error { func (r *artistRepository) PurgeEmpty() error {

View file

@ -1,6 +1,8 @@
package persistence package persistence
import ( import (
"context"
"github.com/astaxie/beego/orm" "github.com/astaxie/beego/orm"
"github.com/deluan/navidrome/log" "github.com/deluan/navidrome/log"
"github.com/deluan/navidrome/model" "github.com/deluan/navidrome/model"
@ -12,7 +14,8 @@ var _ = Describe("ArtistRepository", func() {
var repo model.ArtistRepository var repo model.ArtistRepository
BeforeEach(func() { BeforeEach(func() {
repo = NewArtistRepository(log.NewContext(nil), orm.NewOrm()) ctx := context.WithValue(log.NewContext(nil), "user", &model.User{ID: "userid"})
repo = NewArtistRepository(ctx, orm.NewOrm())
}) })
Describe("Count", func() { Describe("Count", func() {
@ -36,6 +39,14 @@ var _ = Describe("ArtistRepository", func() {
}) })
}) })
Describe("GetStarred", func() {
It("returns all starred records", func() {
Expect(repo.GetStarred(model.QueryOptions{})).To(Equal(model.Artists{
artistBeatles,
}))
})
})
Describe("GetIndex", func() { Describe("GetIndex", func() {
It("returns the index", func() { It("returns the index", func() {
idx, err := repo.GetIndex() idx, err := repo.GetIndex()

View file

@ -20,9 +20,9 @@ import (
func TestPersistence(t *testing.T) { func TestPersistence(t *testing.T) {
tests.Init(t, true) tests.Init(t, true)
//os.Remove("./test-123.db") os.Remove("./test-123.db")
//conf.Server.DbPath = "./test-123.db" conf.Server.DbPath = "./test-123.db"
conf.Server.DbPath = "file::memory:?cache=shared" //conf.Server.DbPath = "file::memory:?cache=shared"
New() New()
db.EnsureDB() db.EnsureDB()
log.SetLevel(log.LevelCritical) log.SetLevel(log.LevelCritical)
@ -31,7 +31,7 @@ func TestPersistence(t *testing.T) {
} }
var artistKraftwerk = model.Artist{ID: "2", Name: "Kraftwerk", AlbumCount: 1} var artistKraftwerk = model.Artist{ID: "2", Name: "Kraftwerk", AlbumCount: 1}
var artistBeatles = model.Artist{ID: "3", Name: "The Beatles", AlbumCount: 2} var artistBeatles = model.Artist{ID: "3", Name: "The Beatles", AlbumCount: 2, Starred: true}
var testArtists = model.Artists{ var testArtists = model.Artists{
artistKraftwerk, artistKraftwerk,
artistBeatles, artistBeatles,
@ -57,9 +57,11 @@ var testSongs = model.MediaFiles{
songAntenna, songAntenna,
} }
var annAlbumRadioactivity = model.Annotation{AnnID: "1", UserID: "userid", ItemType: model.AlbumItemType, ItemID: "3", Starred: true} var annArtistBeatles = model.Annotation{AnnID: "3", UserID: "userid", ItemType: model.ArtistItemType, ItemID: artistBeatles.ID, Starred: true}
var annSongComeTogether = model.Annotation{AnnID: "2", UserID: "userid", ItemType: model.MediaItemType, ItemID: "2", Starred: true} var annAlbumRadioactivity = model.Annotation{AnnID: "1", UserID: "userid", ItemType: model.AlbumItemType, ItemID: albumRadioactivity.ID, Starred: true}
var annSongComeTogether = model.Annotation{AnnID: "2", UserID: "userid", ItemType: model.MediaItemType, ItemID: songComeTogether.ID, Starred: true}
var testAnnotations = []model.Annotation{ var testAnnotations = []model.Annotation{
annArtistBeatles,
annAlbumRadioactivity, annAlbumRadioactivity,
annSongComeTogether, annSongComeTogether,
} }