2012-09-25 11:44:49 +02:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 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"
|
2015-10-22 09:29:02 +02:00
|
|
|
#include "LocateUri.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"
|
2017-02-08 08:26:58 +01:00
|
|
|
#include "tag/Handler.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 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"
|
2015-08-14 19:48:30 +02:00
|
|
|
#include "util/StringAPI.hxx"
|
2013-10-17 21:59:35 +02:00
|
|
|
#include "fs/AllocatedPath.hxx"
|
2013-10-02 12:14:07 +02:00
|
|
|
#include "Stats.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"
|
2015-08-06 22:10:25 +02:00
|
|
|
#include "client/Response.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"
|
2015-12-29 12:41:45 +01:00
|
|
|
#include "Log.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
|
2015-08-06 22:10:25 +02:00
|
|
|
print_spl_list(Response &r, const PlaylistVector &list)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2012-09-27 23:48:29 +02:00
|
|
|
for (const auto &i : list) {
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Format("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)
|
2015-08-06 22:10:25 +02:00
|
|
|
time_print(r, "Last-Modified", i.mtime);
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2015-08-13 12:48:31 +02:00
|
|
|
handle_urlhandlers(Client &client, gcc_unused Request args, Response &r)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2013-10-19 19:39:40 +02:00
|
|
|
if (client.IsLocal())
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Format("handler: file://\n");
|
|
|
|
print_supported_uri_schemes(r);
|
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-13 12:48:31 +02:00
|
|
|
handle_decoders(gcc_unused Client &client, gcc_unused Request args,
|
|
|
|
Response &r)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2015-08-06 22:10:25 +02:00
|
|
|
decoder_list_print(r);
|
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-13 12:48:31 +02:00
|
|
|
handle_kill(gcc_unused Client &client, gcc_unused Request request,
|
|
|
|
gcc_unused Response &r)
|
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
|
|
|
}
|
|
|
|
|
2014-01-08 23:35:37 +01:00
|
|
|
static void
|
|
|
|
print_tag(TagType type, const char *value, void *ctx)
|
|
|
|
{
|
2015-08-06 22:10:25 +02:00
|
|
|
auto &r = *(Response *)ctx;
|
2014-01-08 23:35:37 +01:00
|
|
|
|
2015-08-06 22:10:25 +02:00
|
|
|
tag_print(r, type, value);
|
2014-01-08 23:35:37 +01:00
|
|
|
}
|
|
|
|
|
2014-02-28 19:02:23 +01:00
|
|
|
CommandResult
|
2015-08-13 12:48:31 +02:00
|
|
|
handle_listfiles(Client &client, Request args, Response &r)
|
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
|
|
|
|
2016-10-27 21:59:17 +02:00
|
|
|
const auto located_uri = LocateUri(uri, &client
|
2014-02-28 19:02:23 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2016-10-27 21:59:17 +02:00
|
|
|
, nullptr
|
2015-10-22 09:29:02 +02:00
|
|
|
#endif
|
2016-10-27 21:59:17 +02:00
|
|
|
);
|
2014-02-28 19:02:23 +01:00
|
|
|
|
2015-10-22 09:29:02 +02:00
|
|
|
switch (located_uri.type) {
|
|
|
|
case LocatedUri::Type::ABSOLUTE:
|
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
/* use storage plugin to list remote directory */
|
|
|
|
return handle_listfiles_storage(r, located_uri.canonical_uri);
|
|
|
|
#else
|
|
|
|
r.Error(ACK_ERROR_NO_EXIST, "No database");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
#endif
|
2014-02-28 19:02:23 +01:00
|
|
|
|
2015-10-22 09:29:02 +02:00
|
|
|
case LocatedUri::Type::RELATIVE:
|
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
if (client.partition.instance.storage != nullptr)
|
|
|
|
/* if we have a storage instance, obtain a list of
|
|
|
|
files from it */
|
|
|
|
return handle_listfiles_storage(r,
|
|
|
|
*client.partition.instance.storage,
|
|
|
|
uri);
|
|
|
|
|
|
|
|
/* fall back to entries from database if we have no storage */
|
|
|
|
return handle_listfiles_db(client, r, uri);
|
2014-02-28 19:02:23 +01:00
|
|
|
#else
|
2015-10-22 09:29:02 +02:00
|
|
|
r.Error(ACK_ERROR_NO_EXIST, "No database");
|
|
|
|
return CommandResult::ERROR;
|
2014-02-28 19:02:23 +01:00
|
|
|
#endif
|
2015-10-22 09:29:02 +02:00
|
|
|
|
|
|
|
case LocatedUri::Type::PATH:
|
|
|
|
/* list local directory */
|
2015-12-29 12:41:45 +01:00
|
|
|
return handle_listfiles_local(r, located_uri.path);
|
2015-10-22 09:29:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gcc_unreachable();
|
2014-02-28 19:02:23 +01:00
|
|
|
}
|
|
|
|
|
2016-02-22 17:38:06 +01:00
|
|
|
static constexpr TagHandler print_tag_handler = {
|
2014-01-08 23:35:37 +01:00
|
|
|
nullptr,
|
|
|
|
print_tag,
|
|
|
|
nullptr,
|
|
|
|
};
|
|
|
|
|
2015-10-22 09:29:02 +02:00
|
|
|
static CommandResult
|
|
|
|
handle_lsinfo_absolute(Response &r, const char *uri)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2015-10-22 09:29:02 +02:00
|
|
|
if (!tag_stream_scan(uri, print_tag_handler, &r)) {
|
|
|
|
r.Error(ACK_ERROR_NO_EXIST, "No such file");
|
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2015-10-22 09:29:02 +02:00
|
|
|
return CommandResult::OK;
|
|
|
|
}
|
2013-12-29 14:40:24 +01:00
|
|
|
|
2015-10-22 09:29:02 +02:00
|
|
|
static CommandResult
|
|
|
|
handle_lsinfo_relative(Client &client, Response &r, const char *uri)
|
|
|
|
{
|
2014-01-30 20:29:48 +01:00
|
|
|
#ifdef ENABLE_DATABASE
|
2015-10-20 12:07:18 +02:00
|
|
|
CommandResult result = handle_lsinfo2(client, uri, r);
|
2013-10-20 13:10:54 +02:00
|
|
|
if (result != CommandResult::OK)
|
2012-09-25 11:44:49 +02:00
|
|
|
return result;
|
2015-10-22 09:29:02 +02:00
|
|
|
#else
|
|
|
|
(void)client;
|
2014-01-30 20:29:48 +01:00
|
|
|
#endif
|
2012-09-25 11:44:49 +02:00
|
|
|
|
|
|
|
if (isRootDirectory(uri)) {
|
2015-12-29 12:41:45 +01:00
|
|
|
try {
|
|
|
|
print_spl_list(r, ListPlaylistFiles());
|
|
|
|
} catch (const std::exception &e) {
|
|
|
|
LogError(e);
|
|
|
|
}
|
2014-01-30 20:29:48 +01:00
|
|
|
} else {
|
|
|
|
#ifndef ENABLE_DATABASE
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Error(ACK_ERROR_NO_EXIST, "No database");
|
2014-01-30 20:29:48 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-10-22 09:29:02 +02:00
|
|
|
static CommandResult
|
|
|
|
handle_lsinfo_path(Client &client, Response &r,
|
|
|
|
const char *path_utf8, Path path_fs)
|
|
|
|
{
|
|
|
|
DetachedSong song(path_utf8);
|
|
|
|
if (!song.LoadFile(path_fs)) {
|
|
|
|
r.Error(ACK_ERROR_NO_EXIST, "No such file");
|
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
song_print_info(r, client.partition, song);
|
|
|
|
return CommandResult::OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
CommandResult
|
|
|
|
handle_lsinfo(Client &client, Request args, Response &r)
|
|
|
|
{
|
|
|
|
/* default is root directory */
|
2015-11-13 21:04:02 +01:00
|
|
|
auto uri = args.GetOptional(0, "");
|
|
|
|
if (StringIsEqual(uri, "/"))
|
|
|
|
/* this URI is malformed, but some clients are buggy
|
|
|
|
and use "lsinfo /" to list files in the music root
|
|
|
|
directory, which was never intended to work, but
|
|
|
|
once did; in order to retain backwards
|
|
|
|
compatibility, work around this here */
|
|
|
|
uri = "";
|
2015-10-22 09:29:02 +02:00
|
|
|
|
2016-10-27 21:59:17 +02:00
|
|
|
const auto located_uri = LocateUri(uri, &client
|
2015-10-22 09:29:02 +02:00
|
|
|
#ifdef ENABLE_DATABASE
|
2016-10-27 21:59:17 +02:00
|
|
|
, nullptr
|
2015-10-22 09:29:02 +02:00
|
|
|
#endif
|
2016-10-27 21:59:17 +02:00
|
|
|
);
|
2015-10-22 09:29:02 +02:00
|
|
|
|
|
|
|
switch (located_uri.type) {
|
|
|
|
case LocatedUri::Type::ABSOLUTE:
|
|
|
|
return handle_lsinfo_absolute(r, located_uri.canonical_uri);
|
|
|
|
|
|
|
|
case LocatedUri::Type::RELATIVE:
|
|
|
|
return handle_lsinfo_relative(client, r,
|
|
|
|
located_uri.canonical_uri);
|
|
|
|
|
|
|
|
case LocatedUri::Type::PATH:
|
|
|
|
/* print information about an arbitrary local file */
|
|
|
|
return handle_lsinfo_path(client, r, located_uri.canonical_uri,
|
|
|
|
located_uri.path);
|
|
|
|
}
|
|
|
|
|
|
|
|
gcc_unreachable();
|
|
|
|
}
|
|
|
|
|
2014-07-29 23:29:57 +02:00
|
|
|
#ifdef ENABLE_DATABASE
|
|
|
|
|
|
|
|
static CommandResult
|
2015-08-13 12:48:31 +02:00
|
|
|
handle_update(Response &r, UpdateService &update,
|
2014-07-29 23:29:57 +02:00
|
|
|
const char *uri_utf8, bool discard)
|
|
|
|
{
|
|
|
|
unsigned ret = update.Enqueue(uri_utf8, discard);
|
|
|
|
if (ret > 0) {
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Format("updating_db: %i\n", ret);
|
2014-07-29 23:29:57 +02:00
|
|
|
return CommandResult::OK;
|
|
|
|
} else {
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Error(ACK_ERROR_UPDATE_ALREADY, "already updating");
|
2014-07-29 23:29:57 +02:00
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 23:14:25 +02:00
|
|
|
static CommandResult
|
2015-08-13 12:48:31 +02:00
|
|
|
handle_update(Response &r, Database &db,
|
2014-07-29 23:14:25 +02:00
|
|
|
const char *uri_utf8, bool discard)
|
|
|
|
{
|
2016-10-29 10:59:18 +02:00
|
|
|
unsigned id = db.Update(uri_utf8, discard);
|
2014-07-29 23:14:25 +02:00
|
|
|
if (id > 0) {
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Format("updating_db: %i\n", id);
|
2014-07-29 23:14:25 +02:00
|
|
|
return CommandResult::OK;
|
|
|
|
} else {
|
|
|
|
/* Database::Update() has returned 0 without setting
|
|
|
|
the Error: the method is not implemented */
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Error(ACK_ERROR_NO_EXIST, "Not implemented");
|
2014-07-29 23:14:25 +02:00
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 23:29:57 +02:00
|
|
|
#endif
|
|
|
|
|
2014-01-30 20:39:36 +01:00
|
|
|
static CommandResult
|
2015-08-13 12:48:31 +02:00
|
|
|
handle_update(Client &client, Request args, Response &r, 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
|
|
|
|
2015-08-14 19:48:30 +02:00
|
|
|
if (*path == 0 || StringIsEqual(path, "/"))
|
2012-09-25 11:44:49 +02:00
|
|
|
/* 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)) {
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Error(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)
|
2015-08-13 12:48:31 +02:00
|
|
|
return handle_update(r, *update, path, discard);
|
2014-07-29 23:14:25 +02:00
|
|
|
|
|
|
|
Database *db = client.partition.instance.database;
|
|
|
|
if (db != nullptr)
|
2015-08-13 12:48:31 +02:00
|
|
|
return handle_update(r, *db, path, discard);
|
2014-01-30 20:29:48 +01:00
|
|
|
#else
|
2015-10-20 13:50:00 +02:00
|
|
|
(void)client;
|
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
|
|
|
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Error(ACK_ERROR_NO_EXIST, "No database");
|
2014-01-30 20:29:48 +01:00
|
|
|
return CommandResult::ERROR;
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2015-08-13 12:48:31 +02:00
|
|
|
handle_update(Client &client, Request args, gcc_unused Response &r)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2015-08-13 12:48:31 +02:00
|
|
|
return handle_update(client, args, r, 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-13 12:48:31 +02:00
|
|
|
handle_rescan(Client &client, Request args, Response &r)
|
2014-01-30 20:39:36 +01:00
|
|
|
{
|
2015-08-13 12:48:31 +02:00
|
|
|
return handle_update(client, args, r, true);
|
2012-09-25 11:44:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2015-08-13 12:48:31 +02:00
|
|
|
handle_setvol(Client &client, Request args, Response &r)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2015-12-18 09:50:48 +01:00
|
|
|
unsigned level = args.ParseUnsigned(0, 100);
|
2012-09-25 11:44:49 +02:00
|
|
|
|
2015-08-11 21:54:29 +02:00
|
|
|
if (!volume_level_change(client.partition.outputs, level)) {
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Error(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-13 12:48:31 +02:00
|
|
|
handle_volume(Client &client, Request args, Response &r)
|
2013-10-25 00:11:10 +02:00
|
|
|
{
|
2015-12-18 09:50:48 +01:00
|
|
|
int relative = args.ParseInt(0, -100, 100);
|
2013-10-25 00:11:10 +02:00
|
|
|
|
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) {
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Error(ACK_ERROR_SYSTEM, "No mixer");
|
2013-10-25 00:11:10 +02:00
|
|
|
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)) {
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Error(ACK_ERROR_SYSTEM, "problems setting volume");
|
2013-10-25 00:11:10 +02:00
|
|
|
return CommandResult::ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CommandResult::OK;
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:10:54 +02:00
|
|
|
CommandResult
|
2015-08-13 12:48:31 +02:00
|
|
|
handle_stats(Client &client, gcc_unused Request args, Response &r)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2015-08-06 22:10:25 +02:00
|
|
|
stats_print(r, client.partition);
|
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-13 12:48:31 +02:00
|
|
|
handle_config(Client &client, gcc_unused Request args, Response &r)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2013-10-19 19:39:40 +02:00
|
|
|
if (!client.IsLocal()) {
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Error(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("");
|
2015-08-06 22:10:25 +02:00
|
|
|
r.Format("music_directory: %s\n", path.c_str());
|
2014-02-07 22:56:30 +01:00
|
|
|
}
|
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-13 12:48:31 +02:00
|
|
|
handle_idle(Client &client, Request args, Response &r)
|
2012-09-25 11:44:49 +02:00
|
|
|
{
|
2015-08-06 22:10:25 +02:00
|
|
|
unsigned flags = 0;
|
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) {
|
2015-08-06 22:10:25 +02:00
|
|
|
r.FormatError(ACK_ERROR_ARG,
|
|
|
|
"Unrecognized idle event: %s", 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
|
|
|
}
|