2018-05-24 17:50:05 +00:00
|
|
|
/* myMPD
|
|
|
|
(c) 2018 Juergen Mang <mail@jcgames.de>
|
|
|
|
This project's homepage is: https://github.com/jcorporation/ympd
|
|
|
|
|
|
|
|
myMPD ist fork of:
|
|
|
|
|
|
|
|
ympd
|
2014-02-22 00:57:26 +00:00
|
|
|
(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
|
2014-02-22 00:57:26 +00:00
|
|
|
|
|
|
|
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
|
|
|
*/
|
|
|
|
|
2014-01-08 01:23:02 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <libgen.h>
|
2018-06-03 08:52:38 +00:00
|
|
|
#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"
|
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
|
|
|
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-18 19:55:54 +00:00
|
|
|
void callback_mympd(struct mg_connection *nc, const struct mg_str msg)
|
2018-06-14 22:57:57 +00:00
|
|
|
{
|
|
|
|
size_t n = 0;
|
|
|
|
char *cmd;
|
2018-06-18 19:55:54 +00:00
|
|
|
unsigned int uint_buf1, uint_buf2;
|
|
|
|
int je, int_buf;
|
2018-06-14 22:57:57 +00:00
|
|
|
float float_buf;
|
2018-06-18 19:55:54 +00:00
|
|
|
char *p_charbuf1, *p_charbuf2;
|
2018-06-19 22:43:36 +00:00
|
|
|
FILE *fp;
|
2018-06-14 22:57:57 +00:00
|
|
|
|
|
|
|
#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) {
|
2018-06-19 22:43:36 +00:00
|
|
|
case MPD_API_SET_MYMPD_SETTINGS:
|
|
|
|
fp = fopen(mpd.statefile,"w");
|
|
|
|
if(fp != NULL) {
|
|
|
|
fprintf(fp,"%.*s",msg.len,msg.p);
|
|
|
|
fclose(fp);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr,"Cant write state file\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MPD_API_GET_MYMPD_SETTINGS:
|
|
|
|
fp = fopen(mpd.statefile,"r");
|
|
|
|
if(fp != NULL) {
|
|
|
|
fgets(mpd.buf, MAX_SIZE, fp);
|
|
|
|
fclose(fp);
|
|
|
|
n=strlen(mpd.buf);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MPD_API_SET_MPD_SETTINGS:
|
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { random:%u } }", &uint_buf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_random(mpd.conn, uint_buf1);
|
|
|
|
|
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { repeat:%u } }", &uint_buf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_repeat(mpd.conn, uint_buf1);
|
|
|
|
|
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { consume:%u } }", &uint_buf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_consume(mpd.conn, uint_buf1);
|
|
|
|
|
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { single:%u } }", &uint_buf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_single(mpd.conn, uint_buf1);
|
|
|
|
|
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { crossfade:%u } }", &uint_buf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_crossfade(mpd.conn, uint_buf1);
|
|
|
|
|
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { mixrampdb:%f } }", &float_buf);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_mixrampdb(mpd.conn, float_buf);
|
|
|
|
|
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { mixrampdelay:%f } }", &float_buf);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_mixrampdelay(mpd.conn, float_buf);
|
|
|
|
|
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { replaygain:%Q } }", &p_charbuf1);
|
|
|
|
if (je == 1)
|
|
|
|
{
|
|
|
|
mpd_send_command(mpd.conn, "replay_gain_mode", p_charbuf1, NULL);
|
|
|
|
struct mpd_pair *pair;
|
|
|
|
while ((pair = mpd_recv_pair(mpd.conn)) != NULL) {
|
|
|
|
mpd_return_pair(mpd.conn, pair);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(p_charbuf1);
|
|
|
|
break;
|
2018-06-14 22:57:57 +00:00
|
|
|
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);
|
2018-06-19 22:43:36 +00:00
|
|
|
break;
|
2018-06-14 20:19:36 +00:00
|
|
|
case MPD_API_WELCOME:
|
2018-06-19 22:43:36 +00:00
|
|
|
n = mympd_put_welcome(mpd.buf);
|
|
|
|
break;
|
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-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { track:%u } }", &uint_buf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_delete_id(mpd.conn, uint_buf1);
|
2014-02-16 18:46:53 +00:00
|
|
|
break;
|
2017-04-08 09:25:40 +00:00
|
|
|
case MPD_API_RM_RANGE:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { start:%u, end:%u } }", &uint_buf1, &uint_buf2);
|
|
|
|
if (je == 2)
|
|
|
|
mpd_run_delete_range(mpd.conn, uint_buf1, uint_buf2);
|
2017-04-08 09:25:40 +00:00
|
|
|
break;
|
2015-09-04 14:43:16 +00:00
|
|
|
case MPD_API_MOVE_TRACK:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { track:%u, pos:%u } }", &uint_buf1, &uint_buf2);
|
|
|
|
if (je == 2)
|
2015-09-04 14:43:16 +00:00
|
|
|
{
|
2018-06-18 19:55:54 +00:00
|
|
|
uint_buf1 -= 1;
|
|
|
|
uint_buf2 -= 1;
|
|
|
|
mpd_run_move(mpd.conn, uint_buf1, uint_buf2);
|
2015-09-04 14:43:16 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-02-16 18:46:53 +00:00
|
|
|
case MPD_API_PLAY_TRACK:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { track:%u } }", &uint_buf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_play_id(mpd.conn, uint_buf1);
|
2014-02-16 18:46:53 +00:00
|
|
|
break;
|
2018-06-14 19:56:12 +00:00
|
|
|
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-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { output:%u, state:%u } }", &uint_buf1, &uint_buf2);
|
|
|
|
if (je == 2)
|
|
|
|
{
|
|
|
|
if (uint_buf2)
|
|
|
|
mpd_run_enable_output(mpd.conn, uint_buf1);
|
2015-04-28 09:08:21 +00:00
|
|
|
else
|
2018-06-18 19:55:54 +00:00
|
|
|
mpd_run_disable_output(mpd.conn, uint_buf1);
|
2015-04-28 09:08:21 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-02-16 18:46:53 +00:00
|
|
|
case MPD_API_SET_VOLUME:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { volume:%u } }", &uint_buf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_set_volume(mpd.conn, uint_buf1);
|
2014-02-16 18:46:53 +00:00
|
|
|
break;
|
|
|
|
case MPD_API_SET_SEEK:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { songid:%u, seek:%u } }", &uint_buf1, &uint_buf2);
|
|
|
|
if (je == 2)
|
|
|
|
mpd_run_seek_id(mpd.conn, uint_buf1, uint_buf2);
|
2014-02-16 18:46:53 +00:00
|
|
|
break;
|
2014-02-22 01:11:45 +00:00
|
|
|
case MPD_API_GET_QUEUE:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { offset:%u } }", &uint_buf1);
|
|
|
|
if (je == 1)
|
|
|
|
n = mympd_put_queue(mpd.buf, uint_buf1);
|
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-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { offset:%u, filter:%Q } }", &uint_buf1, &p_charbuf1);
|
|
|
|
if (je == 2)
|
|
|
|
n = mympd_put_db_tag(mpd.buf, uint_buf1, "AlbumArtist","","",p_charbuf1);
|
|
|
|
free(p_charbuf1);
|
2018-06-03 16:36:06 +00:00
|
|
|
break;
|
|
|
|
case MPD_API_GET_ARTISTALBUMS:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { offset:%u, filter:%Q, albumartist:%Q } }", &uint_buf1, &p_charbuf1, &p_charbuf2);
|
|
|
|
if (je == 3)
|
|
|
|
n = mympd_put_db_tag(mpd.buf, uint_buf1, "Album", "AlbumArtist", p_charbuf2, p_charbuf1);
|
|
|
|
free(p_charbuf1);
|
2018-06-04 18:31:05 +00:00
|
|
|
free(p_charbuf2);
|
2018-06-03 16:36:06 +00:00
|
|
|
break;
|
2018-05-28 22:05:56 +00:00
|
|
|
case MPD_API_GET_PLAYLISTS:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { offset:%u, filter:%Q } }", &uint_buf1, &p_charbuf1);
|
|
|
|
if (je == 2)
|
|
|
|
n = mympd_put_playlists(mpd.buf, uint_buf1, p_charbuf1);
|
|
|
|
free(p_charbuf1);
|
2018-05-28 22:05:56 +00:00
|
|
|
break;
|
2018-06-14 19:56:12 +00:00
|
|
|
case MPD_API_GET_FILESYSTEM:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { offset:%u, filter:%Q, path:%Q } }", &uint_buf1, &p_charbuf1, &p_charbuf2);
|
|
|
|
if (je == 3)
|
|
|
|
n = mympd_put_browse(mpd.buf, p_charbuf2, uint_buf1, p_charbuf1);
|
|
|
|
free(p_charbuf1);
|
2018-06-03 08:52:38 +00:00
|
|
|
free(p_charbuf2);
|
2014-02-16 18:46:53 +00:00
|
|
|
break;
|
|
|
|
case MPD_API_ADD_TRACK:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { uri:%Q } }", &p_charbuf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_add(mpd.conn, p_charbuf1);
|
|
|
|
free(p_charbuf1);
|
2014-02-16 18:46:53 +00:00
|
|
|
break;
|
|
|
|
case MPD_API_ADD_PLAY_TRACK:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { uri:%Q } }", &p_charbuf1);
|
|
|
|
if (je == 1) {
|
|
|
|
int_buf = mpd_run_add_id(mpd.conn, p_charbuf1);
|
|
|
|
if(int_buf != -1)
|
|
|
|
mpd_run_play_id(mpd.conn, int_buf);
|
|
|
|
}
|
|
|
|
free(p_charbuf1);
|
2014-02-22 00:57:26 +00:00
|
|
|
break;
|
|
|
|
case MPD_API_ADD_PLAYLIST:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { plist:%Q } }", &p_charbuf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_load(mpd.conn, p_charbuf1);
|
|
|
|
free(p_charbuf1);
|
2014-02-22 00:57:26 +00:00
|
|
|
break;
|
2015-09-02 17:24:52 +00:00
|
|
|
case MPD_API_SAVE_QUEUE:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { plist:%Q } }", &p_charbuf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_save(mpd.conn, p_charbuf1);
|
|
|
|
free(p_charbuf1);
|
2015-09-02 17:24:52 +00:00
|
|
|
break;
|
2018-05-24 22:21:19 +00:00
|
|
|
case MPD_API_SEARCH_QUEUE:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { offset:%u, mpdtag:%Q, searchstr:%Q } }", &uint_buf1, &p_charbuf1, &p_charbuf2);
|
|
|
|
if (je == 3)
|
|
|
|
n = mympd_search_queue(mpd.buf, p_charbuf1, uint_buf1, p_charbuf2);
|
|
|
|
free(p_charbuf1);
|
2018-06-03 08:52:38 +00:00
|
|
|
free(p_charbuf2);
|
2018-05-24 22:21:19 +00:00
|
|
|
break;
|
2018-05-31 23:05:49 +00:00
|
|
|
case MPD_API_SEARCH_ADD:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { mpdtag:%Q, searchstr:%Q } }", &p_charbuf1, &p_charbuf2);
|
|
|
|
if (je == 2)
|
|
|
|
n = mympd_search_add(mpd.buf, p_charbuf1, p_charbuf2);
|
|
|
|
free(p_charbuf1);
|
2018-06-03 08:52:38 +00:00
|
|
|
free(p_charbuf2);
|
2018-05-31 23:05:49 +00:00
|
|
|
break;
|
2014-02-22 00:57:26 +00:00
|
|
|
case MPD_API_SEARCH:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { offset:%u, mpdtag:%Q, searchstr:%Q } }", &uint_buf1, &p_charbuf1, &p_charbuf2);
|
|
|
|
if (je == 3)
|
|
|
|
n = mympd_search(mpd.buf, p_charbuf1, uint_buf1, p_charbuf2);
|
|
|
|
free(p_charbuf1);
|
2018-06-03 08:52:38 +00:00
|
|
|
free(p_charbuf2);
|
2014-02-22 00:57:26 +00:00
|
|
|
break;
|
2018-05-24 19:36:40 +00:00
|
|
|
case MPD_API_SEND_SHUFFLE:
|
|
|
|
mpd_run_shuffle(mpd.conn);
|
|
|
|
break;
|
2017-03-18 12:31:26 +00:00
|
|
|
case MPD_API_SEND_MESSAGE:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { channel:%Q, text:%Q } }", &p_charbuf1, &p_charbuf2);
|
|
|
|
if (je == 2)
|
|
|
|
mpd_run_send_message(mpd.conn, p_charbuf1, p_charbuf2);
|
|
|
|
free(p_charbuf1);
|
|
|
|
free(p_charbuf2);
|
2017-03-18 12:31:26 +00:00
|
|
|
break;
|
2018-05-29 20:12:11 +00:00
|
|
|
case MPD_API_RM_PLAYLIST:
|
2018-06-18 19:55:54 +00:00
|
|
|
je = json_scanf(msg.p, msg.len, "{ data: { plist:%Q } }", &p_charbuf1);
|
|
|
|
if (je == 1)
|
|
|
|
mpd_run_rm(mpd.conn, p_charbuf1);
|
|
|
|
free(p_charbuf1);
|
2018-05-29 20:12:11 +00:00
|
|
|
break;
|
2018-06-19 22:43:36 +00:00
|
|
|
case MPD_API_GET_MPD_SETTINGS:
|
2018-05-29 21:05:34 +00:00
|
|
|
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;
|
2014-02-16 18:46:53 +00:00
|
|
|
}
|
2018-06-18 19:55:54 +00:00
|
|
|
free(cmd);
|
|
|
|
|
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
|
2018-06-12 23:29:58 +00:00
|
|
|
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) {
|
2018-06-14 19:56:12 +00:00
|
|
|
if(is_websocket(nc)) {
|
|
|
|
#ifdef DEBUG
|
2018-06-18 19:55:54 +00:00
|
|
|
fprintf(stdout,"Send websocket response:\n %s\n",mpd.buf);
|
2018-06-14 19:56:12 +00:00
|
|
|
#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
|
2018-06-18 19:55:54 +00:00
|
|
|
mg_send_http_chunk(nc, mpd.buf, n);
|
2018-06-14 19:56:12 +00:00
|
|
|
}
|
2018-06-18 19:55:54 +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;
|
2018-06-12 23:29:58 +00:00
|
|
|
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? */
|
2018-06-12 23:29:58 +00:00
|
|
|
n=snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"error\",\"data\":\"%s\"}",param);
|
2018-06-14 15:28:10 +00:00
|
|
|
#ifdef DEBUG
|
2018-06-12 23:29:58 +00:00
|
|
|
fprintf(stdout,"Error in mpd_notify_callback: %s\n",param);
|
2018-06-14 15:28:10 +00:00
|
|
|
#endif
|
2018-06-12 23:29:58 +00:00
|
|
|
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) {
|
2018-06-12 23:29:58 +00:00
|
|
|
n=snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"disconnected\"}");
|
2018-06-14 15:28:10 +00:00
|
|
|
#ifdef DEBUG
|
2018-06-12 23:29:58 +00:00
|
|
|
fprintf(stdout,"Notify: disconnected\n");
|
2018-06-14 15:28:10 +00:00
|
|
|
#endif
|
2018-06-12 23:29:58 +00:00
|
|
|
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
|
2018-06-12 23:29:58 +00:00
|
|
|
fprintf(stdout,"Notify: %s\n",mpd.buf);
|
2018-06-14 15:28:10 +00:00
|
|
|
#endif
|
2018-06-18 21:24:35 +00:00
|
|
|
mg_send_websocket_frame(c, WEBSOCKET_OP_TEXT, mpd.buf, strlen(mpd.buf));
|
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
|
2018-06-12 23:29:58 +00:00
|
|
|
fprintf(stdout,"Notify: %s\n",mpd.buf);
|
2018-06-14 15:28:10 +00:00
|
|
|
#endif
|
2018-06-12 23:29:58 +00:00
|
|
|
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
|
|
|
{
|
2018-06-12 23:29:58 +00:00
|
|
|
n=snprintf(mpd.buf, MAX_SIZE, "{\"type\":\"update_queue\"}");
|
2018-06-14 15:28:10 +00:00
|
|
|
#ifdef DEBUG
|
2018-06-12 23:29:58 +00:00
|
|
|
fprintf(stdout,"Notify: update_queue\n");
|
2018-06-14 15:28:10 +00:00
|
|
|
#endif
|
2018-06-12 23:29:58 +00:00
|
|
|
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));
|
2015-04-21 03:11:03 +00:00
|
|
|
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));
|
2015-04-21 03:11:03 +00:00
|
|
|
}
|
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));
|
2015-04-21 03:11:03 +00:00
|
|
|
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));
|
2015-04-21 03:11:03 +00:00
|
|
|
}
|
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");
|
2014-10-19 18:27:11 +00:00
|
|
|
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);
|
2015-04-21 03:11:03 +00:00
|
|
|
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);
|
2015-04-21 03:11:03 +00:00
|
|
|
}
|
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);
|
2014-01-25 00:03:16 +00:00
|
|
|
if(str == NULL){
|
|
|
|
str = basename((char *)mpd_song_get_uri(song));
|
|
|
|
}
|
2013-11-05 23:15:24 +00:00
|
|
|
|
2014-01-25 00:03:16 +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)
|
2014-11-11 17:41:39 +00:00
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
str = (char *)mpd_song_get_tag(song, MPD_TAG_ALBUM, 0);
|
|
|
|
if(str == NULL){
|
2015-10-16 16:51:25 +00:00
|
|
|
str = "-";
|
2014-11-11 17:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2018-06-14 22:00:54 +00:00
|
|
|
char* mympd_get_artist(struct mpd_song const *song)
|
2014-11-11 17:41:39 +00:00
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
str = (char *)mpd_song_get_tag(song, MPD_TAG_ARTIST, 0);
|
|
|
|
if(str == NULL){
|
2015-10-16 16:51:25 +00:00
|
|
|
str = "-";
|
2014-11-11 17:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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){
|
2015-10-16 16:51:25 +00:00
|
|
|
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;
|
2018-05-31 20:23:57 +00:00
|
|
|
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;
|
|
|
|
}
|
2018-05-31 23:05:49 +00:00
|
|
|
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: {");
|
2018-06-14 19:56:12 +00:00
|
|
|
|
|
|
|
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);
|
2018-06-14 19:56:12 +00:00
|
|
|
}
|
|
|
|
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);
|
2018-05-28 18:48:43 +00:00
|
|
|
*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
|
|
|
}
|
|
|
|
|
2018-06-14 20:19:36 +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-14 20:19:36 +00:00
|
|
|
|
2018-06-17 22:42:22 +00:00
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
2018-06-14 20:19:36 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2018-05-29 21:05:34 +00:00
|
|
|
int mympd_put_settings(char *buffer)
|
|
|
|
{
|
|
|
|
struct mpd_status *status;
|
2018-05-31 20:23:57 +00:00
|
|
|
char *replaygain;
|
2018-06-17 22:42:22 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
2018-05-29 21:05:34 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-05-31 20:23:57 +00:00
|
|
|
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"
|
2018-05-29 21:05:34 +00:00
|
|
|
"}}",
|
|
|
|
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),
|
2018-05-29 21:55:24 +00:00
|
|
|
mpd.host, mpd.port,
|
|
|
|
mpd.password ? "true" : "false",
|
|
|
|
streamport, coverimage,
|
2018-05-31 20:23:57 +00:00
|
|
|
MAX_ELEMENTS_PER_PAGE,
|
|
|
|
replaygain
|
2018-05-29 21:05:34 +00:00
|
|
|
);
|
|
|
|
mpd_status_free(status);
|
2018-06-17 22:42:22 +00:00
|
|
|
|
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
2018-05-29 21:05:34 +00:00
|
|
|
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-14 19:56:12 +00:00
|
|
|
|
2018-06-17 22:42:22 +00:00
|
|
|
len = json_printf(&out,"{type: outputnames, data:{");
|
2018-06-14 19:56:12 +00:00
|
|
|
|
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)) {
|
2015-05-02 12:36:02 +00:00
|
|
|
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-14 19:56:12 +00:00
|
|
|
|
2018-06-17 22:42:22 +00:00
|
|
|
len += json_printf(&out,"}}");
|
2018-06-14 19:56:12 +00:00
|
|
|
|
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
|
|
|
{
|
2013-11-09 01:07:03 +00:00
|
|
|
struct mpd_song *song;
|
2018-06-18 16:53:30 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
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;
|
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len = json_printf(&out,"{type: song_change, data: { pos: %d, title: %Q, "
|
|
|
|
"artist: %Q, album: %Q, uri: %Q, currentsongid: %d, albumartist: %Q, "
|
|
|
|
"duration: %d }}",
|
|
|
|
mpd_song_get_pos(song),
|
|
|
|
mympd_get_title(song),
|
|
|
|
mympd_get_artist(song),
|
|
|
|
mympd_get_album(song),
|
|
|
|
mpd_song_get_uri(song),
|
|
|
|
mpd.song_id,
|
|
|
|
mympd_get_album_artist(song),
|
|
|
|
mpd_song_get_duration(song)
|
|
|
|
);
|
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
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
|
|
|
return len;
|
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
|
|
|
struct mpd_entity *entity;
|
2018-04-04 13:04:25 +00:00
|
|
|
unsigned long totalTime = 0;
|
2018-05-29 21:55:24 +00:00
|
|
|
unsigned long entity_count = 0;
|
|
|
|
unsigned long entities_returned = 0;
|
2018-06-18 16:53:30 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
2013-11-04 17:18:38 +00:00
|
|
|
|
2018-05-01 21:37:34 +00:00
|
|
|
if (!mpd_send_list_queue_range_meta(mpd.conn, 0, -1))
|
2014-02-22 00:57:26 +00:00
|
|
|
RETURN_ERROR_AND_RECOVER("mpd_send_list_queue_meta");
|
2018-05-01 21:37:34 +00:00
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len = json_printf(&out, "{type:queue, data :[ ");
|
2013-11-04 17:18:38 +00:00
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
while ((entity = mpd_recv_entity(mpd.conn)) != NULL) {
|
2013-11-07 09:09:40 +00:00
|
|
|
const struct mpd_song *song;
|
2018-04-04 13:04:25 +00:00
|
|
|
unsigned int drtn;
|
2018-06-18 16:53:30 +00:00
|
|
|
if (mpd_entity_get_type(entity) == MPD_ENTITY_TYPE_SONG) {
|
2013-11-09 01:07:03 +00:00
|
|
|
song = mpd_entity_get_song(entity);
|
2018-04-04 13:04:25 +00:00
|
|
|
drtn = mpd_song_get_duration(song);
|
|
|
|
totalTime += drtn;
|
2018-05-29 21:55:24 +00:00
|
|
|
entity_count ++;
|
2018-06-18 16:53:30 +00:00
|
|
|
if (entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
|
|
|
|
if (entities_returned ++) len += json_printf(&out,",");
|
|
|
|
len += json_printf(&out, "{ id: %d, pos: %d, duration: %d, artist: %Q, album: %Q, title: %Q }",
|
|
|
|
mpd_song_get_id(song),
|
|
|
|
mpd_song_get_pos(song),
|
|
|
|
mpd_song_get_duration(song),
|
|
|
|
mympd_get_artist(song),
|
|
|
|
mympd_get_album(song),
|
|
|
|
mympd_get_title(song)
|
|
|
|
);
|
2018-05-01 21:37:34 +00:00
|
|
|
}
|
2013-11-09 01:07:03 +00:00
|
|
|
}
|
|
|
|
mpd_entity_free(entity);
|
|
|
|
}
|
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len += json_printf(&out, "],totalTime: %d, totalEntities: %d, offset: %d, returnedEntities: %d }",
|
|
|
|
totalTime,
|
|
|
|
entity_count,
|
|
|
|
offset,
|
|
|
|
entities_returned
|
|
|
|
);
|
|
|
|
|
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
|
|
|
return len;
|
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
|
|
|
struct mpd_entity *entity;
|
2018-06-03 05:17:30 +00:00
|
|
|
const struct mpd_playlist *pl;
|
2014-02-22 01:11:45 +00:00
|
|
|
unsigned int entity_count = 0;
|
2018-05-29 21:55:24 +00:00
|
|
|
unsigned int entities_returned = 0;
|
2018-06-03 08:52:38 +00:00
|
|
|
const char *entityName;
|
2018-06-18 16:53:30 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
2013-11-09 01:07:03 +00:00
|
|
|
|
2014-02-22 00:57:26 +00:00
|
|
|
if (!mpd_send_list_meta(mpd.conn, path))
|
|
|
|
RETURN_ERROR_AND_RECOVER("mpd_send_list_meta");
|
2014-01-16 17:32:20 +00:00
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len = json_printf(&out, "{ 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;
|
2018-05-29 21:55:24 +00:00
|
|
|
entity_count ++;
|
2018-05-29 20:12:11 +00:00
|
|
|
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
|
|
|
|
switch (mpd_entity_get_type(entity)) {
|
|
|
|
case MPD_ENTITY_TYPE_UNKNOWN:
|
2018-06-03 08:52:38 +00:00
|
|
|
entity_count --;
|
2018-05-29 20:12:11 +00:00
|
|
|
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 ||
|
2018-06-03 08:52:38 +00:00
|
|
|
( strncmp(filter,"0",1) == 0 && isalpha(*entityName) == 0 )
|
|
|
|
) {
|
2018-06-18 16:53:30 +00:00
|
|
|
if (entities_returned ++) len += json_printf(&out,",");
|
|
|
|
len += json_printf(&out, "{type:song, uri: %Q, album: %Q, artist: %Q, duration: %d, title: %Q }",
|
|
|
|
mpd_song_get_uri(song),
|
|
|
|
mympd_get_album(song),
|
|
|
|
mympd_get_artist(song),
|
|
|
|
mpd_song_get_duration(song),
|
|
|
|
entityName
|
|
|
|
);
|
2018-06-03 08:52:38 +00:00
|
|
|
} else {
|
|
|
|
entity_count --;
|
|
|
|
}
|
2018-05-29 20:12:11 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MPD_ENTITY_TYPE_DIRECTORY:
|
2018-06-03 08:52:38 +00:00
|
|
|
dir = mpd_entity_get_directory(entity);
|
|
|
|
entityName = mpd_directory_get_path(dir);
|
|
|
|
char *dirName = strrchr(entityName, '/');
|
|
|
|
if (dirName != NULL) {
|
|
|
|
dirName ++;
|
|
|
|
} else {
|
2018-06-18 16:53:30 +00:00
|
|
|
dirName = strdup(entityName);
|
2018-06-03 08:52:38 +00:00
|
|
|
}
|
2018-06-10 21:15:33 +00:00
|
|
|
if (strncmp(filter,"-",1) == 0 || strncasecmp(filter,dirName,1) == 0 ||
|
2018-06-03 08:55:01 +00:00
|
|
|
( strncmp(filter,"0",1) == 0 && isalpha(*dirName) == 0 )
|
|
|
|
) {
|
2018-06-18 16:53:30 +00:00
|
|
|
if (entities_returned ++) len += json_printf(&out,",");
|
|
|
|
len += json_printf(&out, "{type: directory, dir: %Q }",
|
|
|
|
entityName
|
|
|
|
);
|
2018-06-03 08:52:38 +00:00
|
|
|
} else {
|
|
|
|
entity_count --;
|
|
|
|
}
|
2018-05-29 20:12:11 +00:00
|
|
|
break;
|
2018-06-03 05:17:30 +00:00
|
|
|
|
2018-05-29 20:12:11 +00:00
|
|
|
case MPD_ENTITY_TYPE_PLAYLIST:
|
2018-06-03 05:17:30 +00:00
|
|
|
pl = mpd_entity_get_playlist(entity);
|
2018-06-03 08:52:38 +00:00
|
|
|
entityName = mpd_playlist_get_path(pl);
|
2018-06-03 10:50:50 +00:00
|
|
|
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 ||
|
2018-06-03 10:50:50 +00:00
|
|
|
( strncmp(filter,"0",1) == 0 && isalpha(*plName) == 0 )
|
2018-06-03 08:55:01 +00:00
|
|
|
) {
|
2018-06-18 16:53:30 +00:00
|
|
|
if (entities_returned ++) len += json_printf(&out,",");
|
|
|
|
len += json_printf(&out, "{ type: playlist, plist: %Q }",
|
|
|
|
entityName
|
|
|
|
);
|
2018-06-03 08:52:38 +00:00
|
|
|
} else {
|
|
|
|
entity_count --;
|
|
|
|
}
|
2018-05-29 20:12:11 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len += json_printf(&out, "], totalEntities: %d, offset: %d, returnedEntities: %d, filter: %Q }",
|
|
|
|
entity_count,
|
|
|
|
offset,
|
|
|
|
entities_returned,
|
|
|
|
filter
|
|
|
|
);
|
|
|
|
|
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
|
|
|
return len;
|
2013-11-05 13:59:12 +00:00
|
|
|
}
|
2014-02-16 18:46:53 +00:00
|
|
|
|
2018-06-04 18:31:05 +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
|
|
|
{
|
|
|
|
struct mpd_pair *pair;
|
|
|
|
unsigned long entity_count = 0;
|
|
|
|
unsigned long entities_returned = 0;
|
2018-06-18 16:53:30 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
2018-06-03 16:36:06 +00:00
|
|
|
|
|
|
|
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");
|
2018-06-04 18:31:05 +00:00
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len = json_printf(&out, "{type: listDBtags, data: [ ");
|
2018-06-04 18:31:05 +00:00
|
|
|
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 ||
|
2018-06-04 18:31:05 +00:00
|
|
|
( strncmp(filter,"0",1) == 0 && isalpha(*pair->value) == 0 )
|
|
|
|
) {
|
2018-06-18 16:53:30 +00:00
|
|
|
if (entities_returned ++) len += json_printf(&out,", ");
|
|
|
|
len += json_printf(&out, "{type: %Q, value: %Q }",
|
|
|
|
mpdtagtype,
|
|
|
|
pair->value
|
|
|
|
);
|
2018-06-04 18:31:05 +00:00
|
|
|
} else {
|
|
|
|
entity_count --;
|
2018-06-03 16:36:06 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-04 18:31:05 +00:00
|
|
|
mpd_return_pair(mpd.conn, pair);
|
|
|
|
}
|
2018-06-03 16:36:06 +00:00
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len += json_printf(&out, "], totalEntities: %d, offset: %d, returnedEntities: %d, "
|
|
|
|
"tagtype: %Q, searchtagtype: %Q, searchstr: %Q, filter: %Q }",
|
|
|
|
entity_count,
|
|
|
|
offset,
|
|
|
|
entities_returned,
|
|
|
|
mpdtagtype,
|
|
|
|
mpdsearchtagtype,
|
|
|
|
searchstr,
|
|
|
|
filter
|
|
|
|
);
|
|
|
|
|
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
|
|
|
return len;
|
2018-06-03 16:36:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int mympd_put_songs_in_album(char *buffer, char *albumartist, char *album)
|
|
|
|
{
|
|
|
|
struct mpd_song *song;
|
|
|
|
unsigned long entity_count = 0;
|
|
|
|
unsigned long entities_returned = 0;
|
2018-06-18 16:53:30 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
2018-06-03 16:36:06 +00:00
|
|
|
|
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 {
|
2018-06-18 16:53:30 +00:00
|
|
|
len = json_printf(&out, "{ type: listTitles, data: [ ");
|
2018-06-03 16:36:06 +00:00
|
|
|
|
|
|
|
while((song = mpd_recv_song(mpd.conn)) != NULL) {
|
|
|
|
entity_count ++;
|
|
|
|
if(entity_count <= MAX_ELEMENTS_PER_PAGE) {
|
2018-06-18 16:53:30 +00:00
|
|
|
if (entities_returned ++) len += json_printf(&out, ", ");
|
|
|
|
len += json_printf(&out, "{ type: song, uri: %Q, duration: %d, title: %Q, track: %Q }",
|
|
|
|
mpd_song_get_uri(song),
|
|
|
|
mpd_song_get_duration(song),
|
|
|
|
mympd_get_title(song),
|
|
|
|
mympd_get_track(song)
|
|
|
|
);
|
2018-06-03 16:36:06 +00:00
|
|
|
}
|
|
|
|
mpd_song_free(song);
|
|
|
|
}
|
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len += json_printf(&out, "], totalEntities: %d, returnedEntities: %d, albumartist: %Q, album: %Q }",
|
|
|
|
entity_count,
|
|
|
|
entities_returned,
|
|
|
|
albumartist,
|
|
|
|
album
|
|
|
|
);
|
2018-06-03 16:36:06 +00:00
|
|
|
}
|
2018-06-18 16:53:30 +00:00
|
|
|
|
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
|
|
|
return len;
|
2018-06-03 16:36:06 +00:00
|
|
|
}
|
|
|
|
|
2018-06-04 18:31:05 +00:00
|
|
|
int mympd_put_playlists(char *buffer, unsigned int offset, char *filter)
|
2018-05-28 22:05:56 +00:00
|
|
|
{
|
|
|
|
struct mpd_playlist *pl;
|
|
|
|
unsigned int entity_count = 0;
|
2018-05-29 21:55:24 +00:00
|
|
|
unsigned int entities_returned = 0;
|
2018-06-04 18:31:05 +00:00
|
|
|
const char *plpath;
|
2018-06-18 16:53:30 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
2018-05-28 22:05:56 +00:00
|
|
|
|
|
|
|
if (!mpd_send_list_playlists(mpd.conn))
|
|
|
|
RETURN_ERROR_AND_RECOVER("mpd_send_lists_playlists");
|
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len = json_printf(&out, "{ type: playlists, data: [ ");
|
2018-05-28 22:05:56 +00:00
|
|
|
|
|
|
|
while((pl = mpd_recv_playlist(mpd.conn)) != NULL) {
|
2018-05-29 21:55:24 +00:00
|
|
|
entity_count ++;
|
2018-05-28 22:05:56 +00:00
|
|
|
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
|
2018-06-04 18:31:05 +00:00
|
|
|
plpath = mpd_playlist_get_path(pl);
|
2018-06-10 21:15:33 +00:00
|
|
|
if (strncmp(filter,"-",1) == 0 || strncasecmp(filter,plpath,1) == 0 ||
|
2018-06-04 18:31:05 +00:00
|
|
|
( strncmp(filter,"0",1) == 0 && isalpha(*plpath) == 0 )
|
|
|
|
) {
|
2018-06-18 16:53:30 +00:00
|
|
|
if (entities_returned ++) len += json_printf(&out, ", ");
|
|
|
|
len += json_printf(&out, "{ type: playlist, plist: %Q, last_modified: %d }",
|
|
|
|
plpath,
|
|
|
|
mpd_playlist_get_last_modified(pl)
|
|
|
|
);
|
2018-06-04 18:31:05 +00:00
|
|
|
} else {
|
|
|
|
entity_count --;
|
|
|
|
}
|
2018-05-28 22:05:56 +00:00
|
|
|
}
|
|
|
|
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");
|
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len += json_printf(&out, "], totalEntities: %d, offset: %d, returnedEntities: %d }",
|
|
|
|
entity_count,
|
|
|
|
offset,
|
|
|
|
entities_returned
|
|
|
|
);
|
|
|
|
|
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
|
|
|
return len;
|
2018-05-28 22:05:56 +00:00
|
|
|
}
|
|
|
|
|
2018-06-14 22:00:54 +00:00
|
|
|
int mympd_search(char *buffer, char *mpdtagtype, unsigned int offset, char *searchstr)
|
2014-02-22 00:57:26 +00:00
|
|
|
{
|
|
|
|
struct mpd_song *song;
|
2018-05-29 20:12:11 +00:00
|
|
|
unsigned long entity_count = 0;
|
|
|
|
unsigned long entities_returned = 0;
|
2018-06-18 16:53:30 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
2014-02-22 00:57:26 +00:00
|
|
|
|
2018-05-29 20:12:11 +00:00
|
|
|
if(mpd_search_db_songs(mpd.conn, false) == false) {
|
2018-05-31 23:05:49 +00:00
|
|
|
RETURN_ERROR_AND_RECOVER("mpd_search_db_songs");
|
2018-05-29 20:12:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
2014-02-22 00:57:26 +00:00
|
|
|
RETURN_ERROR_AND_RECOVER("mpd_search_commit");
|
|
|
|
else {
|
2018-06-18 16:53:30 +00:00
|
|
|
len = json_printf(&out, "{ type: search, data: [ ");
|
2014-02-22 00:57:26 +00:00
|
|
|
|
|
|
|
while((song = mpd_recv_song(mpd.conn)) != NULL) {
|
2018-05-29 20:12:11 +00:00
|
|
|
entity_count ++;
|
|
|
|
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
|
2018-06-18 16:53:30 +00:00
|
|
|
if (entities_returned ++) len += json_printf(&out, ", ");
|
|
|
|
len += json_printf(&out, "{ type: song, uri: %Q, album: %Q, artist: %Q, duration: %d, title: %Q }",
|
|
|
|
mpd_song_get_uri(song),
|
|
|
|
mympd_get_album(song),
|
|
|
|
mympd_get_artist(song),
|
|
|
|
mpd_song_get_duration(song),
|
|
|
|
mympd_get_title(song)
|
|
|
|
);
|
2018-05-24 22:21:19 +00:00
|
|
|
}
|
2018-05-27 12:37:50 +00:00
|
|
|
mpd_song_free(song);
|
|
|
|
}
|
2018-06-18 16:53:30 +00:00
|
|
|
|
|
|
|
len += json_printf(&out, "], totalEntities: %d, offset: %d, returnedEntities: %d, mpdtagtype: %Q }",
|
|
|
|
entity_count,
|
|
|
|
offset,
|
|
|
|
entities_returned,
|
|
|
|
mpdtagtype
|
|
|
|
);
|
2018-05-24 22:21:19 +00:00
|
|
|
}
|
2018-06-18 16:53:30 +00:00
|
|
|
|
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
|
|
|
return len;
|
2018-05-24 22:21:19 +00:00
|
|
|
}
|
|
|
|
|
2018-06-14 22:00:54 +00:00
|
|
|
int mympd_search_add(char *buffer,char *mpdtagtype, char *searchstr)
|
2018-05-31 23:05:49 +00:00
|
|
|
{
|
|
|
|
struct mpd_song *song;
|
2018-06-18 16:53:30 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
|
|
|
len = 0;
|
2018-05-31 23:05:49 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
|
|
|
return len;
|
2018-05-31 23:05:49 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
struct mpd_song *song;
|
2018-05-29 21:55:24 +00:00
|
|
|
unsigned long entity_count = 0;
|
|
|
|
unsigned long entities_returned = 0;
|
2018-06-18 16:53:30 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
2018-05-24 22:21:19 +00:00
|
|
|
|
2018-05-27 12:37:50 +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");
|
2018-05-27 12:37:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2018-06-18 16:53:30 +00:00
|
|
|
len = json_printf(&out, "{ type: queuesearch, data: [ ");
|
2018-05-24 22:21:19 +00:00
|
|
|
|
|
|
|
while((song = mpd_recv_song(mpd.conn)) != NULL) {
|
2018-05-29 21:55:24 +00:00
|
|
|
entity_count ++;
|
|
|
|
if(entity_count > offset && entity_count <= offset+MAX_ELEMENTS_PER_PAGE) {
|
2018-06-18 16:53:30 +00:00
|
|
|
if (entities_returned ++) len += json_printf(&out, ", ");
|
|
|
|
len += json_printf(&out, "{ type: song, id: %d, pos: %d, album: %Q, artist: %Q, duration: %d, title: %Q }",
|
|
|
|
mpd_song_get_id(song),
|
|
|
|
mpd_song_get_pos(song),
|
|
|
|
mympd_get_album(song),
|
|
|
|
mympd_get_artist(song),
|
|
|
|
mpd_song_get_duration(song),
|
|
|
|
mympd_get_title(song)
|
|
|
|
);
|
2014-02-22 00:57:26 +00:00
|
|
|
mpd_song_free(song);
|
2018-05-25 16:12:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-18 16:53:30 +00:00
|
|
|
len += json_printf(&out, "], totalEntities: %d, offset: %d, returnedEntities: %d, mpdtagtype: %Q }",
|
|
|
|
entity_count,
|
|
|
|
offset,
|
|
|
|
entities_returned,
|
|
|
|
mpdtagtype
|
|
|
|
);
|
2014-02-22 00:57:26 +00:00
|
|
|
}
|
2018-06-18 16:53:30 +00:00
|
|
|
|
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
|
|
|
return len;
|
2013-11-05 13:59:12 +00:00
|
|
|
}
|
2014-02-22 00:57:26 +00:00
|
|
|
|
2018-05-27 21:34:39 +00:00
|
|
|
int mympd_get_stats(char *buffer)
|
|
|
|
{
|
|
|
|
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];
|
2018-06-18 16:53:30 +00:00
|
|
|
int len;
|
|
|
|
struct json_out out = JSON_OUT_BUF(buffer, MAX_SIZE);
|
2018-05-31 23:29:45 +00:00
|
|
|
|
|
|
|
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");
|
2018-06-18 16:53:30 +00:00
|
|
|
len = json_printf(&out, "{ type: mpdstats, data: { artists: %d, albums: %d, songs: %d, "
|
|
|
|
"playtime: %d, dbupdated: %d, dbplaytime: %d, mympd_version: %Q, mpd_version: %Q }}",
|
|
|
|
mpd_stats_get_number_of_artists(stats),
|
|
|
|
mpd_stats_get_number_of_albums(stats),
|
|
|
|
mpd_stats_get_number_of_songs(stats),
|
|
|
|
mpd_stats_get_play_time(stats),
|
|
|
|
mpd_stats_get_uptime(stats),
|
|
|
|
mpd_stats_get_db_update_time(stats),
|
|
|
|
mpd_stats_get_db_play_time(stats),
|
|
|
|
MYMPD_VERSION,
|
|
|
|
mpd_version
|
|
|
|
);
|
2018-05-27 21:34:39 +00:00
|
|
|
mpd_stats_free(stats);
|
2018-06-18 16:53:30 +00:00
|
|
|
|
|
|
|
if (len > MAX_SIZE) fprintf(stderr,"Buffer truncated\n");
|
|
|
|
return len;
|
2018-05-27 21:34:39 +00:00
|
|
|
}
|
2014-02-22 00:57:26 +00:00
|
|
|
|
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
|
|
|
}
|