1
0
mirror of https://github.com/SuperBFG7/ympd synced 2024-06-28 15:43:15 +00:00
ympd/src/mpd_client.c

1480 lines
53 KiB
C
Raw Normal View History

/* myMPD
(c) 2018 Juergen Mang <mail@jcgames.de>
This project's homepage is: https://github.com/jcorporation/ympd
myMPD ist fork of:
ympd
(c) 2013-2014 Andrew Karpow <andy@ndyk.de>
2014-01-17 18:41:41 +00:00
This project's homepage is: http://www.ympd.org
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2014-01-17 18:41:41 +00:00
*/
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <libgen.h>
#include <ctype.h>
2013-11-04 17:18:38 +00:00
#include <mpd/client.h>
2017-03-24 10:01:24 +00:00
#include <mpd/message.h>
2013-11-04 17:18:38 +00:00
#include "mpd_client.h"
2014-02-04 16:58:10 +00:00
#include "config.h"
2018-06-14 22:00:54 +00:00
#include "frozen/frozen.h"
2014-02-22 01:11:45 +00:00
#include "json_encode.h"
2013-11-04 17:18:38 +00:00
2015-04-28 09:08:21 +00:00
/* forward declaration */
2018-06-14 22:00:54 +00:00
static int mympd_notify_callback(struct mg_connection *c, const char *param);
2015-04-28 09:08:21 +00:00
2014-02-16 18:46:53 +00:00
const char * mpd_cmd_strs[] = {
MPD_CMDS(GEN_STR)
};
2013-11-04 17:18:38 +00:00
2018-06-12 00:07:03 +00:00
char * get_arg1 (const char *p) {
return strchr(p, ',') + 1;
}
2018-06-12 00:07:03 +00:00
char * get_arg2 (const char *p) {
return get_arg1(get_arg1(p));
}
2018-06-12 00:07:03 +00:00
static inline enum mpd_cmd_ids get_cmd_id(const char *cmd)
2013-11-04 17:18:38 +00:00
{
2014-02-16 18:46:53 +00:00
for(int i = 0; i < sizeof(mpd_cmd_strs)/sizeof(mpd_cmd_strs[0]); i++)
if(!strncmp(cmd, mpd_cmd_strs[i], strlen(mpd_cmd_strs[i])))
return i;
2013-11-09 01:07:03 +00:00
2014-02-16 18:46:53 +00:00
return -1;
}
2013-11-09 01:07:03 +00:00
2018-06-14 22:57:57 +00:00
void callback_mympd_jsonrpc(struct mg_connection *nc, const struct mg_str msg)
{
size_t n = 0;
char *cmd;
int int_buf;
int je;
float float_buf;
char *p_charbuf1;
char *p_charbuf2;
char *p_charbuf3;
#ifdef DEBUG
fprintf(stdout,"Got request: %s\n",msg.p);
#endif
json_scanf(msg.p, msg.len, "{cmd:%Q}", &cmd);
enum mpd_cmd_ids cmd_id = get_cmd_id(cmd);
if(cmd_id == -1)
return;
switch(cmd_id) {
case MPD_API_GET_ARTISTALBUMTITLES:
je = json_scanf(msg.p, msg.len, "{ data: { albumartist:%Q, album:%Q } }", &p_charbuf1, &p_charbuf2);
if (je == 2)
n = mympd_put_songs_in_album(mpd.buf, p_charbuf1, p_charbuf2);
free(p_charbuf1);
free(p_charbuf2);
break;
}
free(cmd);
if(mpd.conn_state == MPD_CONNECTED && mpd_connection_get_error(mpd.conn) != MPD_ERROR_SUCCESS)
{
#ifdef DEBUG
fprintf(stdout,"Error: %s\n",mpd_connection_get_error_message(mpd.conn));
#endif
n = snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"error\", \"data\": \"%s\"}",
mpd_connection_get_error_message(mpd.conn));
/* Try to recover error */
if (!mpd_connection_clear_error(mpd.conn))
mpd.conn_state = MPD_FAILURE;
}
if(n > 0) {
#ifdef DEBUG
fprintf(stdout,"Send http response:\n %s\n",mpd.buf);
#endif
mg_send_http_chunk(nc, mpd.buf, n);
}
}
2018-06-14 22:00:54 +00:00
void callback_mympd(struct mg_connection *nc, const struct mg_str msg)
2014-02-16 18:46:53 +00:00
{
2018-06-12 00:07:03 +00:00
enum mpd_cmd_ids cmd_id = get_cmd_id(msg.p);
2014-02-16 18:46:53 +00:00
size_t n = 0;
unsigned int uint_buf, uint_buf_2;
int int_buf;
float float_buf;
char *p_charbuf = NULL, *token;
char *p_charbuf2 = NULL;
char *searchstr = NULL;
2018-06-14 15:28:10 +00:00
#ifdef DEBUG
2018-06-12 01:09:24 +00:00
fprintf(stdout,"Got request: %s\n",msg.p);
2018-06-14 15:28:10 +00:00
#endif
2014-02-16 18:46:53 +00:00
if(cmd_id == -1)
return;
2014-02-16 18:46:53 +00:00
switch(cmd_id)
{
case MPD_API_WELCOME:
n = mympd_put_welcome(mpd.buf);
2014-02-16 18:46:53 +00:00
case MPD_API_UPDATE_DB:
mpd_run_update(mpd.conn, NULL);
2013-11-09 01:07:03 +00:00
break;
2014-02-16 18:46:53 +00:00
case MPD_API_SET_PAUSE:
mpd_run_toggle_pause(mpd.conn);
break;
case MPD_API_SET_PREV:
mpd_run_previous(mpd.conn);
break;
case MPD_API_SET_NEXT:
mpd_run_next(mpd.conn);
break;
case MPD_API_SET_PLAY:
mpd_run_play(mpd.conn);
break;
case MPD_API_SET_STOP:
mpd_run_stop(mpd.conn);
break;
case MPD_API_RM_ALL:
mpd_run_clear(mpd.conn);
break;
case MPD_API_RM_TRACK:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_RM_TRACK,%u", &uint_buf))
2014-02-16 18:46:53 +00:00
mpd_run_delete_id(mpd.conn, uint_buf);
break;
case MPD_API_RM_RANGE:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_RM_RANGE,%u,%u", &uint_buf, &uint_buf_2))
mpd_run_delete_range(mpd.conn, uint_buf, uint_buf_2);
break;
case MPD_API_MOVE_TRACK:
2018-06-12 00:07:03 +00:00
if (sscanf(msg.p, "MPD_API_MOVE_TRACK,%u,%u", &uint_buf, &uint_buf_2) == 2)
{
uint_buf -= 1;
uint_buf_2 -= 1;
mpd_run_move(mpd.conn, uint_buf, uint_buf_2);
}
break;
2014-02-16 18:46:53 +00:00
case MPD_API_PLAY_TRACK:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_PLAY_TRACK,%u", &uint_buf))
2014-02-16 18:46:53 +00:00
mpd_run_play_id(mpd.conn, uint_buf);
break;
case MPD_API_TOGGLE_RANDOM:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_TOGGLE_RANDOM,%u", &uint_buf))
2014-02-16 18:46:53 +00:00
mpd_run_random(mpd.conn, uint_buf);
break;
case MPD_API_TOGGLE_REPEAT:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_TOGGLE_REPEAT,%u", &uint_buf))
2014-02-16 18:46:53 +00:00
mpd_run_repeat(mpd.conn, uint_buf);
break;
case MPD_API_TOGGLE_CONSUME:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_TOGGLE_CONSUME,%u", &uint_buf))
2014-02-16 18:46:53 +00:00
mpd_run_consume(mpd.conn, uint_buf);
break;
case MPD_API_TOGGLE_SINGLE:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_TOGGLE_SINGLE,%u", &uint_buf))
2014-02-16 18:46:53 +00:00
mpd_run_single(mpd.conn, uint_buf);
break;
case MPD_API_SET_CROSSFADE:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_SET_CROSSFADE,%u", &uint_buf))
mpd_run_crossfade(mpd.conn, uint_buf);
break;
case MPD_API_SET_MIXRAMPDB:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_SET_MIXRAMPDB,%f", &float_buf))
mpd_run_mixrampdb(mpd.conn, float_buf);
break;
case MPD_API_SET_MIXRAMPDELAY:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_SET_MIXRAMPDELAY,%f", &float_buf))
mpd_run_mixrampdelay(mpd.conn, float_buf);
break;
case MPD_API_GET_OUTPUTNAMES:
2018-06-14 22:00:54 +00:00
n = mympd_put_outputnames(mpd.buf);
2015-04-28 09:08:21 +00:00
break;
case MPD_API_TOGGLE_OUTPUT:
2018-06-12 00:07:03 +00:00
if (sscanf(msg.p, "MPD_API_TOGGLE_OUTPUT,%u,%u", &uint_buf, &uint_buf_2)) {
2015-04-28 09:08:21 +00:00
if (uint_buf_2)
mpd_run_enable_output(mpd.conn, uint_buf);
else
mpd_run_disable_output(mpd.conn, uint_buf);
}
break;
2014-02-16 18:46:53 +00:00
case MPD_API_SET_VOLUME:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_SET_VOLUME,%ud", &uint_buf) && uint_buf <= 100)
2014-02-16 18:46:53 +00:00
mpd_run_set_volume(mpd.conn, uint_buf);
break;
case MPD_API_SET_SEEK:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_SET_SEEK,%u,%u", &uint_buf, &uint_buf_2))
2014-02-16 18:46:53 +00:00
mpd_run_seek_id(mpd.conn, uint_buf, uint_buf_2);
break;
2014-02-22 01:11:45 +00:00
case MPD_API_GET_QUEUE:
2018-06-12 00:07:03 +00:00
if(sscanf(msg.p, "MPD_API_GET_QUEUE,%u", &uint_buf))
2018-06-14 22:00:54 +00:00
n = mympd_put_queue(mpd.buf, uint_buf);
2014-02-22 01:11:45 +00:00
break;
2018-06-11 17:33:11 +00:00
case MPD_API_GET_CURRENT_SONG:
2018-06-14 22:00:54 +00:00
n = mympd_put_current_song(mpd.buf);
2018-06-11 17:33:11 +00:00
break;
2018-06-03 16:36:06 +00:00
case MPD_API_GET_ARTISTS:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_GET_ARTISTS"))
goto out_artist;
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
goto out_artist;
} else {
p_charbuf2 = strdup(token);
}
n = mympd_put_db_tag(mpd.buf, uint_buf, "AlbumArtist","","",p_charbuf2);
free(p_charbuf2);
out_artist:
free(p_charbuf);
2018-06-03 16:36:06 +00:00
break;
case MPD_API_GET_ARTISTALBUMS:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
2018-06-03 16:36:06 +00:00
if(strcmp(strtok(p_charbuf, ","), "MPD_API_GET_ARTISTALBUMS"))
goto out_artistalbum;
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
goto out_artistalbum;
} else {
p_charbuf2 = strdup(token);
}
if((token = strtok(NULL, ",")) == NULL) {
free(p_charbuf2);
goto out_artistalbum;
2018-06-03 16:36:06 +00:00
} else {
searchstr = strdup(token);
}
n = mympd_put_db_tag(mpd.buf, uint_buf, "Album", "AlbumArtist", searchstr, p_charbuf2);
2018-06-03 16:36:06 +00:00
free(searchstr);
free(p_charbuf2);
2018-06-03 16:36:06 +00:00
out_artistalbum:
free(p_charbuf);
2018-06-03 16:36:06 +00:00
break;
case MPD_API_GET_ARTISTALBUMTITLES:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
2018-06-03 16:36:06 +00:00
if(strcmp(strtok(p_charbuf, ","), "MPD_API_GET_ARTISTALBUMTITLES"))
goto out_artistalbumtitle;
if((token = strtok(NULL, ",")) == NULL) {
goto out_artistalbumtitle;
} else {
searchstr = strdup(token);
}
n = mympd_put_songs_in_album(mpd.buf, searchstr, token+strlen(token)+1);
2018-06-03 16:36:06 +00:00
free(searchstr);
out_artistalbumtitle:
free(p_charbuf);
break;
case MPD_API_GET_PLAYLISTS:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_GET_PLAYLISTS"))
goto out_artist;
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
goto out_playlists;
} else {
p_charbuf2 = strdup(token);
}
n = mympd_put_playlists(mpd.buf, uint_buf, p_charbuf2);
free(p_charbuf2);
out_playlists:
free(p_charbuf);
break;
case MPD_API_GET_FILESYSTEM:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_GET_FILESYSTEM"))
goto out_browse;
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
goto out_browse;
} else {
p_charbuf2 = strdup(token);
}
if((token = strtok(NULL, ",")) == NULL) {
free(p_charbuf2);
goto out_browse;
} else {
searchstr = strdup(token);
}
2018-06-14 22:00:54 +00:00
n = mympd_put_browse(mpd.buf, p_charbuf2, uint_buf, searchstr);
free(searchstr);
free(p_charbuf2);
out_browse:
free(p_charbuf);
break;
2014-02-16 18:46:53 +00:00
break;
case MPD_API_ADD_TRACK:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_ADD_TRACK"))
goto out_add_track;
if((token = strtok(NULL, ",")) == NULL)
goto out_add_track;
free(p_charbuf);
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
mpd_run_add(mpd.conn, get_arg1(p_charbuf));
out_add_track:
free(p_charbuf);
2014-02-16 18:46:53 +00:00
break;
case MPD_API_ADD_PLAY_TRACK:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_ADD_PLAY_TRACK"))
goto out_play_track;
if((token = strtok(NULL, ",")) == NULL)
goto out_play_track;
free(p_charbuf);
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
int_buf = mpd_run_add_id(mpd.conn, get_arg1(p_charbuf));
if(int_buf != -1)
mpd_run_play_id(mpd.conn, int_buf);
out_play_track:
free(p_charbuf);
break;
case MPD_API_ADD_PLAYLIST:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_ADD_PLAYLIST"))
goto out_playlist;
if((token = strtok(NULL, ",")) == NULL)
goto out_playlist;
free(p_charbuf);
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
mpd_run_load(mpd.conn, get_arg1(p_charbuf));
out_playlist:
free(p_charbuf);
break;
2015-09-02 17:24:52 +00:00
case MPD_API_SAVE_QUEUE:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
2015-09-02 17:24:52 +00:00
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SAVE_QUEUE"))
goto out_save_queue;
if((token = strtok(NULL, ",")) == NULL)
goto out_save_queue;
free(p_charbuf);
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
mpd_run_save(mpd.conn, get_arg1(p_charbuf));
2015-09-02 17:24:52 +00:00
out_save_queue:
free(p_charbuf);
break;
2018-05-24 22:21:19 +00:00
case MPD_API_SEARCH_QUEUE:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
2018-05-24 22:21:19 +00:00
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SEARCH_QUEUE"))
goto out_search_queue;
if((token = strtok(NULL, ",")) == NULL) {
2018-05-24 22:21:19 +00:00
goto out_search_queue;
} else {
p_charbuf2 = strdup(token);
}
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
free(p_charbuf2);
goto out_search_queue;
} else {
searchstr = strdup(token);
}
2018-06-14 22:00:54 +00:00
n = mympd_search_queue(mpd.buf, p_charbuf2, uint_buf, searchstr);
free(searchstr);
free(p_charbuf2);
2018-05-24 22:21:19 +00:00
out_search_queue:
free(p_charbuf);
break;
case MPD_API_SEARCH_ADD:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SEARCH_ADD"))
goto out_search_add;
if((token = strtok(NULL, ",")) == NULL) {
goto out_search_add;
} else {
p_charbuf2 = strdup(token);
}
if((token = strtok(NULL, ",")) == NULL) {
free(p_charbuf2);
goto out_search_add;
} else {
searchstr = strdup(token);
}
2018-06-14 22:00:54 +00:00
n = mympd_search_add(mpd.buf, p_charbuf2, searchstr);
free(searchstr);
free(p_charbuf2);
out_search_add:
free(p_charbuf);
break;
case MPD_API_SEARCH:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SEARCH"))
goto out_search;
if((token = strtok(NULL, ",")) == NULL) {
goto out_search;
} else {
p_charbuf2 = strdup(token);
}
uint_buf = strtoul(strtok(NULL, ","), NULL, 10);
if((token = strtok(NULL, ",")) == NULL) {
free(p_charbuf2);
goto out_search;
} else {
searchstr = strdup(token);
}
2018-06-14 22:00:54 +00:00
n = mympd_search(mpd.buf, p_charbuf2, uint_buf, searchstr);
free(searchstr);
free(p_charbuf2);
out_search:
free(p_charbuf);
break;
2018-05-24 19:36:40 +00:00
case MPD_API_SEND_SHUFFLE:
mpd_run_shuffle(mpd.conn);
break;
case MPD_API_SEND_MESSAGE:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SEND_MESSAGE"))
goto out_send_message;
if((token = strtok(NULL, ",")) == NULL)
goto out_send_message;
free(p_charbuf);
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(get_arg1(msg.p));
if ( strtok(p_charbuf, ",") == NULL )
goto out_send_message;
if ( (token = strtok(NULL, ",")) == NULL )
goto out_send_message;
2018-05-27 21:34:39 +00:00
mpd_run_send_message(mpd.conn, p_charbuf, token);
out_send_message:
free(p_charbuf);
break;
case MPD_API_RM_PLAYLIST:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_RM_PLAYLIST"))
goto out_rm_playlist;
if((token = strtok(NULL, ",")) == NULL)
goto out_rm_playlist;
free(p_charbuf);
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
mpd_run_rm(mpd.conn, get_arg1(p_charbuf));
out_rm_playlist:
free(p_charbuf);
break;
case MPD_API_GET_SETTINGS:
n = mympd_put_settings(mpd.buf);
2014-02-16 18:46:53 +00:00
break;
2018-05-27 21:34:39 +00:00
case MPD_API_GET_STATS:
n = mympd_get_stats(mpd.buf);
break;
case MPD_API_SET_REPLAYGAIN:
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
if(strcmp(strtok(p_charbuf, ","), "MPD_API_SET_REPLAYGAIN"))
goto out_set_replaygain;
if((token = strtok(NULL, ",")) == NULL)
goto out_set_replaygain;
free(p_charbuf);
2018-06-12 00:07:03 +00:00
p_charbuf = strdup(msg.p);
mpd_send_command(mpd.conn, "replay_gain_mode", get_arg1(p_charbuf), NULL);
struct mpd_pair *pair;
while ((pair = mpd_recv_pair(mpd.conn)) != NULL) {
mpd_return_pair(mpd.conn, pair);
}
out_set_replaygain:
free(p_charbuf);
break;
2014-02-16 18:46:53 +00:00
}
2014-02-16 18:46:53 +00:00
if(mpd.conn_state == MPD_CONNECTED && mpd_connection_get_error(mpd.conn) != MPD_ERROR_SUCCESS)
{
2018-06-14 15:28:10 +00:00
#ifdef DEBUG
fprintf(stdout,"Error: %s\n",mpd_connection_get_error_message(mpd.conn));
2018-06-14 15:28:10 +00:00
#endif
2014-02-16 18:46:53 +00:00
n = snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"error\", \"data\": \"%s\"}",
mpd_connection_get_error_message(mpd.conn));
2013-11-09 01:07:03 +00:00
2014-02-16 18:46:53 +00:00
/* Try to recover error */
if (!mpd_connection_clear_error(mpd.conn))
mpd.conn_state = MPD_FAILURE;
2013-11-09 01:07:03 +00:00
}
2018-06-03 16:36:06 +00:00
if(n > 0) {
if(is_websocket(nc)) {
#ifdef DEBUG
fprintf(stdout,"Send response over websocket:\n %s\n",mpd.buf);
#endif
mg_send_websocket_frame(nc, WEBSOCKET_OP_TEXT, mpd.buf, n);
}
else {
#ifdef DEBUG
fprintf(stdout,"Send http response:\n %s\n",mpd.buf);
#endif
mg_send_http_chunk(nc, mpd.buf, n);
}
2018-06-03 16:36:06 +00:00
}
2014-02-16 18:46:53 +00:00
}
2018-06-14 22:00:54 +00:00
int mympd_close_handler(struct mg_connection *c)
2014-02-16 18:46:53 +00:00
{
/* Cleanup session data */
2018-06-12 01:09:24 +00:00
if(c->user_data)
free(c->user_data);
2013-11-09 01:07:03 +00:00
return 0;
2013-11-04 17:18:38 +00:00
}
2018-06-14 22:00:54 +00:00
static int mympd_notify_callback(struct mg_connection *c, const char *param) {
2014-02-16 18:46:53 +00:00
size_t n;
if(!is_websocket(c))
2018-06-12 00:07:03 +00:00
return 0;
2014-02-16 18:46:53 +00:00
2018-06-12 00:07:03 +00:00
if(param)
2014-02-16 18:46:53 +00:00
{
/* error message? */
n=snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"error\",\"data\":\"%s\"}",param);
2018-06-14 15:28:10 +00:00
#ifdef DEBUG
fprintf(stdout,"Error in mpd_notify_callback: %s\n",param);
2018-06-14 15:28:10 +00:00
#endif
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, mpd.buf, n);
2018-06-12 00:07:03 +00:00
return 0;
2014-02-16 18:46:53 +00:00
}
2018-06-12 01:09:24 +00:00
if(!c->user_data)
c->user_data = calloc(1, sizeof(struct t_mpd_client_session));
2014-02-16 18:46:53 +00:00
2018-06-12 01:09:24 +00:00
struct t_mpd_client_session *s = (struct t_mpd_client_session *)c->user_data;
2014-02-16 18:46:53 +00:00
if(mpd.conn_state != MPD_CONNECTED) {
n=snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"disconnected\"}");
2018-06-14 15:28:10 +00:00
#ifdef DEBUG
fprintf(stdout,"Notify: disconnected\n");
2018-06-14 15:28:10 +00:00
#endif
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, mpd.buf, n);
2014-02-16 18:46:53 +00:00
}
else
{
2018-06-14 15:28:10 +00:00
#ifdef DEBUG
fprintf(stdout,"Notify: %s\n",mpd.buf);
2018-06-14 15:28:10 +00:00
#endif
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, mpd.buf, mpd.buf_size);
2018-06-12 00:07:03 +00:00
if(s->song_id != mpd.song_id)
2014-02-16 18:46:53 +00:00
{
2018-06-14 22:00:54 +00:00
n=mympd_put_current_song(mpd.buf);
2018-06-14 15:28:10 +00:00
#ifdef DEBUG
fprintf(stdout,"Notify: %s\n",mpd.buf);
2018-06-14 15:28:10 +00:00
#endif
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, mpd.buf, n);
2018-06-11 17:33:11 +00:00
s->song_id = mpd.song_id;
2014-02-16 18:46:53 +00:00
}
2018-06-11 17:33:11 +00:00
if(s->queue_version != mpd.queue_version)
2014-02-16 18:46:53 +00:00
{
n=snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"update_queue\"}");
2018-06-14 15:28:10 +00:00
#ifdef DEBUG
fprintf(stdout,"Notify: update_queue\n");
2018-06-14 15:28:10 +00:00
#endif
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, mpd.buf, n);
2018-06-11 17:33:11 +00:00
s->queue_version = mpd.queue_version;
2014-02-16 18:46:53 +00:00
}
2018-06-07 22:26:35 +00:00
2014-02-16 18:46:53 +00:00
}
2018-06-12 00:07:03 +00:00
return 0;
2014-02-16 18:46:53 +00:00
}
2018-06-14 22:00:54 +00:00
void mympd_poll(struct mg_mgr *s)
2013-11-04 17:18:38 +00:00
{
2014-02-16 18:46:53 +00:00
switch (mpd.conn_state) {
2013-11-09 01:07:03 +00:00
case MPD_DISCONNECTED:
/* Try to connect */
2014-02-16 18:46:53 +00:00
fprintf(stdout, "MPD Connecting to %s:%d\n", mpd.host, mpd.port);
mpd.conn = mpd_connection_new(mpd.host, mpd.port, 3000);
if (mpd.conn == NULL) {
fprintf(stderr, "Out of memory.");
mpd.conn_state = MPD_FAILURE;
2013-11-09 01:07:03 +00:00
return;
}
2014-02-16 18:46:53 +00:00
if (mpd_connection_get_error(mpd.conn) != MPD_ERROR_SUCCESS) {
fprintf(stderr, "MPD connection: %s\n", mpd_connection_get_error_message(mpd.conn));
for (struct mg_connection *c = mg_next(s, NULL); c != NULL; c = mg_next(s, c))
{
2018-06-14 22:00:54 +00:00
mympd_notify_callback(c, mpd_connection_get_error_message(mpd.conn));
}
2014-02-16 18:46:53 +00:00
mpd.conn_state = MPD_FAILURE;
2013-11-09 01:07:03 +00:00
return;
}
2014-02-16 18:46:53 +00:00
if(mpd.password && !mpd_run_password(mpd.conn, mpd.password))
{
fprintf(stderr, "MPD connection: %s\n", mpd_connection_get_error_message(mpd.conn));
for (struct mg_connection *c = mg_next(s, NULL); c != NULL; c = mg_next(s, c))
{
2018-06-14 22:00:54 +00:00
mympd_notify_callback(c, mpd_connection_get_error_message(mpd.conn));
}
2014-02-16 18:46:53 +00:00
mpd.conn_state = MPD_FAILURE;
2013-11-09 01:07:03 +00:00
return;
}
2014-02-16 18:46:53 +00:00
fprintf(stderr, "MPD connected.\n");
mpd_connection_set_timeout(mpd.conn, 10000);
2014-02-16 18:46:53 +00:00
mpd.conn_state = MPD_CONNECTED;
2013-11-09 01:07:03 +00:00
break;
case MPD_FAILURE:
2014-02-16 18:46:53 +00:00
fprintf(stderr, "MPD connection failed.\n");
2013-11-09 01:07:03 +00:00
2014-02-16 18:46:53 +00:00
case MPD_DISCONNECT:
2014-02-04 16:58:10 +00:00
case MPD_RECONNECT:
2014-02-16 18:46:53 +00:00
if(mpd.conn != NULL)
mpd_connection_free(mpd.conn);
mpd.conn = NULL;
mpd.conn_state = MPD_DISCONNECTED;
2013-11-09 01:07:03 +00:00
break;
case MPD_CONNECTED:
2018-06-14 22:00:54 +00:00
mpd.buf_size = mympd_put_state(mpd.buf, &mpd.song_id, &mpd.next_song_id, &mpd.queue_version);
for (struct mg_connection *c = mg_next(s, NULL); c != NULL; c = mg_next(s, c))
{
2018-06-14 22:00:54 +00:00
mympd_notify_callback(c, NULL);
}
2013-11-09 01:07:03 +00:00
break;
}
2013-11-04 17:18:38 +00:00
}
2018-06-14 22:00:54 +00:00
char* mympd_get_title(struct mpd_song const *song)
2013-11-04 23:17:28 +00:00
{
2014-02-22 01:11:45 +00:00
char *str;
2013-11-05 23:15:24 +00:00
2013-11-09 01:07:03 +00:00
str = (char *)mpd_song_get_tag(song, MPD_TAG_TITLE, 0);
if(str == NULL){
str = basename((char *)mpd_song_get_uri(song));
}
2013-11-05 23:15:24 +00:00
return str;
2013-11-04 23:17:28 +00:00
}
2018-06-14 22:00:54 +00:00
char* mympd_get_track(struct mpd_song const *song)
2018-06-03 19:35:16 +00:00
{
char *str;
str = (char *)mpd_song_get_tag(song, MPD_TAG_TRACK, 0);
if(str == NULL){
str = "-";
}
return str;
}
2018-06-14 22:00:54 +00:00
char* mympd_get_album(struct mpd_song const *song)
{
char *str;
str = (char *)mpd_song_get_tag(song, MPD_TAG_ALBUM, 0);
if(str == NULL){
str = "-";
}
return str;
}
2018-06-14 22:00:54 +00:00
char* mympd_get_artist(struct mpd_song const *song)
{
char *str;
str = (char *)mpd_song_get_tag(song, MPD_TAG_ARTIST, 0);
if(str == NULL){
str = "-";
}
return str;
}
2018-06-14 22:00:54 +00:00
char* mympd_get_album_artist(struct mpd_song const *song)
2018-04-16 19:22:07 +00:00
{
char *str;
str = (char *)mpd_song_get_tag(song, MPD_TAG_ALBUM_ARTIST, 0);
if(str == NULL){
str = "-";
}
return str;
}
2018-06-14 22:00:54 +00:00
char* mympd_get_year(struct mpd_song const *song)
2014-11-20 19:17:16 +00:00
{
char *str;
str = (char *)mpd_song_get_tag(song, MPD_TAG_DATE, 0);
if(str == NULL){
str = "-";
2014-11-20 19:17:16 +00:00
}
return str;
}
2018-06-14 22:00:54 +00:00
int mympd_put_state(char *buffer, int *current_song_id, int *next_song_id, unsigned *queue_version)
2013-11-04 17:18:38 +00:00
{
2013-11-09 01:07:03 +00:00
struct mpd_status *status;
const struct mpd_audio_format *audioformat;
2018-06-17 22:42:22 +00:00
struct mpd_output *output;
int len;
int nr;
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
2013-11-09 01:07:03 +00:00
2014-02-16 18:46:53 +00:00
status = mpd_run_status(mpd.conn);
2013-11-09 01:07:03 +00:00
if (!status) {
2014-02-16 18:46:53 +00:00
fprintf(stderr, "MPD mpd_run_status: %s\n", mpd_connection_get_error_message(mpd.conn));
mpd.conn_state = MPD_FAILURE;
2013-11-09 01:07:03 +00:00
return 0;
}
if (status) {
audioformat = mpd_status_get_audio_format(status);
}
2018-06-17 22:42:22 +00:00
len = json_printf(&out,"{type:state, data:{"
"state:%d, volume:%d, songpos: %d, elapsedTime: %d, "
"totalTime:%d, currentsongid: %d, kbitrate: %d, "
"audioformat: { sample_rate: %d, bits: %d, channels: %d}, "
"queue_length: %d, nextsongpos: %d, nextsongid: %d, "
"queue_version: %d",
mpd_status_get_state(status),
mpd_status_get_volume(status),
mpd_status_get_song_pos(status),
mpd_status_get_elapsed_time(status),
mpd_status_get_total_time(status),
mpd_status_get_song_id(status),
mpd_status_get_kbit_rate(status),
audioformat ? audioformat->sample_rate : 0,
audioformat ? audioformat->bits : 0,
audioformat ? audioformat->channels : 0,
mpd_status_get_queue_length(status),
mpd_status_get_next_song_pos(status),
mpd_status_get_next_song_id(status),
mpd_status_get_queue_version(status)
);
len += json_printf(&out, ",outputs: {");
mpd_send_outputs(mpd.conn);
2018-06-17 22:42:22 +00:00
nr=0;
while ((output = mpd_recv_output(mpd.conn)) != NULL) {
if (nr++) len += json_printf(&out, ",");
len += json_printf(&out, "\"%d\":%d",
mpd_output_get_id(output),
mpd_output_get_enabled(output)
);
mpd_output_free(output);
}
if (!mpd_response_finish(mpd.conn)) {
fprintf(stderr, "MPD outputs: %s\n", mpd_connection_get_error_message(mpd.conn));
mpd_connection_clear_error(mpd.conn);
}
2018-06-17 22:42:22 +00:00
len += json_printf(&out, "}}}");
2013-11-09 01:07:03 +00:00
2014-01-17 15:26:26 +00:00
*current_song_id = mpd_status_get_song_id(status);
*next_song_id = mpd_status_get_next_song_id(status);
2014-01-17 15:26:26 +00:00
*queue_version = mpd_status_get_queue_version(status);
2013-11-09 01:07:03 +00:00
mpd_status_free(status);
2018-06-17 22:42:22 +00:00
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
return len;
2013-11-04 17:18:38 +00:00
}
int mympd_put_welcome(char *buffer)
{
int len;
2018-06-17 22:42:22 +00:00
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
len = json_printf(&out, "{type: %Q, data: { version: %Q}}", "welcome", MYMPD_VERSION);
2018-06-17 22:42:22 +00:00
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
return len;
}
int mympd_put_settings(char *buffer)
{
struct mpd_status *status;
char *replaygain;
2018-06-17 22:42:22 +00:00
int len;
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
status = mpd_run_status(mpd.conn);
if (!status) {
fprintf(stderr, "MPD mpd_run_status: %s\n", mpd_connection_get_error_message(mpd.conn));
mpd.conn_state = MPD_FAILURE;
return 0;
}
mpd_send_command(mpd.conn, "replay_gain_status", NULL);
struct mpd_pair *pair;
while ((pair = mpd_recv_pair(mpd.conn)) != NULL) {
replaygain=strdup(pair->value);
mpd_return_pair(mpd.conn, pair);
}
2018-06-17 22:42:22 +00:00
len = json_printf(&out,
"{type:settings, data:{"
"repeat:%d, single:%d, crossfade:%d, consume:%d, random:%d, "
"mixrampdb: %f, mixrampdelay: %f, mpdhost : %Q, mpdport: %d, passwort_set: %B, "
"streamport: %d, coverimage: %Q, max_elements_per_page: %d, replaygain: %Q"
"}}",
mpd_status_get_repeat(status),
mpd_status_get_single(status),
mpd_status_get_crossfade(status),
mpd_status_get_consume(status),
mpd_status_get_random(status),
mpd_status_get_mixrampdb(status),
mpd_status_get_mixrampdelay(status),
mpd.host, mpd.port,
mpd.password ? "true" : "false",
streamport, coverimage,
MAX_ELEMENTS_PER_PAGE,
replaygain
);
mpd_status_free(status);
2018-06-17 22:42:22 +00:00
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
return len;
}
2018-06-14 22:00:54 +00:00
int mympd_put_outputnames(char *buffer)
2015-04-28 09:08:21 +00:00
{
2018-06-17 22:42:22 +00:00
struct mpd_output *output;
int len;
int nr;
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
2018-06-17 22:42:22 +00:00
len = json_printf(&out,"{type: outputnames, data:{");
2018-06-17 22:42:22 +00:00
mpd_send_outputs(mpd.conn);
nr=0;
while ((output = mpd_recv_output(mpd.conn)) != NULL) {
if (nr++) len += json_printf(&out, ",");
len += json_printf(&out,"\"%d\":%Q",
mpd_output_get_id(output),
mpd_output_get_name(output)
);
mpd_output_free(output);
2015-04-28 09:08:21 +00:00
}
2015-05-01 22:07:37 +00:00
if (!mpd_response_finish(mpd.conn)) {
fprintf(stderr, "MPD outputs: %s\n", mpd_connection_get_error_message(mpd.conn));
2015-05-01 22:07:37 +00:00
mpd_connection_clear_error(mpd.conn);
}
2018-06-17 22:42:22 +00:00
len += json_printf(&out,"}}");
2018-06-17 22:42:22 +00:00
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
return len;
2015-04-28 09:08:21 +00:00
}
2018-06-14 22:00:54 +00:00
int mympd_put_current_song(char *buffer)
2013-11-04 17:18:38 +00:00
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
2013-11-09 01:07:03 +00:00
struct mpd_song *song;
2013-11-04 17:18:38 +00:00
2014-02-16 18:46:53 +00:00
song = mpd_run_current_song(mpd.conn);
2013-11-09 01:07:03 +00:00
if(song == NULL)
return 0;
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "{\"type\": \"song_change\", \"data\":{\"pos\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_pos(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_title(song));
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_artist(song));
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, ",\"uri\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_song_get_uri(song));
2018-06-11 17:33:11 +00:00
cur += json_emit_raw_str(cur, end - cur, ",\"currentsongid\":");
cur += json_emit_int(cur, end - cur, mpd.song_id);
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "}}");
2018-06-07 22:26:35 +00:00
2013-11-09 01:07:03 +00:00
mpd_song_free(song);
2014-02-16 18:46:53 +00:00
mpd_response_finish(mpd.conn);
2013-11-09 01:07:03 +00:00
return cur - buffer;
2013-11-04 17:18:38 +00:00
}
2018-06-14 22:00:54 +00:00
int mympd_put_queue(char *buffer, unsigned int offset)
2013-11-04 17:18:38 +00:00
{
2013-11-09 01:07:03 +00:00
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_entity *entity;
unsigned long totalTime = 0;
unsigned long entity_count = 0;
unsigned long entities_returned = 0;
2013-11-04 17:18:38 +00:00
if (!mpd_send_list_queue_range_meta(mpd.conn, 0, -1))
RETURN_ERROR_AND_RECOVER("mpd_send_list_queue_meta");
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"queue\",\"data\":[ ");
2013-11-04 17:18:38 +00:00
2014-02-16 18:46:53 +00:00
while((entity = mpd_recv_entity(mpd.conn)) != NULL) {
2013-11-07 09:09:40 +00:00
const struct mpd_song *song;
unsigned int drtn;
2013-11-04 17:18:38 +00:00
2013-11-09 01:07:03 +00:00
if(mpd_entity_get_type(entity) == MPD_ENTITY_TYPE_SONG) {
song = mpd_entity_get_song(entity);
drtn = mpd_song_get_duration(song);
totalTime += drtn;
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
entities_returned ++;
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_raw_str(cur, end - cur, ",\"artist\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_artist(song));
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_title(song));
cur += json_emit_raw_str(cur, end - cur, "},");
}
2013-11-09 01:07:03 +00:00
}
mpd_entity_free(entity);
}
/* remove last ',' */
cur--;
2014-02-22 01:11:45 +00:00
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, ",\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, "}");
2013-11-09 01:07:03 +00:00
return cur - buffer;
2013-11-07 09:09:40 +00:00
}
2013-11-04 17:18:38 +00:00
2018-06-14 22:00:54 +00:00
int mympd_put_browse(char *buffer, char *path, unsigned int offset, char *filter)
2013-11-07 09:09:40 +00:00
{
2013-11-09 01:07:03 +00:00
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_entity *entity;
const struct mpd_playlist *pl;
2014-02-22 01:11:45 +00:00
unsigned int entity_count = 0;
unsigned int entities_returned = 0;
const char *entityName;
2013-11-09 01:07:03 +00:00
if (!mpd_send_list_meta(mpd.conn, path))
RETURN_ERROR_AND_RECOVER("mpd_send_list_meta");
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"browse\",\"data\":[ ");
2013-11-07 09:09:40 +00:00
2014-02-16 18:46:53 +00:00
while((entity = mpd_recv_entity(mpd.conn)) != NULL) {
2013-11-07 09:09:40 +00:00
const struct mpd_song *song;
const struct mpd_directory *dir;
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
switch (mpd_entity_get_type(entity)) {
case MPD_ENTITY_TYPE_UNKNOWN:
entity_count --;
break;
case MPD_ENTITY_TYPE_SONG:
song = mpd_entity_get_song(entity);
2018-06-14 22:00:54 +00:00
entityName = mympd_get_title(song);
2018-06-10 21:15:33 +00:00
if (strncmp(filter,"-",1) == 0 || strncasecmp(filter,entityName,1) == 0 ||
( strncmp(filter,"0",1) == 0 && isalpha(*entityName) == 0 )
) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"song\",\"uri\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_song_get_uri(song));
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_artist(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_raw_str(cur, end - cur, ",\"title\":");
cur += json_emit_quoted_str(cur, end - cur, entityName);
cur += json_emit_raw_str(cur, end - cur, "},");
} else {
entity_count --;
}
break;
case MPD_ENTITY_TYPE_DIRECTORY:
dir = mpd_entity_get_directory(entity);
entityName = mpd_directory_get_path(dir);
char *dirName = strrchr(entityName, '/');
if (dirName != NULL) {
dirName ++;
} else {
dirName = strdup(entityName);
}
2018-06-10 21:15:33 +00:00
if (strncmp(filter,"-",1) == 0 || strncasecmp(filter,dirName,1) == 0 ||
( strncmp(filter,"0",1) == 0 && isalpha(*dirName) == 0 )
) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"directory\",\"dir\":");
cur += json_emit_quoted_str(cur, end - cur, entityName);
cur += json_emit_raw_str(cur, end - cur, "},");
} else {
entity_count --;
}
break;
case MPD_ENTITY_TYPE_PLAYLIST:
pl = mpd_entity_get_playlist(entity);
entityName = mpd_playlist_get_path(pl);
char *plName = strrchr(entityName, '/');
if (plName != NULL) {
plName ++;
} else {
plName = strdup(entityName);
}
2018-06-10 21:15:33 +00:00
if (strncmp(filter,"-",1) == 0 || strncasecmp(filter,plName,1) == 0 ||
( strncmp(filter,"0",1) == 0 && isalpha(*plName) == 0 )
) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"playlist\",\"plist\":");
cur += json_emit_quoted_str(cur, end - cur, entityName );
cur += json_emit_raw_str(cur, end - cur, "},");
} else {
entity_count --;
}
break;
}
2013-11-07 09:09:40 +00:00
}
2013-11-09 01:07:03 +00:00
mpd_entity_free(entity);
}
2013-11-04 17:18:38 +00:00
2014-02-16 18:46:53 +00:00
if (mpd_connection_get_error(mpd.conn) != MPD_ERROR_SUCCESS || !mpd_response_finish(mpd.conn)) {
fprintf(stderr, "MPD mpd_send_list_meta: %s\n", mpd_connection_get_error_message(mpd.conn));
mpd.conn_state = MPD_FAILURE;
2013-11-07 09:09:40 +00:00
return 0;
}
2013-11-09 01:07:03 +00:00
/* remove last ',' */
cur--;
cur += json_emit_raw_str(cur, end - cur, "],\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, ",\"filter\":");
cur += json_emit_quoted_str(cur, end - cur, filter);
cur += json_emit_raw_str(cur, end - cur, "}");
2013-11-09 01:07:03 +00:00
return cur - buffer;
}
2014-02-16 18:46:53 +00:00
int mympd_put_db_tag(char *buffer, unsigned int offset, char *mpdtagtype, char *mpdsearchtagtype, char *searchstr, char *filter)
2018-06-03 16:36:06 +00:00
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_pair *pair;
unsigned long entity_count = 0;
unsigned long entities_returned = 0;
if(mpd_search_db_tags(mpd.conn, mpd_tag_name_parse(mpdtagtype)) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_db_tags");
if (mpd_tag_name_parse(mpdsearchtagtype) != MPD_TAG_UNKNOWN) {
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, mpd_tag_name_parse(mpdsearchtagtype), searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
}
if(mpd_search_commit(mpd.conn) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"listDBtags\",\"data\":[ ");
while((pair = mpd_recv_pair_tag(mpd.conn, mpd_tag_name_parse(mpdtagtype))) != NULL) {
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
2018-06-10 21:15:33 +00:00
if (strncmp(filter,"-",1) == 0 || strncasecmp(filter,pair->value,1) == 0 ||
( strncmp(filter,"0",1) == 0 && isalpha(*pair->value) == 0 )
) {
2018-06-03 16:36:06 +00:00
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":");
cur += json_emit_quoted_str(cur, end - cur, mpdtagtype);
cur += json_emit_raw_str(cur, end - cur, ",\"value\":");
cur += json_emit_quoted_str(cur, end - cur, pair->value);
cur += json_emit_raw_str(cur, end - cur, "},");
} else {
entity_count --;
2018-06-03 16:36:06 +00:00
}
}
mpd_return_pair(mpd.conn, pair);
}
2018-06-03 16:36:06 +00:00
/* remove last ',' */
cur--;
cur += json_emit_raw_str(cur, end - cur, "]");
cur += json_emit_raw_str(cur, end - cur, ",\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, ",\"tagtype\":");
cur += json_emit_quoted_str(cur, end - cur, mpdtagtype);
cur += json_emit_raw_str(cur, end - cur, ",\"searchtagtype\":");
cur += json_emit_quoted_str(cur, end - cur, mpdsearchtagtype);
cur += json_emit_raw_str(cur, end - cur, ",\"searchstr\":");
cur += json_emit_quoted_str(cur, end - cur, searchstr);
cur += json_emit_raw_str(cur, end - cur, ",\"filter\":");
cur += json_emit_quoted_str(cur, end - cur, filter);
cur += json_emit_raw_str(cur, end - cur, "}");
2018-06-03 16:36:06 +00:00
return cur - buffer;
}
int mympd_put_songs_in_album(char *buffer, char *albumartist, char *album)
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_song *song;
unsigned long entity_count = 0;
unsigned long entities_returned = 0;
2018-06-03 19:35:16 +00:00
if(mpd_search_db_songs(mpd.conn, true) == false) {
2018-06-03 16:36:06 +00:00
RETURN_ERROR_AND_RECOVER("mpd_search_db_songs");
}
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, MPD_TAG_ALBUM_ARTIST, albumartist) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, MPD_TAG_ALBUM, album) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
if(mpd_search_commit(mpd.conn) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
else {
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"listTitles\",\"data\":[ ");
while((song = mpd_recv_song(mpd.conn)) != NULL) {
entity_count ++;
if(entity_count <= MAX_ELEMENTS_PER_PAGE) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"song\"");
cur += json_emit_raw_str(cur, end - cur, ",\"uri\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_song_get_uri(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_raw_str(cur, end - cur, ",\"title\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_title(song));
2018-06-03 19:35:16 +00:00
cur += json_emit_raw_str(cur, end - cur, ",\"track\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_track(song));
2018-06-03 16:36:06 +00:00
cur += json_emit_raw_str(cur, end - cur, "},");
}
mpd_song_free(song);
}
/* remove last ',' */
cur--;
cur += json_emit_raw_str(cur, end - cur, "]");
cur += json_emit_raw_str(cur, end - cur, ",\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, ",\"albumartist\":");
cur += json_emit_quoted_str(cur, end - cur, albumartist);
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
cur += json_emit_quoted_str(cur, end - cur, album);
cur += json_emit_raw_str(cur, end - cur, "}");
}
return cur - buffer;
}
int mympd_put_playlists(char *buffer, unsigned int offset, char *filter)
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_playlist *pl;
unsigned int entity_count = 0;
unsigned int entities_returned = 0;
const char *plpath;
if (!mpd_send_list_playlists(mpd.conn))
RETURN_ERROR_AND_RECOVER("mpd_send_lists_playlists");
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"playlists\",\"data\":[ ");
while((pl = mpd_recv_playlist(mpd.conn)) != NULL) {
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
plpath = mpd_playlist_get_path(pl);
2018-06-10 21:15:33 +00:00
if (strncmp(filter,"-",1) == 0 || strncasecmp(filter,plpath,1) == 0 ||
( strncmp(filter,"0",1) == 0 && isalpha(*plpath) == 0 )
) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"playlist\",\"plist\":");
cur += json_emit_quoted_str(cur, end - cur, plpath);
cur += json_emit_raw_str(cur, end - cur, ",\"last_modified\":");
cur += json_emit_int(cur, end - cur, mpd_playlist_get_last_modified(pl));
cur += json_emit_raw_str(cur, end - cur, "},");
} else {
entity_count --;
}
}
mpd_playlist_free(pl);
}
2018-06-03 16:36:06 +00:00
if (mpd_connection_get_error(mpd.conn) != MPD_ERROR_SUCCESS || !mpd_response_finish(mpd.conn))
RETURN_ERROR_AND_RECOVER("mpd_send_list_playlists");
/* remove last ',' */
cur--;
cur += json_emit_raw_str(cur, end - cur, "],\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, "}");
return cur - buffer;
}
2018-06-14 22:00:54 +00:00
int mympd_search(char *buffer, char *mpdtagtype, unsigned int offset, char *searchstr)
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_song *song;
unsigned long entity_count = 0;
unsigned long entities_returned = 0;
if(mpd_search_db_songs(mpd.conn, false) == false) {
RETURN_ERROR_AND_RECOVER("mpd_search_db_songs");
}
if (mpd_tag_name_parse(mpdtagtype) != MPD_TAG_UNKNOWN) {
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, mpd_tag_name_parse(mpdtagtype), searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
}
else {
if (mpd_search_add_any_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_any_tag_constraint");
}
if(mpd_search_commit(mpd.conn) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
else {
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"search\",\"data\":[ ");
while((song = mpd_recv_song(mpd.conn)) != NULL) {
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
entities_returned ++;
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"song\"");
cur += json_emit_raw_str(cur, end - cur, ",\"uri\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_song_get_uri(song));
cur += json_emit_raw_str(cur, end - cur, ",\"album\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_album(song));
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_artist(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_raw_str(cur, end - cur, ",\"title\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_title(song));
cur += json_emit_raw_str(cur, end - cur, "},");
2018-05-24 22:21:19 +00:00
}
mpd_song_free(song);
}
2018-05-24 22:21:19 +00:00
/* remove last ',' */
cur--;
cur += json_emit_raw_str(cur, end - cur, "]");
cur += json_emit_raw_str(cur, end - cur, ",\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, ",\"mpdtagtype\":");
cur += json_emit_quoted_str(cur, end - cur, mpdtagtype);
cur += json_emit_raw_str(cur, end - cur, "}");
2018-05-24 22:21:19 +00:00
}
return cur - buffer;
}
2018-06-14 22:00:54 +00:00
int mympd_search_add(char *buffer,char *mpdtagtype, char *searchstr)
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_song *song;
if(mpd_search_add_db_songs(mpd.conn, false) == false) {
RETURN_ERROR_AND_RECOVER("mpd_search_add_db_songs");
}
if (mpd_tag_name_parse(mpdtagtype) != MPD_TAG_UNKNOWN) {
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, mpd_tag_name_parse(mpdtagtype), searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
}
else {
if (mpd_search_add_any_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_any_tag_constraint");
}
if(mpd_search_commit(mpd.conn) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
while((song = mpd_recv_song(mpd.conn)) != NULL) {
mpd_song_free(song);
}
return cur - buffer;
}
2018-06-14 22:00:54 +00:00
int mympd_search_queue(char *buffer, char *mpdtagtype, unsigned int offset, char *searchstr)
2018-05-24 22:21:19 +00:00
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_song *song;
unsigned long entity_count = 0;
unsigned long entities_returned = 0;
2018-05-24 22:21:19 +00:00
if(mpd_search_queue_songs(mpd.conn, false) == false) {
2018-05-24 22:21:19 +00:00
RETURN_ERROR_AND_RECOVER("mpd_search_queue_songs");
}
if (mpd_tag_name_parse(mpdtagtype) != MPD_TAG_UNKNOWN) {
if (mpd_search_add_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, mpd_tag_name_parse(mpdtagtype), searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_tag_constraint");
}
else {
if (mpd_search_add_any_tag_constraint(mpd.conn, MPD_OPERATOR_DEFAULT, searchstr) == false)
RETURN_ERROR_AND_RECOVER("mpd_search_add_any_tag_constraint");
}
if(mpd_search_commit(mpd.conn) == false)
2018-05-24 22:21:19 +00:00
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
else {
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"queuesearch\",\"data\":[ ");
while((song = mpd_recv_song(mpd.conn)) != NULL) {
entity_count ++;
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
entities_returned ++;
2018-05-24 23:08:33 +00:00
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"song\"");
2018-05-24 22:21:19 +00:00
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, ",\"album\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_album(song));
2018-05-24 22:21:19 +00:00
cur += json_emit_raw_str(cur, end - cur, ",\"artist\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_artist(song));
2018-05-24 22:21:19 +00:00
cur += json_emit_raw_str(cur, end - cur, ",\"duration\":");
cur += json_emit_int(cur, end - cur, mpd_song_get_duration(song));
cur += json_emit_raw_str(cur, end - cur, ",\"title\":");
2018-06-14 22:00:54 +00:00
cur += json_emit_quoted_str(cur, end - cur, mympd_get_title(song));
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "},");
mpd_song_free(song);
}
}
cur--;
2014-02-22 01:11:45 +00:00
cur += json_emit_raw_str(cur, end - cur, "]");
cur += json_emit_raw_str(cur, end - cur, ",\"totalEntities\":");
cur += json_emit_int(cur, end - cur, entity_count);
cur += json_emit_raw_str(cur, end - cur, ",\"offset\":");
cur += json_emit_int(cur, end - cur, offset);
cur += json_emit_raw_str(cur, end - cur, ",\"returnedEntities\":");
cur += json_emit_int(cur, end - cur, entities_returned);
cur += json_emit_raw_str(cur, end - cur, ",\"mpdtagtype\":");
cur += json_emit_quoted_str(cur, end - cur, mpdtagtype);
cur += json_emit_raw_str(cur, end - cur, "}");
}
2013-11-09 01:07:03 +00:00
return cur - buffer;
}
2018-05-27 21:34:39 +00:00
int mympd_get_stats(char *buffer)
{
char *cur = buffer;
const char *end = buffer + MAX_SIZE;
struct mpd_stats *stats = mpd_run_stats(mpd.conn);
2018-05-31 23:29:45 +00:00
const unsigned *version = mpd_connection_get_server_version(mpd.conn);
char mpd_version[20];
snprintf(mpd_version,20,"%i.%i.%i", version[0], version[1], version[2]);
2018-05-27 21:34:39 +00:00
if (stats == NULL)
RETURN_ERROR_AND_RECOVER("mympd_get_stats");
cur += json_emit_raw_str(cur, end - cur, "{\"type\":\"mpdstats\",\"data\": {");
cur += json_emit_raw_str(cur, end - cur, "\"artists\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_number_of_artists(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"albums\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_number_of_albums(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"songs\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_number_of_songs(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"playtime\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_play_time(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"uptime\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_uptime(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"dbupdated\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_db_update_time(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"dbplaytime\":");
cur += json_emit_int(cur, end - cur, mpd_stats_get_db_play_time(stats));
cur += json_emit_raw_str(cur, end - cur, ",\"mympd_version\":");
2018-05-31 23:29:45 +00:00
cur += json_emit_quoted_str(cur, end - cur, MYMPD_VERSION);
cur += json_emit_raw_str(cur, end - cur, ",\"mpd_version\":");
cur += json_emit_quoted_str(cur, end - cur, mpd_version);
2018-05-27 21:34:39 +00:00
cur += json_emit_raw_str(cur, end - cur, "}}");
mpd_stats_free(stats);
return cur - buffer;
}
2018-06-14 22:00:54 +00:00
void mympd_disconnect()
2014-02-16 18:46:53 +00:00
{
mpd.conn_state = MPD_DISCONNECT;
2018-06-14 22:00:54 +00:00
mympd_poll(NULL);
2014-03-18 00:30:01 +00:00
}