2012-03-15 22:56:51 +01:00
|
|
|
var _playlist_jplayer;
|
|
|
|
var _idToPostionLookUp;
|
2012-03-10 00:47:08 +01:00
|
|
|
|
2012-03-15 22:56:51 +01:00
|
|
|
/**
|
|
|
|
*When the page loads the ready function will get all the data it can from the hidden span elements
|
|
|
|
*and call one of three functions depending on weather the window was open to play an audio file,
|
|
|
|
*or a playlist or a show.
|
|
|
|
*/
|
2012-03-10 00:47:08 +01:00
|
|
|
$(document).ready(function(){
|
2012-03-16 23:03:35 +01:00
|
|
|
|
2012-03-15 22:56:51 +01:00
|
|
|
_playlist_jplayer = new jPlayerPlaylist({
|
2012-03-10 00:47:08 +01:00
|
|
|
jPlayer: "#jquery_jplayer_1",
|
|
|
|
cssSelectorAncestor: "#jp_container_1"
|
|
|
|
},[], //array of songs will be filled with below's json call
|
|
|
|
{
|
|
|
|
swfPath: "/js/jplayer",
|
2012-03-19 21:09:59 +01:00
|
|
|
supplied:"oga, mp3, m4v",
|
|
|
|
size: {
|
|
|
|
width: "0px",
|
|
|
|
height: "0px",
|
|
|
|
cssClass: "jp-video-270p"
|
|
|
|
},
|
2012-04-09 21:28:38 +02:00
|
|
|
playlistOptions: {
|
|
|
|
autoPlay: false,
|
|
|
|
loopOnPrevious: false,
|
|
|
|
shuffleOnLoop: true,
|
|
|
|
enableRemoveControls: false,
|
|
|
|
displayTime: 0,
|
|
|
|
addTime: 0,
|
|
|
|
removeTime: 0,
|
|
|
|
shuffleTime: 0
|
|
|
|
}
|
2012-03-10 00:47:08 +01:00
|
|
|
});
|
|
|
|
|
2012-03-16 23:03:35 +01:00
|
|
|
|
2012-03-10 00:47:08 +01:00
|
|
|
$.jPlayer.timeFormat.showHour = true;
|
|
|
|
|
2012-08-09 20:39:31 +02:00
|
|
|
var audioUri = $('.audioUri').text();
|
2012-08-10 18:40:28 +02:00
|
|
|
var audioMime = $('.audioMime').text();
|
2012-08-09 20:39:31 +02:00
|
|
|
//var audioFileID = $('.audioFileID').text();
|
2012-03-15 22:56:51 +01:00
|
|
|
var playlistID = $('.playlistID').text();
|
|
|
|
var playlistIndex = $('.playlistIndex').text();
|
|
|
|
var showID = $('.showID').text();
|
|
|
|
var showIndex = $('.showIndex').text();
|
2012-08-02 22:36:12 +02:00
|
|
|
var blockId = $('.blockId').text();
|
|
|
|
var blockIndex = $('.blockIndex').text();
|
2012-03-15 22:56:51 +01:00
|
|
|
|
2012-04-09 21:28:38 +02:00
|
|
|
var numOfItems = 0;
|
|
|
|
|
2012-03-15 22:56:51 +01:00
|
|
|
if (playlistID != "" && playlistID !== ""){
|
|
|
|
playAllPlaylist(playlistID, playlistIndex);
|
2012-08-09 20:39:31 +02:00
|
|
|
}else if (audioUri != "") {
|
2012-08-10 18:40:28 +02:00
|
|
|
playOne(audioUri, audioMime);
|
2012-03-15 22:56:51 +01:00
|
|
|
}else if (showID != "") {
|
|
|
|
playAllShow(showID, showIndex);
|
2012-08-02 22:36:12 +02:00
|
|
|
}else if(blockId != "" && blockIndex != ""){
|
|
|
|
playBlock(blockId, blockIndex);
|
2012-03-15 22:56:51 +01:00
|
|
|
}
|
2012-05-17 17:53:01 +02:00
|
|
|
|
|
|
|
$("#jp_container_1").on("mouseenter", "ul.jp-controls li", function(ev) {
|
|
|
|
$(this).addClass("ui-state-hover");
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#jp_container_1").on("mouseleave", "ul.jp-controls li", function(ev) {
|
|
|
|
$(this).removeClass("ui-state-hover");
|
|
|
|
});
|
2012-03-10 00:47:08 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets up the jPlayerPlaylist to play.
|
|
|
|
* - Get the playlist info based on the playlistID give.
|
|
|
|
* - Update the playlistIndex to the position in the pllist to start playing.
|
|
|
|
* - Select the element played from and start playing. If playlist is null then start at index 0.
|
|
|
|
**/
|
2012-03-15 22:56:51 +01:00
|
|
|
function playAllPlaylist(p_playlistID, p_playlistIndex) {
|
2012-03-10 00:47:08 +01:00
|
|
|
var viewsPlaylistID = $('.playlistID').text();
|
|
|
|
|
2012-03-15 22:56:51 +01:00
|
|
|
if ( _idToPostionLookUp !== undefined && viewsPlaylistID == p_playlistID ) {
|
|
|
|
play(p_playlistIndex);
|
2012-08-09 22:49:20 +02:00
|
|
|
} else {
|
2012-03-15 22:56:51 +01:00
|
|
|
buildplaylist("/audiopreview/get-playlist/playlistID/"+p_playlistID, p_playlistIndex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-02 22:36:12 +02:00
|
|
|
function playBlock(p_blockId, p_blockIndex)
|
|
|
|
{
|
|
|
|
var viewsBlockId = $('.blockId').text();
|
|
|
|
|
|
|
|
if ( _idToPostionLookUp !== undefined && viewsBlockId == p_blockId ) {
|
|
|
|
play(p_blockIndex);
|
2012-08-09 22:49:20 +02:00
|
|
|
} else {
|
2012-08-02 22:36:12 +02:00
|
|
|
buildplaylist("/audiopreview/get-block/blockId/"+p_blockId, p_blockIndex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-15 22:56:51 +01:00
|
|
|
/**
|
|
|
|
* Sets up the show to play.
|
|
|
|
* checks with the show id given to the show id on the page/view
|
|
|
|
* if the show id and the page or views show id are the same it means the user clicked another
|
|
|
|
* file in the same show, so don't refresh the show content tust play the track from the preloaded show.
|
|
|
|
* if the the ids are different they we'll need to get the show's context so create the uri
|
|
|
|
* and call the controller.
|
|
|
|
**/
|
|
|
|
function playAllShow(p_showID, p_index) {
|
|
|
|
|
|
|
|
var viewsShowID = $('.showID').text();
|
|
|
|
if ( _idToPostionLookUp !== undefined && viewsShowID == p_showID ) {
|
|
|
|
play(p_index);
|
|
|
|
}else {
|
|
|
|
buildplaylist("/audiopreview/get-show/showID/"+p_showID, p_index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-08-09 23:42:25 +02:00
|
|
|
* This function will call the AudiopreviewController to get the contents of
|
|
|
|
* either a show or playlist Looping throught the returned contents and
|
|
|
|
* creating media for each track.
|
2012-03-15 22:56:51 +01:00
|
|
|
*
|
|
|
|
* Then trigger the jplayer to play the list.
|
|
|
|
*/
|
|
|
|
function buildplaylist(p_url, p_playIndex) {
|
|
|
|
_idToPostionLookUp = Array();
|
|
|
|
$.getJSON(p_url, function(data){ // get the JSON array produced by my PHP
|
|
|
|
var myPlaylist = new Array();
|
|
|
|
var media;
|
|
|
|
var index;
|
2012-04-09 21:28:38 +02:00
|
|
|
var total = 0;
|
2012-08-09 23:42:25 +02:00
|
|
|
for(index in data) {
|
2012-08-09 22:49:20 +02:00
|
|
|
if (data[index]['type'] == 0) {
|
|
|
|
if (data[index]['element_mp3'] != undefined){
|
|
|
|
media = {title: data[index]['element_title'],
|
|
|
|
artist: data[index]['element_artist'],
|
|
|
|
mp3:data[index]['uri']
|
|
|
|
};
|
|
|
|
} else if (data[index]['element_oga'] != undefined) {
|
|
|
|
media = {title: data[index]['element_title'],
|
|
|
|
artist: data[index]['element_artist'],
|
|
|
|
oga:data[index]['uri']
|
|
|
|
};
|
|
|
|
}
|
|
|
|
} else if (data[index]['type'] == 1) {
|
|
|
|
media = {title: data[index]['element_title'],
|
2012-03-15 22:56:51 +01:00
|
|
|
artist: data[index]['element_artist'],
|
2012-08-09 22:49:20 +02:00
|
|
|
mp3:data[index]['uri']
|
2012-03-15 22:56:51 +01:00
|
|
|
};
|
2012-03-10 00:47:08 +01:00
|
|
|
}
|
2012-08-09 22:49:20 +02:00
|
|
|
if (media) {
|
|
|
|
myPlaylist[index] = media;
|
|
|
|
}
|
2012-08-09 23:42:25 +02:00
|
|
|
// we should create a map according to the new position in the
|
|
|
|
// player itself total is the index on the player
|
2012-04-24 18:59:07 +02:00
|
|
|
_idToPostionLookUp[data[index]['element_id']] = total;
|
2012-04-09 21:28:38 +02:00
|
|
|
total++;
|
2012-03-15 22:56:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
_playlist_jplayer.setPlaylist(myPlaylist);
|
|
|
|
_playlist_jplayer.option("autoPlay", true);
|
|
|
|
play(p_playIndex);
|
2012-04-09 21:28:38 +02:00
|
|
|
|
2012-05-22 15:03:34 +02:00
|
|
|
var height = Math.min(143 + (26 * total), 400);
|
|
|
|
var width = 505;
|
|
|
|
|
|
|
|
if (height === 400) {
|
|
|
|
window.scrollbars = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
//there's no scrollbars so we don't need the window to be as wide.
|
|
|
|
width = 490;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.resizeTo(width, height);
|
2012-03-15 22:56:51 +01:00
|
|
|
});
|
2012-03-10 00:47:08 +01:00
|
|
|
}
|
|
|
|
|
2012-03-15 22:56:51 +01:00
|
|
|
/**
|
|
|
|
*Function simply plays the given index, for playlists index can be different so need to look up the
|
|
|
|
*right index.
|
|
|
|
*/
|
|
|
|
function play(p_playlistIndex){
|
|
|
|
playlistIndex = _idToPostionLookUp[p_playlistIndex];
|
2012-04-24 18:59:07 +02:00
|
|
|
if(playlistIndex == undefined){
|
|
|
|
playlistIndex = 0
|
|
|
|
}
|
2012-03-15 22:56:51 +01:00
|
|
|
//_playlist_jplayer.select(playlistIndex);
|
|
|
|
_playlist_jplayer.play(playlistIndex);
|
2012-03-10 00:47:08 +01:00
|
|
|
}
|
|
|
|
|
2012-03-15 22:56:51 +01:00
|
|
|
/**
|
|
|
|
* Playing one audio track occurs from the library. This function will create the media, setup
|
|
|
|
* jplayer and play the track.
|
|
|
|
*/
|
2012-08-10 18:40:28 +02:00
|
|
|
function playOne(uri, mime) {
|
2012-03-10 00:47:08 +01:00
|
|
|
var playlist = new Array();
|
2012-08-10 18:40:28 +02:00
|
|
|
|
|
|
|
if (mime.search(/mp3/i) > 0 || mime.search(/mpeg/i) > 0) {
|
2012-03-10 00:47:08 +01:00
|
|
|
media = {title: $('.audioFileTitle').text() !== 'null' ?$('.audioFileTitle').text():"",
|
|
|
|
artist: $('.audioFileArtist').text() !== 'null' ?$('.audioFileArtist').text():"",
|
2012-08-09 20:39:31 +02:00
|
|
|
mp3:uri
|
2012-03-10 00:47:08 +01:00
|
|
|
};
|
2012-08-10 18:40:28 +02:00
|
|
|
} else if (mime.search(/og(g|a)/i) > 0 || mime.search(/vorbis/i) > 0) {
|
2012-03-10 00:47:08 +01:00
|
|
|
media = {title: $('.audioFileTitle').text() != 'null' ?$('.audioFileTitle').text():"",
|
|
|
|
artist: $('.audioFileArtist').text() != 'null' ?$('.audioFileArtist').text():"",
|
2012-08-09 20:39:31 +02:00
|
|
|
oga:uri
|
2012-03-10 00:47:08 +01:00
|
|
|
};
|
|
|
|
}
|
2012-08-10 18:40:28 +02:00
|
|
|
|
2012-03-15 22:56:51 +01:00
|
|
|
_playlist_jplayer.option("autoPlay", true);
|
2012-03-13 19:12:14 +01:00
|
|
|
playlist[0] = media;
|
2012-03-15 22:56:51 +01:00
|
|
|
_playlist_jplayer._initPlaylist(playlist);
|
|
|
|
_playlist_jplayer.play(0);
|
2012-04-09 21:28:38 +02:00
|
|
|
|
2012-05-22 15:03:34 +02:00
|
|
|
window.resizeTo(490, 167);
|
2012-06-12 17:31:10 +02:00
|
|
|
}
|