From: eb041592 <35889760+eb041592@users.noreply.github.com>
Date: Fri, 2 Feb 2018 01:14:31 +0000 (+0100)
Subject: Added artist and album to both queue and search results; minor spelling
X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=cf572b705efd678662fd9eae896c1da6bfe79793;p=ympd.git
Added artist and album to both queue and search results; minor spelling
---
diff --git a/htdocs/index.html b/htdocs/index.html
index 9d8f9a3..3996042 100644
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -34,7 +34,7 @@
- Queue
- - Browse database
+ - Browse Database
- Dirble
- Add Stream
- Settings
@@ -191,10 +191,10 @@
diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js
index 5c8a8d1..ef760bf 100644
--- a/htdocs/js/mpd.js
+++ b/htdocs/js/mpd.js
@@ -227,7 +227,7 @@ function webSocketConnect() {
var obj = JSON.parse(msg.data);
switch (obj.type) {
- case "queue":
+ case 'queue':
if(current_app !== 'queue')
break;
@@ -238,8 +238,8 @@ function webSocketConnect() {
$('#salamisandwich > tbody').append(
"" + (obj.data[song].pos + 1) + " | " +
- ""+ obj.data[song].title +" | " +
- ""+ minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
+ " | " + obj.data[song].artist + " [" + obj.data[song].album + "] - " + obj.data[song].title + " | " +
+ "" + minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
" | |
");
}
@@ -299,14 +299,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;
@@ -319,7 +319,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];
@@ -338,7 +338,7 @@ function webSocketConnect() {
" | | "
);
break;
- case "playlist":
+ case 'playlist':
var clazz = 'plist';
if (filter !== "||") {
clazz += ' hide';
@@ -350,19 +350,19 @@ function webSocketConnect() {
" | | "
);
break;
- case "song":
+ case 'song':
var minutes = Math.floor(obj.data[item].duration / 60);
var seconds = obj.data[item].duration - minutes * 60;
- $('#salamisandwich > tbody').append(
+ $('#salamisandwich > tbody').append(
"" +
" | " +
- "" + obj.data[item].title +" | " +
- ""+ minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
+ " | " + (typeof obj.data[item].artist !== 'undefined' ? 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 {
diff --git a/src/mpd_client.c b/src/mpd_client.c
index 2911e46..099f673 100644
--- a/src/mpd_client.c
+++ b/src/mpd_client.c
@@ -475,6 +475,24 @@ char* mpd_get_title(struct mpd_song const *song)
return str;
}
+char* mpd_get_artist(struct mpd_song const *song)
+{
+ char *str;
+
+ str = (char *)mpd_song_get_tag(song, MPD_TAG_ARTIST, 0);
+
+ return str;
+}
+
+char* mpd_get_album(struct mpd_song const *song)
+{
+ char *str;
+
+ str = (char *)mpd_song_get_tag(song, MPD_TAG_ALBUM, 0);
+
+ return str;
+}
+
int mpd_put_state(char *buffer, int *current_song_id, unsigned *queue_version)
{
struct mpd_status *status;
@@ -559,18 +577,10 @@ int mpd_put_current_song(char *buffer)
cur += json_emit_int(cur, end - cur, mpd_song_get_pos(song));
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\":");
- cur += json_emit_quoted_str(cur, end - cur, mpd_song_get_tag(song, MPD_TAG_ARTIST, 0));
- }
-
- if(mpd_song_get_tag(song, MPD_TAG_ALBUM, 0) != NULL)
- {
- cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
- 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);
@@ -604,6 +614,10 @@ int mpd_put_queue(char *buffer, unsigned int offset)
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_entity_free(entity);
@@ -718,6 +732,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);