Created
June 18, 2011 05:14
-
-
Save cwholt/1032827 to your computer and use it in GitHub Desktop.
turntable.fm download current playing song (adds to mouseover "Add song to:")
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:var cwh;for(i in turntable)cwh||(cwh=i);$('#songboard_add').append($('<div>',{'class':'btn disk'}).css({'background-image':'url(http://s3.firstrule.net/cwh/cwh_ttfm_disk_dark.png)'}).click(function(x){window.open(location.protocol+"//"+location.host+"/getfile/?roomid="+turntable[cwh]['roomId']+"&rand="+Math.random()+"&fileid="+turntable[cwh]['currentSong']['_id']+"&downloadKey="+$.sha1(turntable[cwh]['currentSong']['_id']+turntable[cwh]['roomId']))})) |
dude, all you need is rand and roomid, other stuff there is to obfuscate.
akivab, i'm simply duplicating what's in their code. whether or not they use the query strings "rand" -- which is most likely for cache busting -- or "downloadKey" now or plan on implementing additional security in the future on the backend is beyond my scope, so i thought it best to leave them in.
i think this is broken now
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it's javascript. you can copy the code and save it as a bookmark, then click the bookmark when in a room on turntable. when you mouseover the playing song you should see a new disk icon in the "Add song to:". click the floppy disk and it will open a direct link to the song playing.