2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 18:06:14 +01: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; 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-02-24 18:06:14 +01:00
|
|
|
*/
|
|
|
|
|
2013-01-03 03:06:45 +01:00
|
|
|
#ifndef MPD_PERMISSION_HXX
|
|
|
|
#define MPD_PERMISSION_HXX
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2018-11-19 12:49:45 +01:00
|
|
|
#include "config.h"
|
2018-07-15 21:54:43 +02:00
|
|
|
|
2021-10-17 19:50:59 +02:00
|
|
|
#include <optional>
|
|
|
|
|
2018-07-17 23:00:42 +02:00
|
|
|
struct ConfigData;
|
2021-10-14 14:25:20 +02:00
|
|
|
class SocketAddress;
|
2018-07-17 23:00:42 +02:00
|
|
|
|
2013-10-19 16:47:23 +02:00
|
|
|
static constexpr unsigned PERMISSION_NONE = 0;
|
|
|
|
static constexpr unsigned PERMISSION_READ = 1;
|
|
|
|
static constexpr unsigned PERMISSION_ADD = 2;
|
|
|
|
static constexpr unsigned PERMISSION_CONTROL = 4;
|
|
|
|
static constexpr unsigned PERMISSION_ADMIN = 8;
|
2021-10-14 14:16:34 +02:00
|
|
|
static constexpr unsigned PERMISSION_PLAYER = 16;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2021-10-17 19:50:59 +02:00
|
|
|
/**
|
|
|
|
* @return the permissions for the given password or std::nullopt if
|
|
|
|
* the password is not accepted
|
|
|
|
*/
|
2021-10-14 14:26:30 +02:00
|
|
|
[[gnu::pure]]
|
2021-10-17 19:50:59 +02:00
|
|
|
std::optional<unsigned>
|
|
|
|
GetPermissionFromPassword(const char *password) noexcept;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2021-10-14 14:26:30 +02:00
|
|
|
[[gnu::const]]
|
2015-03-03 20:05:08 +01:00
|
|
|
unsigned
|
2019-04-03 21:42:31 +02:00
|
|
|
getDefaultPermissions() noexcept;
|
2006-08-20 02:50:44 +02:00
|
|
|
|
2018-07-15 21:54:43 +02:00
|
|
|
#ifdef HAVE_UN
|
2021-10-14 14:26:30 +02:00
|
|
|
[[gnu::const]]
|
2018-07-15 21:54:43 +02:00
|
|
|
unsigned
|
|
|
|
GetLocalPermissions() noexcept;
|
|
|
|
#endif
|
|
|
|
|
2021-10-14 14:25:20 +02:00
|
|
|
#ifdef HAVE_TCP
|
|
|
|
[[gnu::pure]]
|
|
|
|
int
|
|
|
|
GetPermissionsFromAddress(SocketAddress address) noexcept;
|
|
|
|
#endif
|
|
|
|
|
2015-03-03 20:05:08 +01:00
|
|
|
void
|
2018-07-17 23:00:42 +02:00
|
|
|
initPermissions(const ConfigData &config);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
#endif
|