mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add ExternalInformation core service (not a great name, I know)
This commit is contained in:
parent
19ead8f7e8
commit
07535e1518
14 changed files with 313 additions and 38 deletions
|
@ -66,6 +66,18 @@ func (r *artistRepository) Get(id string) (*model.Artist, error) {
|
|||
return &res[0], nil
|
||||
}
|
||||
|
||||
func (r *artistRepository) FindByName(name string) (*model.Artist, error) {
|
||||
sel := r.selectArtist().Where(Eq{"name": name})
|
||||
var res model.Artists
|
||||
if err := r.queryAll(sel, &res); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if len(res) == 0 {
|
||||
return nil, model.ErrNotFound
|
||||
}
|
||||
return &res[0], nil
|
||||
}
|
||||
|
||||
func (r *artistRepository) GetAll(options ...model.QueryOptions) (model.Artists, error) {
|
||||
sel := r.selectArtist(options...)
|
||||
res := model.Artists{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue