-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
294 lines (267 loc) · 6.91 KB
/
index.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
(function(){
"use strict";
// constructor
function NowPlaying(opts){
// should we set the doc title to current song?
this.shouldSetTitle = true;
// extend all options passed in to this
$.extend(this, opts);
// add playqueue and audio listeners
this.addListeners();
// current song
this.song = {};
// current title
this.title = null;
// cache offline scrobbles to send
// when we are back online
this.offlineScrobbles = [];
// extend event emitter
var eventEmitter;
if(typeof module !== "undefined"){
var EventEmitter = require('event-emitter');
eventEmitter = new EventEmitter();
}
else{
eventEmitter = new window.EventEmitter();
}
$.extend(this, eventEmitter);
}
// add playqueue and audio listeners
NowPlaying.prototype.addListeners = function(){
if (this.playQueue){
this.playQueue.addEventListener(
"playing",
this.onStart.bind(this),
false
);
this.playQueue.addEventListener(
"songHalf",
this.onHalf.bind(this),
false
);
this.playQueue.addEventListener(
"stop",
this.onStop.bind(this),
false
);
this.playQueue.addEventListener(
"error",
this.onError.bind(this),
false
);
this.audio = this.playQueue.audio;
}
if(this.audio){
this.audio.addEventListener(
"pause",
this.setTitle.bind(this),
false
);
this.audio.addEventListener(
"play",
this.setTitle.bind(this),
false
);
};
document.addEventListener(
'online',
this.onOnline.bind(this),
false
);
}
// xhr object with data we will send to API
NowPlaying.prototype.getRequestObj = function(url, eventType){
if (this.song.id){
url = url + '/' + this.song.id;
if(eventType === 'error'){
url = url + '/error';
}
}
var data = {};
if (this.song.title){
data.title = this.song.title;
}
if (this.song.artist){
data.artist = this.song.artist;
}
if (this.song.album){
data.album = this.song.album;
}
if (this.song.source){
data.source = this.song.source;
}
if (this.song.context){
data.context = this.song.context;
}
if (this.clientId){
data.client_id = this.clientId;
}
if (this.song.play_token){
data.play_token = this.song.play_token;
}
return {
'url': url,
'success': function(data){
this.serverSong = data.song;
this.emit(eventType, this);
}.bind(this),
'type': "POST",
'data': data
}
}
// listener for when song starts
NowPlaying.prototype.onStart = function(e){
this.start(e.target.song);
}
// manually call this when song starts (if listener is not on)
NowPlaying.prototype.start = function(song){
this.song = song;
this.setTitle();
if(this.nowPlayingUrl !== null){
var requestObj = this.getRequestObj(
this.nowPlayingUrl,
'start'
);
if(navigator.onLine === true){
$.ajax(
requestObj
);
}
else{
requestObj.success({
'song': this.song
});
}
}
}
// listener for when song reaches halfway mark
NowPlaying.prototype.onHalf = function(e){
this.half(e.target.song);
}
// manually call this when song reaches halfway mark (if listener is not on)
NowPlaying.prototype.half = function(song){
this.song = song;
if(this.scrobbleUrl !== null){
var requestObj = this.getRequestObj(
this.scrobbleUrl,
'half'
);
if(navigator.onLine === true){
$.ajax(
requestObj
);
}
else{
requestObj.success({
'song': this.song
});
requestObj.data.timestamp = Math.round(new Date().getTime() / 1000);
this.offlineScrobbles.push(requestObj);
}
}
}
// listener for when there is a song load error
NowPlaying.prototype.onError = function(e){
this.error(e.target.song);
}
// manually call this when there is a song load error
NowPlaying.prototype.error = function(song){
if(song.id){
this.song = song;
if(this.errorUrl !== null){
var requestObj = this.getRequestObj(
this.errorUrl,
'error'
);
if(navigator.onLine === true){
$.ajax(
requestObj
);
}
else{
requestObj.success({
'song': this.song
});
}
}
}
}
// when PlayQueue fires 'stop' event, set page title back to original state
NowPlaying.prototype.onStop = function(e){
if (this.pageTitle){
this.title = this.pageTitle;
}
else {
this.title = "";
}
this.emit('titleChanged',
{
'title': this.title
}
);
}
// convenience method to get page title
NowPlaying.prototype.getTitle = function(){
return this.title;
}
// set the page title. Check if song is playing, paused or stopped
NowPlaying.prototype.setTitle = function(){
var title = "";
if(this.song.title){
title = this.song.title;
}
if(this.song.artist){
title += " by " + this.song.artist;
}
if(this.pageTitle){
title += " - " + this.pageTitle;
}
this.title = this.replaceHTMLEncoding(title);
if(this.shouldSetTitle == true){
document.title = this.title;
}
this.emit('titleChanged',
{
'title': this.title
}
);
}
// reset page title to original state
NowPlaying.prototype.resetTitle = function(){
if(this.pageTitle){
document.title = this.pageTitle;
}
}
// need to encode some chars for page title in browser
NowPlaying.prototype.replaceHTMLEncoding = function(str){
str = str.replace(/“/g, '"');
str = str.replace(/”/g, '"');
str = str.replace(/’/g, "'");
str = str.replace(/…/g, "...");
str = str.replace(/&/g, "&");
return str;
}
// listener for 'online' event.
// Send any un-sent scrobbles
NowPlaying.prototype.onOnline = function(e){
if(navigator.onLine === true){
$.each(
this.offlineScrobbles,
function(index, requestObj){
requestObj.success = function(){};
$.ajax(
requestObj
);
}
);
this.offlineScrobbles = [];
}
}
// check if we've got require
if(typeof module !== "undefined"){
module.exports = NowPlaying;
}
else{
window.NowPlaying = NowPlaying;
}
}());