2011-07-26 18:04:57 +04:00
|
|
|
var PlayList={
|
|
|
|
urlBase:OC.linkTo('media','ajax/api.php')+'?action=play&path=',
|
|
|
|
current:-1,
|
|
|
|
items:[],
|
|
|
|
player:null,
|
2011-08-01 18:43:02 +04:00
|
|
|
volume:0.8,
|
2011-07-26 18:04:57 +04:00
|
|
|
next:function(){
|
|
|
|
var next=PlayList.current+1;
|
|
|
|
if(next>=PlayList.items.length){
|
|
|
|
next=0;
|
|
|
|
}
|
|
|
|
PlayList.play(next);
|
2011-07-30 01:53:22 +04:00
|
|
|
PlayList.render();
|
2011-07-26 18:04:57 +04:00
|
|
|
},
|
|
|
|
previous:function(){
|
|
|
|
var next=PlayList.current-1;
|
|
|
|
if(next<0){
|
|
|
|
next=PlayList.items.length-1;
|
|
|
|
}
|
|
|
|
PlayList.play(next);
|
2011-07-30 01:53:22 +04:00
|
|
|
PlayList.render();
|
2011-07-26 18:04:57 +04:00
|
|
|
},
|
2011-08-01 18:43:02 +04:00
|
|
|
play:function(index,time,ready){
|
2011-07-26 18:04:57 +04:00
|
|
|
if(index==null){
|
|
|
|
index=PlayList.current;
|
|
|
|
}
|
|
|
|
if(index>-1 && index<PlayList.items.length){
|
|
|
|
PlayList.current=index;
|
|
|
|
if(PlayList.player){
|
|
|
|
if(PlayList.player.data('jPlayer').options.supplied!=PlayList.items[index].type){//the the audio type changes we need to reinitialize jplayer
|
|
|
|
PlayList.player.jPlayer("destroy");
|
2011-08-01 18:43:02 +04:00
|
|
|
PlayList.init(PlayList.items[index].type,function(){PlayList.play(null,time,eady)});
|
2011-07-26 18:04:57 +04:00
|
|
|
}else{
|
|
|
|
PlayList.player.jPlayer("setMedia", PlayList.items[PlayList.current]);
|
2011-07-30 02:21:24 +04:00
|
|
|
PlayList.items[index].playcount++;
|
2011-08-01 18:43:02 +04:00
|
|
|
PlayList.player.jPlayer("play",time);
|
2011-08-01 03:56:45 +04:00
|
|
|
localStorage.setItem(oc_current_user+'oc_playlist_current',index);
|
|
|
|
if(index>0){
|
2011-08-01 03:25:34 +04:00
|
|
|
var previous=index-1;
|
|
|
|
}else{
|
|
|
|
var previous=PlayList.items.length-1;
|
|
|
|
}
|
|
|
|
if(index+1<PlayList.items.length){
|
|
|
|
var next=index+1;
|
|
|
|
}else{
|
|
|
|
var next=0;
|
|
|
|
}
|
|
|
|
$('.jp-next').attr('title',PlayList.items[next].name);
|
|
|
|
$('.jp-previous').attr('title',PlayList.items[previous].name);
|
2011-08-01 03:12:28 +04:00
|
|
|
if (typeof Collection !== 'undefined') {
|
2011-07-30 02:21:24 +04:00
|
|
|
Collection.registerPlay();
|
|
|
|
}
|
2011-08-01 18:19:51 +04:00
|
|
|
if(ready){
|
|
|
|
ready();
|
|
|
|
}
|
2011-07-26 18:04:57 +04:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
PlayList.init(PlayList.items[index].type,PlayList.play);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
init:function(type,ready){
|
|
|
|
if(!PlayList.player){
|
|
|
|
$(".jp-previous").click(function() {
|
|
|
|
PlayList.previous();
|
|
|
|
$(this).blur();
|
|
|
|
PlayList.render();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
$(".jp-next").click(function() {
|
|
|
|
PlayList.next();
|
|
|
|
$(this).blur();
|
|
|
|
PlayList.render();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
PlayList.player=$('#jp-interface div.player');
|
|
|
|
}
|
|
|
|
$(PlayList.player).jPlayer({
|
|
|
|
ended:PlayList.next,
|
2011-08-01 18:19:51 +04:00
|
|
|
pause:function(){
|
|
|
|
localStorage.setItem(oc_current_user+'oc_playlist_playing','false');
|
|
|
|
},
|
|
|
|
play:function(){
|
|
|
|
localStorage.setItem(oc_current_user+'oc_playlist_playing','true');
|
|
|
|
},
|
2011-08-01 18:43:02 +04:00
|
|
|
timeupdate:function(){
|
|
|
|
var time=Math.round(PlayList.player.data('jPlayer').status.currentTime);
|
|
|
|
localStorage.setItem(oc_current_user+'oc_playlist_time',time);
|
|
|
|
},
|
|
|
|
volumechange:function(){
|
|
|
|
var volume=PlayList.player.data('jPlayer').options.volume*100;
|
|
|
|
localStorage.setItem(oc_current_user+'oc_playlist_volume',volume);
|
|
|
|
},
|
2011-07-26 18:04:57 +04:00
|
|
|
supplied:type,
|
|
|
|
ready:function(){
|
2011-08-01 03:12:28 +04:00
|
|
|
PlayList.load();
|
2011-07-26 18:04:57 +04:00
|
|
|
if(ready){
|
|
|
|
ready();
|
|
|
|
}
|
|
|
|
},
|
2011-08-01 18:43:02 +04:00
|
|
|
volume:PlayList.volume,
|
2011-07-26 18:04:57 +04:00
|
|
|
cssSelectorAncestor:'#jp-interface',
|
2011-07-27 18:38:23 +04:00
|
|
|
swfPath:OC.linkTo('media','js'),
|
2011-07-26 18:04:57 +04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
add:function(song){
|
2011-07-30 01:53:22 +04:00
|
|
|
if(!song){
|
|
|
|
return;
|
|
|
|
}
|
2011-07-26 18:04:57 +04:00
|
|
|
if(song.substr){//we are passed a string, asume it's a url to a song
|
|
|
|
PlayList.addFile(song);
|
|
|
|
}
|
|
|
|
if(song.albums){//a artist object was passed, add all albums inside it
|
|
|
|
$.each(song.albums,function(index,album){
|
|
|
|
PlayList.add(album);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if(song.songs){//a album object was passed, add all songs inside it
|
|
|
|
$.each(song.songs,function(index,song){
|
|
|
|
PlayList.add(song);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if(song.song_name){
|
|
|
|
var type=musicTypeFromFile(song.song_path);
|
2011-07-30 01:53:22 +04:00
|
|
|
var item={name:song.song_name,type:type,artist:song.artist_name,album:song.album_name,length:song.song_length,playcount:song.song_playcount};
|
2011-07-26 18:04:57 +04:00
|
|
|
item[type]=PlayList.urlBase+encodeURIComponent(song.song_path);
|
|
|
|
PlayList.items.push(item);
|
|
|
|
}
|
2011-08-01 03:12:28 +04:00
|
|
|
PlayList.save();
|
2011-07-26 18:04:57 +04:00
|
|
|
},
|
|
|
|
addFile:function(path){
|
|
|
|
var type=musicTypeFromFile(path);
|
2011-08-01 02:32:44 +04:00
|
|
|
var item={name:'unknown',artist:'unknown',album:'unknwon',type:type};
|
|
|
|
$.getJSON(OC.filePath('media','ajax','api.php')+'?action=get_path_info&path='+encodeURIComponent(path),function(song){
|
|
|
|
item.name=song.song_name;
|
|
|
|
item.artist=song.artist;
|
|
|
|
item.album=song.album;
|
|
|
|
});
|
2011-07-26 18:04:57 +04:00
|
|
|
item[type]=PlayList.urlBase+encodeURIComponent(path);
|
|
|
|
PlayList.items.push(item);
|
|
|
|
},
|
2011-07-30 01:53:22 +04:00
|
|
|
remove:function(index){
|
|
|
|
PlayList.items.splice(index,1);
|
|
|
|
PlayList.render();
|
2011-08-03 16:23:35 +04:00
|
|
|
PlayList.save();
|
2011-07-30 01:53:22 +04:00
|
|
|
},
|
2011-07-31 03:25:33 +04:00
|
|
|
render:function(){},
|
|
|
|
playing:function(){
|
|
|
|
if(!PlayList.player){
|
|
|
|
return false;
|
|
|
|
}else{
|
|
|
|
return !PlayList.player.data("jPlayer").status.paused;
|
|
|
|
}
|
2011-08-01 03:12:28 +04:00
|
|
|
},
|
|
|
|
save:function(){
|
|
|
|
if(typeof localStorage !== 'undefined'){
|
2011-08-01 03:56:45 +04:00
|
|
|
localStorage.setItem(oc_current_user+'oc_playlist_items',JSON.stringify(PlayList.items));
|
2011-08-01 03:12:28 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
load:function(){
|
|
|
|
if(typeof localStorage !== 'undefined'){
|
2011-08-01 03:56:45 +04:00
|
|
|
if(localStorage.hasOwnProperty(oc_current_user+'oc_playlist_items')){
|
|
|
|
PlayList.items=JSON.parse(localStorage.getItem(oc_current_user+'oc_playlist_items'));
|
2011-08-03 16:23:35 +04:00
|
|
|
if(PlayList.items.length>0){
|
|
|
|
PlayList.current=parseInt(localStorage.getItem(oc_current_user+'oc_playlist_current'));
|
|
|
|
var time=parseInt(localStorage.getItem(oc_current_user+'oc_playlist_time'));
|
|
|
|
if(localStorage.hasOwnProperty(oc_current_user+'oc_playlist_volume')){
|
|
|
|
var volume=localStorage.getItem(oc_current_user+'oc_playlist_volume');
|
|
|
|
PlayList.volume=volume/100;
|
|
|
|
$('.jp-volume-bar-value').css('width',volume+'%');
|
|
|
|
if(PlayList.player.data('jPlayer')){
|
|
|
|
PlayList.player.jPlayer("option",'volume',volume/100);
|
|
|
|
}
|
2011-08-01 18:43:02 +04:00
|
|
|
}
|
2011-08-03 16:23:35 +04:00
|
|
|
if(JSON.parse(localStorage.getItem(oc_current_user+'oc_playlist_playing'))){
|
|
|
|
PlayList.play(null,time);
|
|
|
|
}else{
|
|
|
|
PlayList.play(null,time,function(){
|
|
|
|
PlayList.player.jPlayer("pause");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
PlayList.render();
|
2011-08-01 18:43:02 +04:00
|
|
|
}
|
2011-08-01 03:12:28 +04:00
|
|
|
}
|
|
|
|
}
|
2011-07-31 03:25:33 +04:00
|
|
|
}
|
2011-07-26 18:04:57 +04:00
|
|
|
}
|