2012-09-25 11:44:49 +02:00
|
|
|
/*
|
2013-01-03 10:33:04 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2012-09-25 11:44:49 +02:00
|
|
|
* 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"
|
2012-09-25 12:10:12 +02:00
|
|
|
#include "CommandError.hxx"
|
2013-01-02 19:22:15 +01:00
|
|
|
#include "UpdateGlue.hxx"
|
2013-01-02 22:52:08 +01:00
|
|
|
#include "Directory.hxx"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "SongPrint.hxx"
|
|
|
|
#include "TagPrint.hxx"
|
2014-01-08 23:35:37 +01:00
|
|
|
#include "TagStream.hxx"
|
|
|
|
#include "tag/TagHandler.hxx"
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "TimePrint.hxx"
|
2013-01-02 22:43:56 +01:00
|
|
|
#include "Mapper.hxx"
|
2013-01-03 11:14:36 +01:00
|
|
|
#include "DecoderPrint.hxx"
|
2013-01-03 10:33:04 +01:00
|
|
|
#include "protocol/ArgParser.hxx"
|
|
|
|
#include "protocol/Result.hxx"
|
2013-01-03 17:34:51 +01:00
|
|
|
#include "ls.hxx"
|
2013-01-07 08:59:11 +01:00
|
|
|
#include "Volume.hxx"
|
2013-10-20 23:09:51 +02:00
|
|
|
#include "util/ASCII.hxx"
|
2013-04-08 23:30:21 +02:00
|
|
|
#include "util/UriUtil.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-10-17 21:59:35 +02:00
|
|
|
#include "fs/AllocatedPath.hxx"
|
2013-10-02 12:14:07 +02:00
|
|
|
#include "Stats.hxx"
|
2013-01-03 03:06:45 +01:00
|
|
|
#include "Permission.hxx"
|
2012-09-28 00:40:00 +02:00
|
|
|
#include "PlaylistFile.hxx"
|
2013-01-03 10:33:04 +01:00
|
|
|
#include "ClientFile.hxx"
|
2013-10-19 19:35:37 +02:00
|
|
|
#include "Client.hxx"
|
2013-01-09 08:36:52 +01:00
|
|
|
#include "Idle.hxx"
|
2012-09-25 11:44:49 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
static void
|
2013-10-19 18:48:38 +02:00
|
|
|
print_spl_list(Client &client, const PlaylistVector &list)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2012-09-27 23:48:29 +02:00
|
|
|
for (const auto &i : list) {
|
|
|
|
client_printf(client, "playlist: %s\n", i.name.c_str());
|
2012-09-25 11:44:49 +02:00
|
|
|
|
2012-09-27 23:48:29 +02:00
|
|
|
if (i.mtime > 0)
|
|
|
|
time_print(client, "Last-Modified", i.mtime);
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_urlhandlers(Client &client,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused int argc, gcc_unused char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2013-10-19 19:39:40 +02:00
|
|
|
if (client.IsLocal())
|
2012-09-25 11:44:49 +02:00
|
|
|
client_puts(client, "handler: file://\n");
|
|
|
|
print_supported_uri_schemes(client);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_decoders(Client &client,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused int argc, gcc_unused char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
|
|
|
decoder_list_print(client);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_tagtypes(Client &client,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused int argc, gcc_unused char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
|
|
|
tag_print_types(client);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_kill(gcc_unused Client &client,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused int argc, gcc_unused char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::KILL;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_close(gcc_unused Client &client,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused int argc, gcc_unused char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2013-11-06 22:01:06 +01:00
|
|
|
return CommandResult::FINISH;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2014-01-08 23:35:37 +01:00
|
|
|
static void
|
|
|
|
print_tag(TagType type, const char *value, void *ctx)
|
|
|
|
{
|
|
|
|
Client &client = *(Client *)ctx;
|
|
|
|
|
|
|
|
tag_print(client, type, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static constexpr tag_handler print_tag_handler = {
|
|
|
|
nullptr,
|
|
|
|
print_tag,
|
|
|
|
nullptr,
|
|
|
|
};
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_lsinfo(Client &client, int argc, char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
|
|
|
const char *uri;
|
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
uri = argv[1];
|
|
|
|
else
|
|
|
|
/* default is root directory */
|
|
|
|
uri = "";
|
|
|
|
|
2013-10-14 22:00:21 +02:00
|
|
|
if (memcmp(uri, "file:///", 8) == 0) {
|
2012-09-25 11:44:49 +02:00
|
|
|
/* print information about an arbitrary local file */
|
2013-01-18 15:33:34 +01:00
|
|
|
const char *path_utf8 = uri + 7;
|
2013-10-17 21:59:35 +02:00
|
|
|
const auto path_fs = AllocatedPath::FromUTF8(path_utf8);
|
2013-05-05 11:42:29 +02:00
|
|
|
|
|
|
|
if (path_fs.IsNull()) {
|
|
|
|
command_error(client, ACK_ERROR_NO_EXIST,
|
|
|
|
"unsupported file name");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2013-05-05 11:42:29 +02:00
|
|
|
}
|
2012-09-25 11:44:49 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
if (!client_allow_file(client, path_fs, error))
|
2012-09-25 11:44:49 +02:00
|
|
|
return print_error(client, error);
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song = Song::LoadFile(path_utf8, nullptr);
|
2013-10-28 23:58:17 +01:00
|
|
|
if (song == nullptr) {
|
2012-09-25 11:44:49 +02:00
|
|
|
command_error(client, ACK_ERROR_NO_EXIST,
|
|
|
|
"No such file");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
song_print_info(client, *song);
|
2013-07-28 13:25:12 +02:00
|
|
|
song->Free();
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-12-29 14:40:24 +01:00
|
|
|
if (uri_has_scheme(uri)) {
|
|
|
|
if (!uri_supported_scheme(uri)) {
|
|
|
|
command_error(client, ACK_ERROR_NO_EXIST,
|
|
|
|
"unsupported URI scheme");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
|
2014-01-08 23:35:37 +01:00
|
|
|
if (!tag_stream_scan(uri, print_tag_handler, &client)) {
|
2013-12-29 14:40:24 +01:00
|
|
|
command_error(client, ACK_ERROR_NO_EXIST,
|
|
|
|
"No such file");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CommandResult::OK;
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult result = handle_lsinfo2(client, argc, argv);
|
|
|
|
if (result != CommandResult::OK)
|
2012-09-25 11:44:49 +02:00
|
|
|
return result;
|
|
|
|
|
|
|
|
if (isRootDirectory(uri)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
const auto &list = ListPlaylistFiles(error);
|
2012-09-27 23:48:29 +02:00
|
|
|
print_spl_list(client, list);
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_update(Client &client, gcc_unused int argc, char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2013-10-17 21:45:32 +02:00
|
|
|
const char *path = "";
|
2012-09-25 11:44:49 +02:00
|
|
|
unsigned ret;
|
|
|
|
|
|
|
|
assert(argc <= 2);
|
|
|
|
if (argc == 2) {
|
|
|
|
path = argv[1];
|
|
|
|
|
|
|
|
if (*path == 0 || strcmp(path, "/") == 0)
|
|
|
|
/* backwards compatibility with MPD 0.15 */
|
2013-10-17 21:45:32 +02:00
|
|
|
path = "";
|
2012-09-25 11:44:49 +02:00
|
|
|
else if (!uri_safe_local(path)) {
|
|
|
|
command_error(client, ACK_ERROR_ARG,
|
|
|
|
"Malformed path");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = update_enqueue(path, false);
|
|
|
|
if (ret > 0) {
|
|
|
|
client_printf(client, "updating_db: %i\n", ret);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
} else {
|
|
|
|
command_error(client, ACK_ERROR_UPDATE_ALREADY,
|
|
|
|
"already updating");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_rescan(Client &client, gcc_unused int argc, char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2013-10-17 21:45:32 +02:00
|
|
|
const char *path = "";
|
2012-09-25 11:44:49 +02:00
|
|
|
unsigned ret;
|
|
|
|
|
|
|
|
assert(argc <= 2);
|
|
|
|
if (argc == 2) {
|
|
|
|
path = argv[1];
|
|
|
|
|
|
|
|
if (!uri_safe_local(path)) {
|
|
|
|
command_error(client, ACK_ERROR_ARG,
|
|
|
|
"Malformed path");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = update_enqueue(path, true);
|
|
|
|
if (ret > 0) {
|
|
|
|
client_printf(client, "updating_db: %i\n", ret);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
} else {
|
|
|
|
command_error(client, ACK_ERROR_UPDATE_ALREADY,
|
|
|
|
"already updating");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_setvol(Client &client, gcc_unused int argc, char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
|
|
|
unsigned level;
|
|
|
|
bool success;
|
|
|
|
|
|
|
|
if (!check_unsigned(client, &level, argv[1]))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
|
|
|
|
if (level > 100) {
|
|
|
|
command_error(client, ACK_ERROR_ARG, "Invalid volume value");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
success = volume_level_change(level);
|
|
|
|
if (!success) {
|
|
|
|
command_error(client, ACK_ERROR_SYSTEM,
|
|
|
|
"problems setting volume");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-25 00:11:10 +02:00
|
|
|
CommandResult
|
|
|
|
handle_volume(Client &client, gcc_unused int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int relative;
|
|
|
|
if (!check_int(client, &relative, argv[1]))
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
|
|
|
|
if (relative < -100 || relative > 100) {
|
|
|
|
command_error(client, ACK_ERROR_ARG, "Invalid volume value");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int old_volume = volume_level_get();
|
|
|
|
if (old_volume < 0) {
|
|
|
|
command_error(client, ACK_ERROR_SYSTEM, "No mixer");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
int new_volume = old_volume + relative;
|
|
|
|
if (new_volume < 0)
|
|
|
|
new_volume = 0;
|
|
|
|
else if (new_volume > 100)
|
|
|
|
new_volume = 100;
|
|
|
|
|
|
|
|
if (new_volume != old_volume && !volume_level_change(new_volume)) {
|
|
|
|
command_error(client, ACK_ERROR_SYSTEM,
|
|
|
|
"problems setting volume");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CommandResult::OK;
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_stats(Client &client,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused int argc, gcc_unused char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
|
|
|
stats_print(client);
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_ping(gcc_unused Client &client,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused int argc, gcc_unused char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_password(Client &client, gcc_unused int argc, char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
|
|
|
unsigned permission = 0;
|
|
|
|
|
|
|
|
if (getPermissionFromPassword(argv[1], &permission) < 0) {
|
|
|
|
command_error(client, ACK_ERROR_PASSWORD, "incorrect password");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-19 19:39:40 +02:00
|
|
|
client.SetPermission(permission);
|
2012-09-25 11:44:49 +02:00
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_config(Client &client,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused int argc, gcc_unused char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2013-10-19 19:39:40 +02:00
|
|
|
if (!client.IsLocal()) {
|
2012-09-25 11:44:49 +02:00
|
|
|
command_error(client, ACK_ERROR_PERMISSION,
|
|
|
|
"Command only permitted to local clients");
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *path = mapper_get_music_directory_utf8();
|
2013-10-28 23:58:17 +01:00
|
|
|
if (path != nullptr)
|
2012-09-25 11:44:49 +02:00
|
|
|
client_printf(client, "music_directory: %s\n", path);
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::OK;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2013-10-19 18:48:38 +02:00
|
|
|
handle_idle(Client &client,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused int argc, gcc_unused char *argv[])
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
|
|
|
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) {
|
2013-10-20 23:09:51 +02:00
|
|
|
if (StringEqualsCaseASCII(argv[i], idle_names[j])) {
|
2012-09-25 11:44:49 +02:00
|
|
|
flags |= (1 << j);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No argument means that the client wants to receive everything */
|
|
|
|
if (flags == 0)
|
|
|
|
flags = ~0;
|
|
|
|
|
|
|
|
/* enable "idle" mode on this client */
|
2013-10-19 18:48:38 +02:00
|
|
|
client.IdleWait(flags);
|
2012-09-25 11:44:49 +02:00
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::IDLE;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|