mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 12:37:37 +03:00
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package agents
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/navidrome/navidrome/consts"
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
const PlaceholderAgentName = "placeholder"
|
|
|
|
const (
|
|
placeholderArtistImageSmallUrl = consts.URLPathUI + "/artist-placeholder.webp"
|
|
placeholderArtistImageMediumUrl = consts.URLPathUI + "/artist-placeholder.webp"
|
|
placeholderArtistImageLargeUrl = consts.URLPathUI + "/artist-placeholder.webp"
|
|
placeholderBiography = "Biography not available"
|
|
)
|
|
|
|
type placeholderAgent struct{}
|
|
|
|
func placeholdersConstructor(_ model.DataStore) Interface {
|
|
return &placeholderAgent{}
|
|
}
|
|
|
|
func (p *placeholderAgent) AgentName() string {
|
|
return PlaceholderAgentName
|
|
}
|
|
|
|
func (p *placeholderAgent) GetBiography(ctx context.Context, id, name, mbid string) (string, error) {
|
|
return placeholderBiography, nil
|
|
}
|
|
|
|
func (p *placeholderAgent) GetImages(ctx context.Context, id, name, mbid string) ([]ArtistImage, error) {
|
|
return []ArtistImage{
|
|
{placeholderArtistImageLargeUrl, 300},
|
|
{placeholderArtistImageMediumUrl, 174},
|
|
{placeholderArtistImageSmallUrl, 64},
|
|
}, nil
|
|
}
|
|
|
|
func init() {
|
|
Register(PlaceholderAgentName, placeholdersConstructor)
|
|
}
|