Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ACL.h « src - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/ACL.h
blob: 1540510feaeeffee5ccf0d525983d6164e267b23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright 2007-2022 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.

#ifndef MUMBLE_ACL_H_
#define MUMBLE_ACL_H_

#include <QtCore/QHash>
#include <QtCore/QObject>

class Channel;
class User;
class ServerUser;

class ChanACL : public QObject {
private:
	Q_OBJECT
	Q_DISABLE_COPY(ChanACL)
public:
	enum Perm {
		None            = 0x0,
		Write           = 0x1,
		Traverse        = 0x2,
		Enter           = 0x4,
		Speak           = 0x8,
		MuteDeafen      = 0x10,
		Move            = 0x20,
		MakeChannel     = 0x40,
		LinkChannel     = 0x80,
		Whisper         = 0x100,
		TextMessage     = 0x200,
		MakeTempChannel = 0x400,
		Listen          = 0x800,

		// Root channel only
		Kick             = 0x10000,
		Ban              = 0x20000,
		Register         = 0x40000,
		SelfRegister     = 0x80000,
		ResetUserContent = 0x100000,

		Cached = 0x8000000,
		All = Write + Traverse + Enter + Speak + MuteDeafen + Move + MakeChannel + LinkChannel + Whisper + TextMessage
			  + MakeTempChannel + Listen + Kick + Ban + Register + SelfRegister + ResetUserContent
	};

	Q_DECLARE_FLAGS(Permissions, Perm)

	typedef QHash< Channel *, Permissions > ChanCache;
	typedef QHash< User *, ChanCache * > ACLCache;

	Channel *c;
	bool bApplyHere;
	bool bApplySubs;

	bool bInherited;

	int iUserId;
	QString qsGroup;
	Permissions pAllow;
	Permissions pDeny;

	ChanACL(Channel *c);

	/// @returns Whether the given ChanACL represents a password.
	bool isPassword() const;

	/// @ereturns A string representation of this ChanACL summarizing what permissions are granted or denied.
	/// 	If this ACL neither grants nor denies any permissions, an empty String is returned.
	explicit operator QString() const;

#ifdef MURMUR
	static bool hasPermission(ServerUser *p, Channel *c, QFlags< Perm > perm, ACLCache *cache);
	static QFlags< Perm > effectivePermissions(ServerUser *p, Channel *c, ACLCache *cache);
#else
	static QString whatsThis(Perm p);
#endif
	static QString permName(QFlags< Perm > p);
	static QString permName(Perm p);
};

Q_DECLARE_OPERATORS_FOR_FLAGS(ChanACL::Permissions)

#endif