Add meta tags to show cover and share description in social platforms

This commit is contained in:
Deluan 2023-01-24 15:35:23 -05:00
parent cab43c89e6
commit 69b36c75a5
5 changed files with 54 additions and 19 deletions

View file

@ -1,7 +1,10 @@
package model
import (
"strings"
"time"
"github.com/navidrome/navidrome/utils/number"
)
type Share struct {
@ -21,6 +24,25 @@ type Share struct {
UpdatedAt time.Time `structs:"updated_at" json:"updatedAt,omitempty"`
Tracks MediaFiles `structs:"-" json:"tracks,omitempty" orm:"-"`
Albums Albums `structs:"-" json:"albums,omitempty" orm:"-"`
URL string `structs:"-" json:"-" orm:"-"`
ImageURL string `structs:"-" json:"-" orm:"-"`
}
func (s Share) CoverArtID() ArtworkID {
ids := strings.SplitN(s.ResourceIDs, ",", 2)
if len(ids) == 0 {
return ArtworkID{}
}
switch s.ResourceType {
case "album":
return Album{ID: ids[0]}.CoverArtID()
case "playlist":
return Playlist{ID: ids[0]}.CoverArtID()
case "artist":
return Artist{ID: ids[0]}.CoverArtID()
}
rnd := number.RandomInt64(int64(len(s.Tracks)))
return s.Tracks[rnd].CoverArtID()
}
type Shares []Share