This repository has been archived by the owner on Jan 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjquery.simpleLastFM.js
320 lines (286 loc) · 8.79 KB
/
jquery.simpleLastFM.js
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
* simpleLastFM
*
* A simple jQuery plugin to display what you've been
* listening and scrobbling to Last.fm including
* recent tracks, top albums, weekly charts and plenty more.
*
* Developed by James Fleeting <[email protected]>
* Another project from monkeeCreate <http://monkeecreate.com>
*
* Version 1.0 - Last updated: June 08 2011
*/
(function($) {
$.extend({
simpleLastFM: function(options){
var options = $.extend({
apikey: '', //Get it at http://www.last.fm/api/account
username: '',
method: 'getRecentTracks', //Options: getRecentTracks, getTopAlbums, getTopArtists, getTopTracks, getTopTags, getLovedTracks, getWeeklyAlbumChart, getWeeklyArtistChart, getWeeklyTrackChart, getPlaylists, getInfo
period: 'overall', //Options: overall, 7day, 3month, 6month, 12month
limit: 9, //Max is 200
success: function(response){},
error: function(message){}
}, options);
if(options.apikey == '') {
options.error("No API Key was found.");
return false;
}
if(options.username == '') {
options.error("No username was provided.");
return false;
}
var apiUrl = 'http://ws.audioscrobbler.com/2.0/?method=user.'+options.method+'&user='+options.username+'&limit='+options.limit+'&period='+options.period+'&api_key='+options.apikey+'&format=json&callback=?';
$.getJSON(
apiUrl,
function(data) {
if(data != null && data != '') {
if(data.error) {
options.error('<strong>Error '+data.error+'</strong>: '+data.message);
return false;
} else if(options.method == "getRecentTracks") {
var tracks = [];
$(data.recenttracks.track).each(function() {
var track = {
artist: {
name: this.artist['#text'],
mbid: this.artist.mbid
},
name: this.name,
link: this.url,
album: {
name: this.album['#text'],
mbid: this.album.mbid
},
image: {
small: this.image[0]['#text'],
medium: this.image[1]['#text'],
large: this.image[2]['#text'],
extralarge: this.image[3]['#text']
},
streamable: this.streamable
}
tracks[tracks.length] = track;
});
var data = tracks;
} else if(options.method == "getTopAlbums") {
var albums = [];
$(data.topalbums.album).each(function() {
var album = {
name: this.name,
mbid: this.mbid,
playcount: this.playcount,
link: this.url,
artist: {
name: this.artist.name,
mbid: this.artist.mbid,
link: this.artist.url
},
image: {
small: this.image[0]['#text'],
medium: this.image[1]['#text'],
large: this.image[2]['#text'],
extralarge: this.image[3]['#text']
}
}
albums[albums.length] = album;
});
var data = albums;
} else if(options.method == "getTopArtists") {
var artists = [];
$(data.topartists.artist).each(function() {
var artist = {
name: this.name,
mbid: this.mbid,
playcount: this.playcount,
link: this.url,
streamable: this.streamable,
image: {
small: this.image[0]['#text'],
medium: this.image[1]['#text'],
large: this.image[2]['#text'],
extralarge: this.image[3]['#text']
}
}
artists[artists.length] = artist;
});
var data = artists;
} else if(options.method == "getTopTracks") {
var tracks = [];
$(data.toptracks.track).each(function() {
var track = {
name: this.name,
duration: this.duration,
mbid: this.mbid,
playcount: this.playcount,
link: this.url,
streamable: this.streamable['#text'],
artist: {
name: this.artist.name,
mbid: this.artist.mbid,
link: this.artist.url
},
image: {
small: this.image[0]['#text'],
medium: this.image[1]['#text'],
large: this.image[2]['#text'],
extralarge: this.image[3]['#text']
}
}
tracks[tracks.length] = track;
});
var data = tracks;
} else if(options.method == "getLovedTracks") {
var tracks = [];
$(data.lovedtracks.track).each(function() {
var track = {
name: this.name,
mbid: this.mbid,
date: this.date['#text'],
link: this.url,
streamable: this.streamable['#text'],
artist: {
name: this.artist.name,
mbid: this.artist.mbid,
link: this.artist.url
},
image: {
small: this.image[0]['#text'],
medium: this.image[1]['#text'],
large: this.image[2]['#text'],
extralarge: this.image[3]['#text']
}
}
tracks[tracks.length] = track;
});
var data = tracks;
} else if(options.method == "getWeeklyAlbumChart") {
var albums = [];
/*
TODO Add From & To Dates
*/
$(data.weeklyalbumchart.album).each(function() {
var album = {
name: this.name,
mbid: this.mbid,
playcount: this.playcount,
link: this.url,
artist: {
name: this.artist['#text'],
mbid: this.artist.mbid,
}
}
albums[albums.length] = album;
});
var data = albums;
} else if(options.method == "getWeeklyArtistChart") {
var artists = [];
/*
TODO Add From & To Dates
*/
$(data.weeklyartistchart.artist).each(function() {
var artist = {
name: this.name,
mbid: this.mbid,
playcount: this.playcount,
link: this.url
}
artists[artists.length] = artist;
});
var data = artists;
} else if(options.method == "getWeeklyTrackChart") {
var tracks = [];
/*
TODO Add From & To Dates
*/
$(data.weeklytrackchart.track).each(function() {
var artist = {
name: this.name,
mbid: this.mbid,
playcount: this.playcount,
link: this.url,
artist: {
name: this.artist['#text'],
mbid: this.artist.mbid,
},
image: {
small: this.image[0]['#text'],
medium: this.image[1]['#text'],
large: this.image[2]['#text']
}
}
tracks[tracks.length] = track;
});
var data = tracks;
} else if(options.method == "getTopTags") {
var tags = [];
$(data.toptags.tag).each(function() {
var tag = {
name: this.name,
count: this.count,
link: this.url
}
tags[tags.length] = tag;
});
var data = tags;
} else if(options.method == "getPlaylists") {
var playlists = [];
$(data.playlists.playlist).each(function() {
var playlist = {
id: this.id,
name: this.title,
description: this.description,
date: this.date,
size: this.size,
duration: this.duration,
streamable: this.streamable,
creatorLink: this.creator,
link: this.url,
image: {
small: this.image[0]['#text'],
medium: this.image[1]['#text'],
large: this.image[2]['#text'],
extralarge: this.image[3]['#text']
}
}
playlists[playlists.length] = playlist;
})
var data = playlists;
} else if(options.method == "getInfo") {
var info = {
username: data.user.name,
name: data.user.realname,
image: {
small: data.user.image[0]['#text'],
medium: data.user.image[1]['#text'],
large: data.user.image[2]['#text'],
extralarge: data.user.image[3]['#text']
},
link: data.user.url,
id: data.user.id,
country: data.user.country,
age: data.user.age,
gender: data.user.gender,
subscriber: data.user.subscriber,
playcount: data.user.playcount,
playlists: data.user.playlists,
registered: {
time: data.user.registered['#text'],
unixtime: data.user.registered.unixtime
}
}
var data = info;
} else {
options.error("There was an error. Please try again.");
return false;
}
options.success(data);
} else {
options.error("There was an error. Please try again.");
}
}
);
return this;
}
});
})(jQuery);