mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Add meta tags to show cover and share description in social platforms
This commit is contained in:
parent
cab43c89e6
commit
69b36c75a5
5 changed files with 54 additions and 19 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue