forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bandcamp.js
108 lines (90 loc) · 2.43 KB
/
bandcamp.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
/*
* Chrome-Last.fm-Scrobbler BandCamp.com Connector by George Pollard
* (loosely based on Yasin Okumus's MySpace connector)
* v0.1
*/
var lastTrack = null;
$(function(){
// bind page unload function to discard current "now listening"
cancel();
});
var durationPart = ".track_info .time";
var durationRegex = /[ \n]*(\d+):(\d+)[ \n]*\/[ \n]*(\d+):(\d+)[ \n]*/;
function parseDuration(match){
try{
var m = durationRegex.exec(match);
return {current: parseInt(m[1],10)*60 + parseInt(m[2],10), total: parseInt(m[3],10)*60 + parseInt(m[4],10)};
}catch(err){
return 0;
}
}
function parseArtist()
{
var byLine = "";
if (isAlbum())
{
byLine = $("dt.hiddenAccess:contains('band name') ~ dd").text();
}
else // isTrack
{
byLine = $(".albumTitle nobr").text();
}
var artist = $.trim($.trim(byLine).substring(2));
if(!artist) {
artist = $('span[itemprop=byArtist]').text();
}
return artist;
}
function parseTitle()
{
if (isAlbum())
{
return $(".track_info .title").first().text();
}
else //isTrack
{
return $(".trackTitle").first().text();
}
}
function isAlbum()
{
return $('.trackView[itemtype="http://schema.org/MusicAlbum"]').length > 0;
}
function cancel(){
$(window).unload(function() {
// reset the background scrobbler song data
chrome.extension.sendRequest({type: 'reset'});
return true;
});
}
console.log('BandCampScrobbler: loaded');
$(durationPart).bind('DOMSubtreeModified',function(e){
var duration = parseDuration($(durationPart).text());
//console.log('duration - ' + duration.current + ' / ' + duration.total);
if(duration.current > 0) { // it's playing
var artist = parseArtist();
var track = parseTitle();
var dashIndex = track.indexOf('-');
if (artist == 'Various Artists' && dashIndex >= 0)
{
artist = track.substring(0, dashIndex);
track = track.substring(dashIndex + 1);
}
artist = $.trim(artist);
track = $.trim(track);
if (lastTrack != track)
{
lastTrack = track;
//console.log("BandCampScrobbler: scrobbling '" + track + "' by " + artist);
chrome.extension.sendRequest({type: 'validate', artist: artist, track: track}, function(response) {
if (response != false){
chrome.extension.sendRequest({type: 'nowPlaying', artist: response.artist, track: response.track, duration: duration.total});
}
else
{
chrome.extension.sendRequest({type: 'nowPlaying', duration: duration.total});
}
});
}
}
});