-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment2.go
172 lines (148 loc) · 4.58 KB
/
assignment2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
package main
import (
"encoding/json"
"fmt"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute"
"github.com/jamesPEarly/loggly"
"io/ioutil"
"net/http"
"net/url"
"os"
"strconv"
"strings"
"time"
)
type Artist struct {
Name string `json:"name"`
HREF string `json:"href"`
ID string `json:"id"`
}
type Album struct {
Name string `json:"name"`
Artists []Artist `json:"artists"`
ID string `json:"id"`
HREF string `json:"href"`
}
type Track struct {
Name string `json:"name"`
Artists []Artist `json:"artists"`
Album Album `json:"album"`
TrackNum int `json:"track_number"`
ID string `json:"id"`
HREF string `json:"href"`
}
type Playlist struct {
TableID string `json:"unique_id"`
Name string `json:"name"`
Description string `json:"description"`
TrackList struct {
Items []struct {
Song Track `json:"track"`
} `json:"items"`
} `json:"tracks"`
//TrackList Tracks `json:"tracks"`
PlaylistID string `json:"id"`
HREF string `json:"href"`
Followers struct {
Total int `json:"total"`
} `json:"followers"`
}
const endpoint = "https://api.spotify.com/v1/playlists/37i9dQZF1DX4JAvHpjipBk"
var playlist Playlist
func main() {
// Check for environment variables
fmt.Println("JPE--LOGGLY_TOKEN:", os.Getenv("LOGGLY_TOKEN"))
fmt.Println("ACCESS KEY:", os.Getenv("AWS_ACCESS_KEY_ID"))
fmt.Println("SECRET KEY:", os.Getenv("AWS_SECRET_ACCESS_KEY"))
for {
tag := "Spotify"
logglyClient := loggly.New(tag)
client := &http.Client{}
//Get access token using refresh token
token := getToken(client)
//Use access token to make a request
playlist = getPlaylist(token, client)
//Loggly Reporting
logglyClient = loggly.New("Data")
_ = logglyClient.Send("info", "{\n\"name\": "+playlist.Name+"\",\n"+
"\"followers\": "+strconv.Itoa(playlist.Followers.Total)+"\n}")
//Create a DynamoDB session
sess, err := session.NewSession(&aws.Config{
Region: aws.String("us-east-1")},
)
if err != nil {
fmt.Println("Error creating session:")
fmt.Println(err.Error())
os.Exit(1)
}
svc := dynamodb.New(sess)
//Put the playlist info into the DynamoDB table
table(svc)
//Wait 15 minutes before polling again
time.Sleep(15 * time.Minute)
}
}
//Uses Spotify refresh token to get an access token
func getToken(client *http.Client) string {
dat := url.Values{}
dat.Add("grant_type", "refresh_token")
dat.Add("refresh_token", "AQAYxcApQyHMgY5M1q9sBCKRYCXwEF6ez5kvNPlQD1Oyd6_6H0TAxwJLJnJZ5cQWWar47gQMr_06YqFTW0sCIYztQTt1XePiaPURAqZiuhU9eYYfAIBC7sXweODnJ1vIWEeTpA")
req, _ := http.NewRequest(http.MethodPost, "https://accounts.spotify.com/api/token", strings.NewReader(dat.Encode()))
req.Header.Add("Authorization", "Basic ZjNmOGQ3MWNiZDQ2NDYwNGExZTA0MTJlZGMxM2IzOGU6M2MwMGFlNmJjNjVkNGM4ZWE2YTY4YTFhYTE4NDVkY2Y=")
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
}
body, _ := ioutil.ReadAll(res.Body)
stringFile := []byte(string(body))
var data map[string]interface{}
if err := json.Unmarshal(stringFile, &data); err != nil {
fmt.Println(err)
}
token := data["access_token"].(string)
return token
}
//Uses access token to get the "New Music Friday" playlist from Spotify
func getPlaylist(token string, client *http.Client) Playlist {
req, _ := http.NewRequest(http.MethodGet, endpoint, nil)
req.Header.Add("Authorization", "Bearer "+token)
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, _ := client.Do(req)
body, _ := ioutil.ReadAll(res.Body)
//Parse the resulting JSON file
stringFile := []byte(string(body))
//fmt.Println(string(stringFile))
var playlist Playlist
if err := json.Unmarshal(stringFile, &playlist); err != nil {
fmt.Println(err)
}
playlist.TableID = time.Now().String()
fmt.Println("Got playlist")
return playlist
}
//Puts the playlist information on a DynamoDB table
func table(svc *dynamodb.DynamoDB) {
// Add each item to Movies table:
av, err := dynamodbattribute.MarshalMap(playlist)
if err != nil {
fmt.Println("Got error marshalling map:")
fmt.Println(err.Error())
os.Exit(1)
}
// Create item in table Movies
input := &dynamodb.PutItemInput{
Item: av,
TableName: aws.String("SpotifyGrab"),
}
_, err = svc.PutItem(input)
if err != nil {
fmt.Println("Got error calling PutItem:")
fmt.Println(err.Error())
os.Exit(1)
}
fmt.Println("Successfully added '", playlist.Name, "' (", playlist.Followers, ") to SpotifyGrab table")
}