45 lines
878 B
Go
45 lines
878 B
Go
package deezer
|
|
|
|
import (
|
|
"encoding/json"
|
|
"path"
|
|
|
|
"github.com/flytam/filenamify"
|
|
)
|
|
|
|
type Playlist struct {
|
|
Results struct {
|
|
Data struct {
|
|
Title string `json:"TITLE"`
|
|
Status int `json:"STATUS"`
|
|
CollabKey string `json:"COLLAB_KEY"`
|
|
} `json:"DATA"`
|
|
Songs struct {
|
|
Data []*Song `json:"data"`
|
|
} `json:"SONGS"`
|
|
} `json:"results"`
|
|
}
|
|
|
|
func (p *Playlist) GetType() string {
|
|
return "Playlist"
|
|
}
|
|
|
|
func (p *Playlist) GetTitle() string {
|
|
return p.Results.Data.Title
|
|
}
|
|
|
|
func (p *Playlist) GetSongs() []*Song {
|
|
return p.Results.Songs.Data
|
|
}
|
|
|
|
func (p *Playlist) GetOutputDir(outputDir string) string {
|
|
p.Results.Data.Title, _ = filenamify.Filenamify(p.Results.Data.Title, filenamify.Options{})
|
|
outputDir = path.Join(outputDir, p.Results.Data.Title)
|
|
|
|
return outputDir
|
|
}
|
|
|
|
func (p *Playlist) Unmarshal(data []byte) error {
|
|
return json.Unmarshal(data, p)
|
|
}
|