diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js
index ff7749a..6d67bee 100644
--- a/htdocs/js/mpd.js
+++ b/htdocs/js/mpd.js
@@ -47,6 +47,8 @@ var app = $.sammy(function() {
socket.send('MPD_API_GET_QUEUE,'+pagination);
$('#panel-heading').text("Queue");
+ $('#panel-heading-info').empty();
+
$('#queue').addClass('active');
}
@@ -112,7 +114,6 @@ var app = $.sammy(function() {
$('#panel-heading').text("Search: "+searchstr);
});
-
this.get(/\#\/dirble\/(\d+)\/(\d+)/, function() {
if (TOKEN === "") context.redirect("#/0");
@@ -127,6 +128,8 @@ var app = $.sammy(function() {
$('#dirble_right').find("tr:gt(0)").remove();
$('#panel-heading').text("Dirble");
+ $('#panel-heading-info').empty();
+
$('#dirble').addClass('active');
$('#next').addClass('hide');
@@ -139,14 +142,9 @@ var app = $.sammy(function() {
dirble_stations = true;
- if(dirble_api_token) {
- dirble_load_stations();
- } else {
- getDirbleApiToken();
- }
+ if (dirble_api_token) { dirble_load_stations(); }
});
-
this.get(/\#\/dirble\//, function() {
if (TOKEN === "") context.redirect("#/0");
@@ -161,15 +159,13 @@ var app = $.sammy(function() {
$('#dirble_right').find("tr:gt(0)").remove();
$('#panel-heading').text("Dirble");
+ $('#panel-heading-info').empty();
+
$('#dirble').addClass('active');
dirble_stations = false;
- if(dirble_api_token) {
- dirble_load_categories();
- } else {
- getDirbleApiToken();
- }
+ if (dirble_api_token) { dirble_load_categories(); }
});
this.get("/", function(context) {
@@ -268,7 +264,6 @@ $(document).ready(function(){
if (TOKEN === "") $('#dirble').addClass('hide');
});
-
function webSocketConnect() {
if (typeof MozWebSocket != "undefined") {
socket = new MozWebSocket(get_appropriate_ws_url());
@@ -286,7 +281,9 @@ function webSocketConnect() {
app.run();
/* emit initial request for output names */
- socket.send("MPD_API_GET_OUTPUTS");
+ socket.send('MPD_API_GET_OUTPUTS');
+ /* emit initial request for dirble api token */
+ socket.send('MPD_API_GET_DIRBLEAPITOKEN');
}
socket.onmessage = function got_packet(msg) {
@@ -297,10 +294,22 @@ function webSocketConnect() {
switch (obj.type) {
- case "queue":
+ case 'queue':
if(current_app !== 'queue')
break;
+ if (obj.totalTime > 0) {
+ var hours = Math.floor(obj.totalTime / 3600);
+ var minutes = Math.floor(obj.totalTime / 60) - hours * 60;
+ var seconds = obj.totalTime - hours * 3600 - minutes * 60;
+
+ $('#panel-heading-info').text('Total: ' +
+ (hours > 0 ? hours + '\u2009h ' + (minutes < 10 ? '0' : '') : '') +
+ minutes + '\u2009m ' + (seconds < 10 ? '0' : '') + seconds + '\u2009s');
+ } else {
+ $('#panel-heading-info').empty();
+ }
+
$('#salamisandwich > tbody').empty();
for (var song in obj.data) {
var minutes = Math.floor(obj.data[song].duration / 60);
@@ -308,9 +317,9 @@ function webSocketConnect() {
$('#salamisandwich > tbody').append(
"
" + (obj.data[song].pos + 1) + " | " +
- ""+ obj.data[song].title +" | " +
- ""+ obj.data[song].album +" | " +
""+ obj.data[song].artist +" | " +
+ ""+ obj.data[song].album +" | " +
+ ""+ obj.data[song].title +" | " +
""+ minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
" | |
");
}
@@ -371,14 +380,14 @@ function webSocketConnect() {
};
//Make queue table sortable
- $("#salamisandwich > tbody").sortable({
+ $('#salamisandwich > tbody').sortable({
helper: fixHelperModified,
stop: function(event,ui) {renumber_table('#salamisandwich',ui.item)}
}).disableSelection();
break;
- case "search":
+ case 'search':
$('#wait').modal('hide');
- case "browse":
+ case 'browse':
if(current_app !== 'browse' && current_app !== 'search')
break;
@@ -391,7 +400,7 @@ function webSocketConnect() {
}
for (var item in obj.data) {
switch(obj.data[item].type) {
- case "directory":
+ case 'directory':
var clazz = 'dir';
if (filter !== undefined) {
var first = obj.data[item].dir[0];
@@ -406,12 +415,11 @@ function webSocketConnect() {
$('#salamisandwich > tbody').append(
"
" +
" | " +
- "" + basename(obj.data[item].dir) + " | " +
- " | | " +
+ "" + basename(obj.data[item].dir) + " | " +
" | |
"
);
break;
- case "playlist":
+ case 'playlist':
var clazz = 'plist';
if (filter !== "||") {
clazz += ' hide';
@@ -419,33 +427,38 @@ function webSocketConnect() {
$('#salamisandwich > tbody').append(
"
" +
" | " +
- "" + basename(obj.data[item].plist) + " | " +
- " | | " +
+ "" + basename(obj.data[item].plist) + " | " +
" | |
"
);
break;
- case "song":
+ case 'song':
var minutes = Math.floor(obj.data[item].duration / 60);
var seconds = obj.data[item].duration - minutes * 60;
+ if (obj.data[item].artist == null) {
+ var artist = "
";
+ } else {
+ var artist = " | " + obj.data[item].artist +
+ "" + obj.data[item].album + " | ";
+ }
+
$('#salamisandwich > tbody').append(
" | " +
" | " +
- "" + obj.data[item].title + " | " +
- "" + obj.data[item].album + " | " +
"" + obj.data[item].artist + " | " +
+ "" + obj.data[item].album + " | " +
+ "" + obj.data[item].title + " | " +
"" + minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
" | |
"
);
break;
- case "wrap":
+ case 'wrap':
if(current_app == 'browse') {
$('#next').removeClass('hide');
} else {
$('#salamisandwich > tbody').append(
- "
| " +
- "Too many results, please refine your search! | " +
- " | | " +
+ "
| " +
+ "Too many results, please refine your search! | " +
" | |
"
);
}
@@ -466,7 +479,7 @@ function webSocketConnect() {
socket.send(onClickAction + "," + decodeURI($(this).parents("tr").attr("uri")));
$('.top-right').notify({
message:{
- text: $('td:nth-child(2)', $(this).parents("tr")).text() + " added"
+ text: "\"" + $('td:nth-last-child(3)', $(this).parents("tr")).text() + "\" added"
} }).show();
}).fadeTo('fast',1);
}
@@ -500,7 +513,7 @@ function webSocketConnect() {
socket.send("MPD_API_ADD_TRACK," + decodeURI($(this).attr("uri")));
$('.top-right').notify({
message:{
- text: $('td:nth-child(2)', this).text() + " added"
+ text: "\"" + $('td:nth-last-child(3)', this).text() + "\" added"
}
}).show();
break;
@@ -508,7 +521,7 @@ function webSocketConnect() {
socket.send("MPD_API_ADD_PLAYLIST," + decodeURI($(this).attr("uri")));
$('.top-right').notify({
message:{
- text: "Playlist " + $('td:nth-child(2)', this).text() + " added"
+ text: "\"" + $('td:nth-last-child(3)', this).text() + "\" added"
}
}).show();
break;
@@ -517,7 +530,7 @@ function webSocketConnect() {
});
break;
- case "state":
+ case 'state':
updatePlayIcon(obj.data.state);
updateVolumeIcon(obj.data.volume);
@@ -571,16 +584,20 @@ function webSocketConnect() {
last_state = obj;
break;
- case "outputnames":
+ case 'outputnames':
$('#btn-outputs-block button').remove();
- $.each(obj.data, function(id, name){
- var btn = $('
');
- btn.appendTo($('#btn-outputs-block'));
- });
+ if ( Object.keys(obj.data).length ) {
+ $.each(obj.data, function(id, name){
+ var btn = $('
');
+ btn.appendTo($('#btn-outputs-block'));
+ });
+ } else {
+ $('#btn-outputs-block').addClass('hide');
+ }
/* remove cache, since the buttons have been recreated */
last_outputs = '';
break;
- case "outputs":
+ case 'outputs':
if(JSON.stringify(obj) === JSON.stringify(last_outputs))
break;
$.each(obj.data, function(id, enabled){
@@ -591,7 +608,7 @@ function webSocketConnect() {
});
last_outputs = obj;
break;
- case "disconnected":
+ case 'disconnected':
if($('.top-right').has('div').length == 0)
$('.top-right').notify({
message:{text:"ympd lost connection to MPD "},
@@ -599,11 +616,13 @@ function webSocketConnect() {
fadeOut: { enabled: true, delay: 1000 },
}).show();
break;
- case "update_queue":
+ case 'update_queue':
if(current_app === 'queue')
socket.send('MPD_API_GET_QUEUE,'+pagination);
break;
- case "song_change":
+
+ case "song_change":
+
changeCover(obj);
$('#album').text("");
$('#artist').text("");
@@ -614,14 +633,20 @@ function webSocketConnect() {
var notification = "
" + obj.data.title + "
";
+
if(obj.data.album) {
$('#album').text(obj.data.album);
notification += obj.data.album + "
";
}
+
if(obj.data.artist) {
$('#artist').text(obj.data.artist);
notification += obj.data.artist + "
";
}
+ if(obj.data.album) {
+ $('#album').text(obj.data.album);
+ notification += obj.data.album + "
";
+ }
if ($.cookie("notification") === "true")
songNotify(obj.data.title, obj.data.artist, obj.data.album );
@@ -632,23 +657,27 @@ function webSocketConnect() {
}).show();
break;
- case "mpdhost":
+ case 'mpdhost':
$('#mpdhost').val(obj.data.host);
setLocalStream(obj.data.host);
$('#mpdport').val(obj.data.port);
if(obj.data.passwort_set)
$('#mpd_password_set').removeClass('hide');
break;
- case "dirbleapitoken":
+ case 'dirbleapitoken':
dirble_api_token = obj.data;
- if(dirble_stations) {
- dirble_load_stations();
+ if (dirble_api_token) {
+ $('#dirble').removeClass('hide');
+
+ if (dirble_stations) { dirble_load_stations(); }
+ else { dirble_load_categories(); }
+
} else {
- dirble_load_categories();
- }
+ $('#dirble').addClass('hide');
+ }
break;
- case "error":
+ case 'error':
$('.top-right').notify({
message:{text: obj.data},
type: "danger",
@@ -656,9 +685,8 @@ function webSocketConnect() {
default:
break;
}
-
-
}
+
socket.onclose = function(){
console.log("disconnected");
$('.top-right').notify({
@@ -899,10 +927,6 @@ function getHost() {
$('#mpd_pw_con').keypress(onEnter);
}
-function getDirbleApiToken() {
- socket.send('MPD_API_GET_DIRBLEAPITOKEN');
-}
-
$('#search').submit(function () {
app.setLocation("#/search/"+$('#search > div > input').val());
$('#wait').modal('show');
diff --git a/src/mpd_client.c b/src/mpd_client.c
index 3e99256..24b2524 100644
--- a/src/mpd_client.c
+++ b/src/mpd_client.c
@@ -608,6 +608,7 @@ int mpd_put_current_song(char *buffer)
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_title(song));
+
if(mpd_song_get_tag(song, MPD_TAG_ARTIST, 0) != NULL)
{
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
@@ -626,6 +627,12 @@ int mpd_put_current_song(char *buffer)
cur += json_emit_quoted_str(cur, end - cur, mpd_song_get_tag(song, MPD_TAG_ALBUM, 0));
}
+ cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
+ cur += json_emit_quoted_str(cur, end - cur, mpd_get_artist(song));
+ cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
+ cur += json_emit_quoted_str(cur, end - cur, mpd_get_album(song));
+
+
cur += json_emit_raw_str(cur, end - cur, "}}");
mpd_song_free(song);
mpd_response_finish(mpd.conn);
@@ -638,6 +645,7 @@ int mpd_put_queue(char *buffer, unsigned int offset)
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_entity *entity;
+ unsigned long totalTime = 0;
if (!mpd_send_list_queue_range_meta(mpd.conn, offset, offset+MAX_ELEMENTS_PER_PAGE))
RETURN_ERROR_AND_RECOVER("mpd_send_list_queue_meta");
@@ -646,16 +654,18 @@ int mpd_put_queue(char *buffer, unsigned int offset)
while((entity = mpd_recv_entity(mpd.conn)) != NULL) {
const struct mpd_song *song;
+ unsigned int drtn;
if(mpd_entity_get_type(entity) == MPD_ENTITY_TYPE_SONG) {
song = mpd_entity_get_song(entity);
+ drtn = mpd_song_get_duration(song);
cur += json_emit_raw_str(cur, end - cur, "{\"id\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_id(song));
cur += json_emit_raw_str(cur, end - cur, ",\"pos\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_pos(song));
cur += json_emit_raw_str(cur, end - cur, ",\"duration\":");
- cur += json_emit_int(cur, end - cur, mpd_song_get_duration(song));
+ cur += json_emit_int(cur, end - cur, drtn);
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_artist(song));
cur += json_emit_raw_str(cur, end - cur, ",\"album_artist\":");
@@ -664,7 +674,13 @@ int mpd_put_queue(char *buffer, unsigned int offset)
cur += json_emit_quoted_str(cur, end - cur, mpd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_title(song));
+ cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
+ cur += json_emit_quoted_str(cur, end - cur, mpd_get_artist(song));
+ cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
+ cur += json_emit_quoted_str(cur, end - cur, mpd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, "},");
+
+ totalTime += drtn;
}
mpd_entity_free(entity);
}
@@ -672,7 +688,9 @@ int mpd_put_queue(char *buffer, unsigned int offset)
/* remove last ',' */
cur--;
- cur += json_emit_raw_str(cur, end - cur, "]}");
+ cur += json_emit_raw_str(cur, end - cur, "],\"totalTime\":");
+ cur += json_emit_int(cur, end - cur, totalTime);
+ cur += json_emit_raw_str(cur, end - cur, "}");
return cur - buffer;
}
@@ -790,6 +808,10 @@ int mpd_search(char *buffer, char *searchstr)
cur += json_emit_int(cur, end - cur, mpd_song_get_duration(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_get_title(song));
+ cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
+ cur += json_emit_quoted_str(cur, end - cur, mpd_get_artist(song));
+ cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
+ cur += json_emit_quoted_str(cur, end - cur, mpd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, "},");
mpd_song_free(song);
diff --git a/src/ympd.c b/src/ympd.c
index 81e28b0..8d3f90d 100644
--- a/src/ympd.c
+++ b/src/ympd.c
@@ -95,8 +95,6 @@ int main(int argc, char **argv)
mpd.gpass = NULL;
strcpy(mpd.host, "127.0.0.1");
- strcpy(dirble_api_token, "2e223c9909593b94fc6577361a");
-
static struct option long_options[] = {
{"digest", required_argument, 0, 'D'},
{"host", required_argument, 0, 'h'},