2012-09-25 11:44:49 +02:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 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"
|
2015-08-11 22:11:28 +02:00
|
|
|
#include "Request.hxx"
|
2014-02-28 19:02:23 +01:00
|
|
|
#include "FileCommands.hxx"
|
|
|
|
#include "StorageCommands.hxx"
|
2012-09-25 12:10:12 +02:00
|
|
|
#include "CommandError.hxx"
|
2014-01-29 18:05:33 +01:00
|
|
|
#include "db/Uri.hxx"
|
2014-02-07 22:56:30 +01:00
|
|
|
#include "storage/StorageInterface.hxx"
|
2014-01-15 12:05:44 +01:00
|
|
|
#include "DetachedSong.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"
|
2014-01-24 00:02:24 +01:00
|
|
|
#include "decoder/DecoderPrint.hxx"
|
2013-01-03 10:33:04 +01:00
|
|
|
#include "protocol/Result.hxx"
|
2013-01-03 17:34:51 +01:00
|
|
|
#include "ls.hxx"
|
2014-01-24 16:25:21 +01:00
|
|
|
#include "mixer/Volume.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"
|
2014-12-06 00:08:08 +01:00
|
|
|
#include "util/ConstBuffer.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"
|
2014-01-27 11:05:21 +01:00
|
|
|
#include "db/PlaylistVector.hxx"
|
2014-01-24 00:26:53 +01:00
|
|
|
#include "client/Client.hxx"
|
2014-01-27 08:20:25 +01:00
|
|
|
#include "Partition.hxx"
|
2014-01-29 20:16:43 +01:00
|
|
|
#include "Instance.hxx"
|
2013-01-09 08:36:52 +01:00
|
|
|
#include "Idle.hxx"
|
2012-09-25 11:44:49 +02:00
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
#include "DatabaseCommands.hxx"
|
2014-07-29 23:14:25 +02:00
|
|
|
#include "db/Interface.hxx"
|
2014-01-30 20:29:48 +01:00
|
|
|
#include "db/update/Service.hxx"
|
|
|
|
#endif
|
|
|
|
|
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
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_urlhandlers(Client &client, gcc_unused Request args)
|
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
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_decoders(Client &client, gcc_unused Request args)
|
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
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_tagtypes(Client &client, gcc_unused Request args)
|
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
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_kill(gcc_unused Client &client, gcc_unused Request args)
|
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
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_close(gcc_unused Client &client, gcc_unused Request args)
|
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);
|
|
|
|
}
|
|
|
|
|
2014-02-28 19:02:23 +01:00
|
|
|
CommandResult
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_listfiles(Client &client, Request args)
|
2014-02-28 19:02:23 +01:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
/* default is root directory */
|
2015-08-11 22:18:40 +02:00
|
|
|
const auto uri = args.GetOptional(0, "");
|
2014-02-28 19:02:23 +01:00
|
|
|
|
|
|
|
if (memcmp(uri, "file:///", 8) == 0)
|
|
|
|
/* list local directory */
|
|
|
|
return handle_listfiles_local(client, uri + 7);
|
|
|
|
|
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
if (uri_has_scheme(uri))
|
|
|
|
/* use storage plugin to list remote directory */
|
|
|
|
return handle_listfiles_storage(client, uri);
|
|
|
|
|
|
|
|
/* must be a path relative to the configured
|
|
|
|
music_directory */
|
|
|
|
|
|
|
|
if (client.partition.instance.storage != nullptr)
|
|
|
|
/* if we have a storage instance, obtain a list of
|
|
|
|
files from it */
|
|
|
|
return handle_listfiles_storage(client,
|
|
|
|
*client.partition.instance.storage,
|
|
|
|
uri);
|
|
|
|
|
|
|
|
/* fall back to entries from database if we have no storage */
|
|
|
|
return handle_listfiles_db(client, uri);
|
|
|
|
#else
|
|
|
|
command_error(client, ACK_ERROR_NO_EXIST, "No database");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-01-08 23:35:37 +01:00
|
|
|
static constexpr tag_handler print_tag_handler = {
|
|
|
|
nullptr,
|
|
|
|
print_tag,
|
|
|
|
nullptr,
|
|
|
|
};
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_lsinfo(Client &client, Request args)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
/* default is root directory */
|
2015-08-11 22:18:40 +02:00
|
|
|
const auto uri = args.GetOptional(0, "");
|
2012-09-25 11:44:49 +02:00
|
|
|
|
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;
|
2014-02-02 13:59:07 +01:00
|
|
|
if (!client.AllowFile(path_fs, error))
|
2012-09-25 11:44:49 +02:00
|
|
|
return print_error(client, error);
|
|
|
|
|
2014-01-15 12:05:44 +01:00
|
|
|
DetachedSong song(path_utf8);
|
|
|
|
if (!song.Update()) {
|
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
|
|
|
}
|
|
|
|
|
2014-01-15 12:05:44 +01:00
|
|
|
song_print_info(client, song);
|
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;
|
|
|
|
}
|
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2014-12-06 00:08:08 +01:00
|
|
|
CommandResult result = handle_lsinfo2(client, args);
|
2013-10-20 13:10:54 +02:00
|
|
|
if (result != CommandResult::OK)
|
2012-09-25 11:44:49 +02:00
|
|
|
return result;
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
2012-09-25 11:44:49 +02:00
|
|
|
|
|
|
|
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);
|
2014-01-30 20:29:48 +01:00
|
|
|
} else {
|
|
|
|
#ifndef ENABLE_DATABASE
|
|
|
|
command_error(client, ACK_ERROR_NO_EXIST, "No database");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
#endif
|
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
|
|
|
}
|
|
|
|
|
2014-07-29 23:29:57 +02:00
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
|
|
|
|
static CommandResult
|
|
|
|
handle_update(Client &client, UpdateService &update,
|
|
|
|
const char *uri_utf8, bool discard)
|
|
|
|
{
|
|
|
|
unsigned ret = update.Enqueue(uri_utf8, discard);
|
|
|
|
if (ret > 0) {
|
|
|
|
client_printf(client, "updating_db: %i\n", ret);
|
|
|
|
return CommandResult::OK;
|
|
|
|
} else {
|
|
|
|
command_error(client, ACK_ERROR_UPDATE_ALREADY,
|
|
|
|
"already updating");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 23:14:25 +02:00
|
|
|
static CommandResult
|
|
|
|
handle_update(Client &client, Database &db,
|
|
|
|
const char *uri_utf8, bool discard)
|
|
|
|
{
|
|
|
|
Error error;
|
|
|
|
unsigned id = db.Update(uri_utf8, discard, error);
|
|
|
|
if (id > 0) {
|
|
|
|
client_printf(client, "updating_db: %i\n", id);
|
|
|
|
return CommandResult::OK;
|
|
|
|
} else if (error.IsDefined()) {
|
|
|
|
return print_error(client, error);
|
|
|
|
} else {
|
|
|
|
/* Database::Update() has returned 0 without setting
|
|
|
|
the Error: the method is not implemented */
|
|
|
|
command_error(client, ACK_ERROR_NO_EXIST, "Not implemented");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 23:29:57 +02:00
|
|
|
#endif
|
|
|
|
|
2014-01-30 20:39:36 +01:00
|
|
|
static CommandResult
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_update(Client &client, Request args, bool discard)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2013-10-17 21:45:32 +02:00
|
|
|
const char *path = "";
|
2012-09-25 11:44:49 +02:00
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
assert(args.size <= 1);
|
|
|
|
if (!args.IsEmpty()) {
|
|
|
|
path = args.front();
|
2012-09-25 11:44:49 +02:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-29 20:16:43 +01:00
|
|
|
UpdateService *update = client.partition.instance.update;
|
2014-07-29 23:29:57 +02:00
|
|
|
if (update != nullptr)
|
|
|
|
return handle_update(client, *update, path, discard);
|
2014-07-29 23:14:25 +02:00
|
|
|
|
|
|
|
Database *db = client.partition.instance.database;
|
|
|
|
if (db != nullptr)
|
|
|
|
return handle_update(client, *db, path, discard);
|
2014-01-30 20:29:48 +01:00
|
|
|
#else
|
2014-12-06 00:08:08 +01:00
|
|
|
(void)args;
|
2014-01-30 20:29:48 +01:00
|
|
|
(void)discard;
|
2014-07-29 23:29:57 +02:00
|
|
|
#endif
|
2014-01-30 20:29:48 +01:00
|
|
|
|
|
|
|
command_error(client, ACK_ERROR_NO_EXIST, "No database");
|
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_update(Client &client, gcc_unused Request args)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
return handle_update(client, args, false);
|
2014-01-30 20:39:36 +01:00
|
|
|
}
|
2014-01-29 20:16:43 +01:00
|
|
|
|
2014-01-30 20:39:36 +01:00
|
|
|
CommandResult
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_rescan(Client &client, gcc_unused Request args)
|
2014-01-30 20:39:36 +01:00
|
|
|
{
|
2014-12-06 00:08:08 +01:00
|
|
|
return handle_update(client, args, true);
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_setvol(Client &client, Request args)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
|
|
|
unsigned level;
|
2015-08-11 22:18:40 +02:00
|
|
|
if (!args.Parse(0, level, client, 100))
|
2013-10-20 13:10:54 +02:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
|
2015-08-11 21:54:29 +02:00
|
|
|
if (!volume_level_change(client.partition.outputs, level)) {
|
2012-09-25 11:44:49 +02:00
|
|
|
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
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_volume(Client &client, Request args)
|
2013-10-25 00:11:10 +02:00
|
|
|
{
|
|
|
|
int relative;
|
2015-08-11 22:18:40 +02:00
|
|
|
if (!args.Parse(0, relative, client, -100, 100))
|
2013-10-25 00:11:10 +02:00
|
|
|
return CommandResult::ERROR;
|
|
|
|
|
2014-01-27 08:20:25 +01:00
|
|
|
const int old_volume = volume_level_get(client.partition.outputs);
|
2013-10-25 00:11:10 +02:00
|
|
|
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;
|
|
|
|
|
2014-01-27 08:20:25 +01:00
|
|
|
if (new_volume != old_volume &&
|
|
|
|
!volume_level_change(client.partition.outputs, new_volume)) {
|
2013-10-25 00:11:10 +02:00
|
|
|
command_error(client, ACK_ERROR_SYSTEM,
|
|
|
|
"problems setting volume");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CommandResult::OK;
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_stats(Client &client, gcc_unused Request args)
|
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
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_ping(gcc_unused Client &client, gcc_unused Request args)
|
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
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_password(Client &client, Request args)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
|
|
|
unsigned permission = 0;
|
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
if (getPermissionFromPassword(args.front(), &permission) < 0) {
|
2012-09-25 11:44:49 +02:00
|
|
|
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
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_config(Client &client, gcc_unused Request args)
|
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
|
|
|
}
|
|
|
|
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2014-02-07 22:56:30 +01:00
|
|
|
const Storage *storage = client.GetStorage();
|
|
|
|
if (storage != nullptr) {
|
|
|
|
const auto path = storage->MapUTF8("");
|
|
|
|
client_printf(client, "music_directory: %s\n", path.c_str());
|
|
|
|
}
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
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
|
2015-08-11 22:11:28 +02:00
|
|
|
handle_idle(Client &client, Request args)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2014-02-09 08:05:02 +01:00
|
|
|
unsigned flags = 0;
|
2012-09-25 11:44:49 +02:00
|
|
|
|
2014-12-06 00:08:08 +01:00
|
|
|
for (const char *i : args) {
|
|
|
|
unsigned event = idle_parse_name(i);
|
2014-02-09 08:05:02 +01:00
|
|
|
if (event == 0) {
|
|
|
|
command_error(client, ACK_ERROR_ARG,
|
|
|
|
"Unrecognized idle event: %s",
|
2014-12-06 00:08:08 +01:00
|
|
|
i);
|
2014-02-09 08:05:02 +01:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
2014-02-09 08:05:02 +01:00
|
|
|
|
|
|
|
flags |= event;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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
|
|
|
}
|