2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2018-10-31 17:54:59 +01:00
|
|
|
* Copyright 2003-2018 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
|
|
|
|
2018-07-17 23:00:42 +02:00
|
|
|
struct ConfigData;
|
|
|
|
|
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;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2019-04-03 21:42:31 +02:00
|
|
|
int
|
|
|
|
getPermissionFromPassword(const char *password, unsigned *permission) noexcept;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
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
|
|
|
|
unsigned
|
|
|
|
GetLocalPermissions() 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
|