mirror of
https://github.com/navidrome/navidrome.git
synced 2026-04-03 06:41:01 +00:00
78 lines
1.7 KiB
Go
78 lines
1.7 KiB
Go
package persistence
|
|
|
|
import (
|
|
"github.com/astaxie/beego/orm"
|
|
"github.com/cloudsonic/sonic-server/model"
|
|
)
|
|
|
|
// This is used to isolate Storm's struct tags from the domain, to keep it agnostic of persistence details
|
|
type Artist struct {
|
|
ID string `orm:"pk;column(id)"`
|
|
Name string `orm:"index"`
|
|
AlbumCount int `orm:"column(album_count)"`
|
|
}
|
|
|
|
type artistRepository struct {
|
|
searchableRepository
|
|
}
|
|
|
|
func NewArtistRepository() model.ArtistRepository {
|
|
r := &artistRepository{}
|
|
r.tableName = "artist"
|
|
return r
|
|
}
|
|
|
|
func (r *artistRepository) Put(a *model.Artist) error {
|
|
ta := Artist(*a)
|
|
return withTx(func(o orm.Ormer) error {
|
|
return r.put(o, a.ID, a.Name, &ta)
|
|
})
|
|
}
|
|
|
|
func (r *artistRepository) Get(id string) (*model.Artist, error) {
|
|
ta := Artist{ID: id}
|
|
err := Db().Read(&ta)
|
|
if err == orm.ErrNoRows {
|
|
return nil, model.ErrNotFound
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
a := model.Artist(ta)
|
|
return &a, nil
|
|
}
|
|
|
|
func (r *artistRepository) PurgeInactive(activeList model.Artists) error {
|
|
return withTx(func(o orm.Ormer) error {
|
|
_, err := r.purgeInactive(o, activeList, func(item interface{}) string {
|
|
return item.(model.Artist).ID
|
|
})
|
|
return err
|
|
})
|
|
}
|
|
|
|
func (r *artistRepository) Search(q string, offset int, size int) (model.Artists, error) {
|
|
if len(q) <= 2 {
|
|
return nil, nil
|
|
}
|
|
|
|
var results []Artist
|
|
err := r.doSearch(r.tableName, q, offset, size, &results, "name")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return r.toArtists(results), nil
|
|
}
|
|
|
|
func (r *artistRepository) toArtists(all []Artist) model.Artists {
|
|
result := make(model.Artists, len(all))
|
|
for i, a := range all {
|
|
result[i] = model.Artist(a)
|
|
}
|
|
return result
|
|
}
|
|
|
|
var _ model.ArtistRepository = (*artistRepository)(nil)
|
|
var _ = model.Artist(Artist{})
|