-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathspotify.go
50 lines (41 loc) · 1.11 KB
/
spotify.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package main
import (
"encoding/json"
"io/ioutil"
"log"
"net/http"
"strconv"
)
const spotifyUrl = "https://api.spotify.com/v1"
func getTrackDetails(ID string) *Track {
t := &Track{}
resp, err := http.Get(spotifyUrl + "/tracks/" + ID)
if err != nil {
log.Panic(err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Panic(err)
}
var trackDetails map[string]interface{}
err = json.Unmarshal(body, &trackDetails)
if err != nil {
log.Panic(err)
}
//log.Println("Spotify Track Details: ", t)
//log.Println("Track Details:", trackDetails)
if trackDetails != nil {
t.Album = trackDetails["album"].(map[string]interface{})["name"].(string)
t.Artist = trackDetails["artists"].([]interface{})[0].(map[string]interface{})["name"].(string)
t.Id = ID
t.AlbumArt = trackDetails["album"].(map[string]interface{})["images"].([]interface{})[0].(map[string]interface{})["url"].(string)
t.Name = trackDetails["name"].(string)
duration := trackDetails["duration_ms"].(float64)
if err != nil {
log.Panic(err)
}
t.Time = strconv.Itoa(int(duration) / 1000)
}
return t
}