-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetlist_fm.go
executable file
·277 lines (251 loc) · 7.9 KB
/
setlist_fm.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"strconv"
"strings"
"time"
)
type ArtistObject struct {
MbId string `json:"mbid"`
TmId *int `json:"tmid,omitempty"`
Name string `json:"name"`
SortName string `json:"sortName"`
Disambiguation string `json:"disambiguation"`
Url string `json:"url"`
}
type CoordsObject struct {
Lat float32 `json:"lat"`
Long float32 `json:"long"`
}
type CountryObject struct {
Code string `json:"code"`
Name string `json:"name"`
}
type CityObject struct {
Id string `json:"id"`
Name string `json:"name"`
State string `json:"state"`
StateCode string `json:"stateCode"`
Coords CoordsObject `json:"coords"`
Country CountryObject `json:"country"`
}
type VenueObject struct {
Id string `json:"id"`
Name string `json:"name"`
City CityObject `json:"city"`
Url string `json:"url"`
}
type TourObject struct {
Name string `json:"name"`
}
type SongObject struct {
Name string `json:"name"`
With *ArtistObject `json:"with,omitempty"`
Cover *ArtistObject `json:"artist,omitempty"`
Info *string `json:"info,omitempty"`
Tape *bool `json:"tape,omitempty"`
}
type SetObject struct {
Name string `json:"name"`
Encore int `json:"encore"`
Song []SongObject `json:"song"`
}
type SetsList struct {
Set []SetObject `json:"set"`
}
type SetlistObject struct {
Id string `json:"id"`
VersionId string `json:"versionId"`
EventDate string `json:"eventDate"`
LastUpdated string `json:"lastUpdated"`
Artist ArtistObject `json:"artist"`
Venue VenueObject `json:"venue"`
Tour *TourObject `json:"tour,omitempty"`
Sets SetsList `json:"sets"`
Info *string `json:"info,omitempty"`
Url string `json:"url"`
}
type ResponseSetlist struct {
Type string `json:"type"`
ItemsPerPage int `json:"itemsPerPage"`
Page int `json:"page"`
Total int `json:"total"`
Setlist []SetlistObject `json:"setlist"`
}
type EventObject struct {
Id string
Date string
Venue string
City string
State string
Artist string
Tour string
SongsPlayed int
Link string
}
type EventsList struct {
Event []EventObject
}
func (eventlist *EventsList) AddEvent(event EventObject) []EventObject {
eventlist.Event = append(eventlist.Event, event)
return eventlist.Event
}
func check(err error, note string) {
if err != nil {
log.Println("Checking for error with " + note)
log.Println(err)
}
}
func getEventsAttendedByUser(user, apiKey string) (events ResponseSetlist) {
endpoint := "attended"
page := 1
// build out the url to be requested
apiUrl, err := url.Parse("https://api.setlist.fm")
check(err, "url.Parse")
apiUrl.Path = "rest/1.0/user/" + user + "/" + endpoint
apiUrlQs := url.Values{}
apiUrlQs.Set("p", strconv.Itoa(page))
apiUrl.RawQuery = apiUrlQs.Encode()
// build out the request
req, err := http.NewRequest("GET", apiUrl.String(), nil)
check(err, "http.NewRequest")
req.Header.Set("Accept", "application/json")
req.Header.Set("x-api-key", apiKey)
// execute the request
client := &http.Client{}
resp, err := client.Do(req)
check(err, "client.Do")
// grab the data
fullBody, err := ioutil.ReadAll(resp.Body)
check(err, "ioutil.ReadAll")
// close the resp.Body
err = resp.Body.Close()
check(err, "Problems closing resp.Body")
// parse pagination things
var pagination = new(ResponseSetlist)
err = json.Unmarshal(fullBody, &pagination)
check(err, "Unmarshal pagination")
var pages int
if pagination.Total != pagination.ItemsPerPage*pagination.Total/pagination.ItemsPerPage {
pages = pagination.Total / pagination.ItemsPerPage
} else {
pages = pagination.Total/pagination.ItemsPerPage + 1
}
log.Println(endpoint + " - page 1 of " + strconv.Itoa(pages))
var MainData ResponseSetlist
err = json.Unmarshal(fullBody, &MainData)
check(err, "Unmarshal "+endpoint)
for page := 2; page <= pages; page++ {
log.Println(endpoint + " - page " + strconv.Itoa(page) + " of " + strconv.Itoa(pages))
// build out the url to be requested
apiUrl, err := url.Parse("https://api.setlist.fm")
check(err, "url.Parse")
apiUrl.Path = "rest/1.0/user/" + user + "/" + endpoint
apiUrlQs := url.Values{}
apiUrlQs.Set("p", strconv.Itoa(page))
apiUrl.RawQuery = apiUrlQs.Encode()
// build out the request
req, err := http.NewRequest("GET", apiUrl.String(), nil)
check(err, "http.NewRequest")
req.Header.Set("Accept", "application/json")
req.Header.Set("x-api-key", apiKey)
// execute the request
client := &http.Client{}
resp, err := client.Do(req)
check(err, "client.Do")
// grab the data
fullBody, err := ioutil.ReadAll(resp.Body)
check(err, "ioutil.ReadAll")
// close the resp.Body
err = resp.Body.Close()
check(err, "Problems closing resp.Body")
var tempData ResponseSetlist
err = json.Unmarshal(fullBody, &tempData)
check(err, "Unmarshal "+endpoint)
MainData.Setlist = append(MainData.Setlist, tempData.Setlist...)
time.Sleep(150 * time.Millisecond)
}
return MainData
}
func cleanString(s string) (cleaned string) {
s = strings.ToLower(s)
s = strings.ReplaceAll(s, " ", "-")
s = strings.ReplaceAll(s, "'", "")
s = strings.ReplaceAll(s, "&", "+")
s = strings.ReplaceAll(s, "”", "")
s = strings.ReplaceAll(s, "“", "")
s = strings.ReplaceAll(s, "\"", "")
cleaned = s
return cleaned
}
func writeJsonEventsList(events ResponseSetlist, path string) {
var el = new(EventsList)
for _, event := range events.Setlist {
eventDate, _ := time.Parse("02-01-2006", event.EventDate)
eventDateString := fmt.Sprint(eventDate.Format("2006-01-02"))
//eventYearString := fmt.Sprint(eventDate.Format("2006"))
//relativeLink := "/event/" + eventYearString + "/" + cleanString(event.Artist.Name) + "/"
e := EventObject{
Id: event.Id,
Date: eventDateString,
Venue: event.Venue.Name,
City: event.Venue.City.Name,
State: event.Venue.City.State,
Artist: event.Artist.Name,
//Tour: tour,
//SongsPlayed: len(event.Sets[].Set),
Link: event.Url}
el.AddEvent(e)
}
fileout := path + "list.json"
_ = os.Remove(fileout) // remove from prior run
//check(err, "Cannot remove the file")
f, err := os.OpenFile(fileout, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
check(err, "Cannot create the file")
prettyjson, _ := json.MarshalIndent(el, "", "\t")
_, err = f.Write([]byte(prettyjson))
check(err, "Cannot write json")
err = f.Close()
check(err, "Problem closing the file")
}
func writeJsonEventFiles(events ResponseSetlist, path string) {
for _, event := range events.Setlist {
// write event-artist.json
eventDate, _ := time.Parse("02-01-2006", event.EventDate)
eventDateString := fmt.Sprint(eventDate.Format("2006-01-02"))
fileout := path + eventDateString + "-" + cleanString(event.Artist.Name) + ".json"
_ = os.Remove(fileout) // remove from prior run
//check(err, "Cannot remove the file")
f, err := os.OpenFile(fileout, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
check(err, "Cannot create the file")
prettyjson, _ := json.MarshalIndent(event, "", "\t")
_, err = f.Write([]byte(prettyjson))
check(err, "Cannot write json")
err = f.Close()
check(err, "Problem closing the file")
}
}
func main() {
type Configuration struct {
User string `json:"user"`
ApiKey string `json:"apiKey"`
OutputPath string `json:"outputPath"`
}
file, _ := os.Open("configuration.json")
defer file.Close()
decoder := json.NewDecoder(file)
configuration := Configuration{}
err := decoder.Decode(&configuration)
if err != nil {
fmt.Println("error:", err)
}
EventArtists := getEventsAttendedByUser(configuration.User, configuration.ApiKey)
writeJsonEventsList(EventArtists, configuration.OutputPath)
writeJsonEventFiles(EventArtists, configuration.OutputPath)
}