OtherCommands.cxx 6.95 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2013 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * http://www.musicpd.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; either version 2 of the License, or
 * (at your option) any later version.
 *
 * 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.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "config.h"
#include "OtherCommands.hxx"
#include "DatabaseCommands.hxx"
23
#include "CommandError.hxx"
Max Kellermann's avatar
Max Kellermann committed
24
#include "UpdateGlue.hxx"
25
#include "Directory.hxx"
26
#include "song.h"
Max Kellermann's avatar
Max Kellermann committed
27 28 29
#include "SongPrint.hxx"
#include "TagPrint.hxx"
#include "TimePrint.hxx"
Max Kellermann's avatar
Max Kellermann committed
30
#include "Mapper.hxx"
31
#include "DecoderPrint.hxx"
Max Kellermann's avatar
Max Kellermann committed
32 33
#include "protocol/ArgParser.hxx"
#include "protocol/Result.hxx"
Max Kellermann's avatar
Max Kellermann committed
34
#include "ls.hxx"
Max Kellermann's avatar
Max Kellermann committed
35
#include "Volume.hxx"
36 37 38 39

extern "C" {
#include "uri.h"
#include "stats.h"
40 41
}

42
#include "Permission.hxx"
Max Kellermann's avatar
Max Kellermann committed
43
#include "PlaylistFile.hxx"
Max Kellermann's avatar
Max Kellermann committed
44 45 46
#include "ClientIdle.hxx"
#include "ClientFile.hxx"
#include "Client.hxx"
Max Kellermann's avatar
Max Kellermann committed
47
#include "Idle.hxx"
48 49

#ifdef ENABLE_SQLITE
Max Kellermann's avatar
Max Kellermann committed
50
#include "StickerDatabase.hxx"
51 52 53 54 55 56
#endif

#include <assert.h>
#include <string.h>

static void
57
print_spl_list(Client *client, const PlaylistVector &list)
58
{
59 60
	for (const auto &i : list) {
		client_printf(client, "playlist: %s\n", i.name.c_str());
61

62 63
		if (i.mtime > 0)
			time_print(client, "Last-Modified", i.mtime);
64 65 66 67
	}
}

enum command_return
68
handle_urlhandlers(Client *client,
69 70 71 72 73 74 75 76 77
		   G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
	if (client_is_local(client))
		client_puts(client, "handler: file://\n");
	print_supported_uri_schemes(client);
	return COMMAND_RETURN_OK;
}

enum command_return
78
handle_decoders(Client *client,
79 80 81 82 83 84 85
		G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
	decoder_list_print(client);
	return COMMAND_RETURN_OK;
}

enum command_return
86
handle_tagtypes(Client *client,
87 88 89 90 91 92 93
		G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
	tag_print_types(client);
	return COMMAND_RETURN_OK;
}

enum command_return
94
handle_kill(G_GNUC_UNUSED Client *client,
95 96 97 98 99 100
	    G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
	return COMMAND_RETURN_KILL;
}

enum command_return
101
handle_close(G_GNUC_UNUSED Client *client,
102 103 104 105 106 107
	     G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
	return COMMAND_RETURN_CLOSE;
}

enum command_return
108
handle_lsinfo(Client *client, int argc, char *argv[])
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
{
	const char *uri;

	if (argc == 2)
		uri = argv[1];
	else
		/* default is root directory */
		uri = "";

	if (strncmp(uri, "file:///", 8) == 0) {
		/* print information about an arbitrary local file */
		const char *path = uri + 7;

		GError *error = NULL;
		if (!client_allow_file(client, path, &error))
			return print_error(client, error);

		struct song *song = song_file_load(path, NULL);
		if (song == NULL) {
			command_error(client, ACK_ERROR_NO_EXIST,
				      "No such file");
			return COMMAND_RETURN_ERROR;
		}

		song_print_info(client, song);
		song_free(song);
		return COMMAND_RETURN_OK;
	}

	enum command_return result = handle_lsinfo2(client, argc, argv);
	if (result != COMMAND_RETURN_OK)
		return result;

	if (isRootDirectory(uri)) {
143 144
		const auto &list = ListPlaylistFiles(NULL);
		print_spl_list(client, list);
145 146 147 148 149 150
	}

	return COMMAND_RETURN_OK;
}

enum command_return
151
handle_update(Client *client, G_GNUC_UNUSED int argc, char *argv[])
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
{
	const char *path = NULL;
	unsigned ret;

	assert(argc <= 2);
	if (argc == 2) {
		path = argv[1];

		if (*path == 0 || strcmp(path, "/") == 0)
			/* backwards compatibility with MPD 0.15 */
			path = NULL;
		else if (!uri_safe_local(path)) {
			command_error(client, ACK_ERROR_ARG,
				      "Malformed path");
			return COMMAND_RETURN_ERROR;
		}
	}

	ret = update_enqueue(path, false);
	if (ret > 0) {
		client_printf(client, "updating_db: %i\n", ret);
		return COMMAND_RETURN_OK;
	} else {
		command_error(client, ACK_ERROR_UPDATE_ALREADY,
			      "already updating");
		return COMMAND_RETURN_ERROR;
	}
}

enum command_return
182
handle_rescan(Client *client, G_GNUC_UNUSED int argc, char *argv[])
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
{
	const char *path = NULL;
	unsigned ret;

	assert(argc <= 2);
	if (argc == 2) {
		path = argv[1];

		if (!uri_safe_local(path)) {
			command_error(client, ACK_ERROR_ARG,
				      "Malformed path");
			return COMMAND_RETURN_ERROR;
		}
	}

	ret = update_enqueue(path, true);
	if (ret > 0) {
		client_printf(client, "updating_db: %i\n", ret);
		return COMMAND_RETURN_OK;
	} else {
		command_error(client, ACK_ERROR_UPDATE_ALREADY,
			      "already updating");
		return COMMAND_RETURN_ERROR;
	}
}

enum command_return
210
handle_setvol(Client *client, G_GNUC_UNUSED int argc, char *argv[])
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
{
	unsigned level;
	bool success;

	if (!check_unsigned(client, &level, argv[1]))
		return COMMAND_RETURN_ERROR;

	if (level > 100) {
		command_error(client, ACK_ERROR_ARG, "Invalid volume value");
		return COMMAND_RETURN_ERROR;
	}

	success = volume_level_change(level);
	if (!success) {
		command_error(client, ACK_ERROR_SYSTEM,
			      "problems setting volume");
		return COMMAND_RETURN_ERROR;
	}

	return COMMAND_RETURN_OK;
}

enum command_return
234
handle_stats(Client *client,
235 236 237 238 239 240 241
	     G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
	stats_print(client);
	return COMMAND_RETURN_OK;
}

enum command_return
242
handle_ping(G_GNUC_UNUSED Client *client,
243 244 245 246 247 248
	    G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
	return COMMAND_RETURN_OK;
}

enum command_return
249
handle_password(Client *client, G_GNUC_UNUSED int argc, char *argv[])
250 251 252 253 254 255 256 257 258 259 260 261 262 263
{
	unsigned permission = 0;

	if (getPermissionFromPassword(argv[1], &permission) < 0) {
		command_error(client, ACK_ERROR_PASSWORD, "incorrect password");
		return COMMAND_RETURN_ERROR;
	}

	client_set_permission(client, permission);

	return COMMAND_RETURN_OK;
}

enum command_return
264
handle_config(Client *client,
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
	      G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
	if (!client_is_local(client)) {
		command_error(client, ACK_ERROR_PERMISSION,
			      "Command only permitted to local clients");
		return COMMAND_RETURN_ERROR;
	}

	const char *path = mapper_get_music_directory_utf8();
	if (path != NULL)
		client_printf(client, "music_directory: %s\n", path);

	return COMMAND_RETURN_OK;
}

enum command_return
281
handle_idle(Client *client,
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
	    G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
	unsigned flags = 0, j;
	int i;
	const char *const* idle_names;

	idle_names = idle_get_names();
	for (i = 1; i < argc; ++i) {
		if (!argv[i])
			continue;

		for (j = 0; idle_names[j]; ++j) {
			if (!g_ascii_strcasecmp(argv[i], idle_names[j])) {
				flags |= (1 << j);
			}
		}
	}

	/* No argument means that the client wants to receive everything */
	if (flags == 0)
		flags = ~0;

	/* enable "idle" mode on this client */
	client_idle_wait(client, flags);

307
	return COMMAND_RETURN_IDLE;
308
}