feat(song): get media data

This commit is contained in:
Mathis Maquenne
2024-10-09 17:13:57 +02:00
parent 47ebaf143b
commit 258671004f
2 changed files with 69 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
package models
type Media []struct {
Type string `json:"media_type"`
Cipher Cipher `json:"cipher"`
Format string `json:"format"`
Sources []Source `json:"sources"`
}
type Cipher struct {
Type string `json:"type"`
}
type Source struct {
URL string `json:"url"`
Provider string `json:"provider"`
}
type MediaResponse struct {
Errors []MediaError `json:"errors"`
Data []struct {
Media Media `json:"media"`
}
}
type MediaError struct {
Code int `json:"code"`
Message string `json:"message"`
}
+40
View File
@@ -0,0 +1,40 @@
package song
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"github.com/mathismqn/godeez/internal/models"
)
func GetMedia(s models.Song) (*models.MediaResponse, error) {
licenseToken := ""
reqBody := fmt.Sprintf(`{"license_token":"%s","media":[{"type":"FULL","formats":[{"cipher":"BF_CBC_STRIPE","format":"FLAC"}]}],"track_tokens":["%s"]}`, licenseToken, s.Token)
resp, err := http.Post("https://media.deezer.com/v1/get_url", "application/json", bytes.NewBuffer([]byte(reqBody)))
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
var media models.MediaResponse
err = json.Unmarshal(body, &media)
if err != nil {
return nil, err
}
if len(media.Errors) > 0 {
if media.Errors[0].Code == 1000 {
return nil, fmt.Errorf("invalid license token")
}
return nil, fmt.Errorf("%s", media.Errors[0].Message)
}
return &media, nil
}